Skip to content

Commit ffed5fa

Browse files
committed
Fix oversights
1 parent 75342d3 commit ffed5fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flang-rt/lib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#===------------------------------------------------------------------------===#
88

9-
if (FLANG_RT_ENABLE_STATIC OR FLANG_RT_ENABLE_SHARE)
9+
if (FLANG_RT_ENABLE_STATIC OR FLANG_RT_ENABLE_SHARED)
1010
add_subdirectory(quadmath)
1111
add_subdirectory(runtime)
1212
if (FLANG_RT_INCLUDE_CUF)

flang-rt/lib/runtime/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ set_property(SOURCE
192192

193193
# Import changes from flang_rt.quadmath
194194
set(f128_sources "")
195-
if (TARGET f128_sources)
195+
if (TARGET FortranFloat128MathILib)
196196
get_target_property(f128_sources
197197
FortranFloat128MathILib INTERFACE_SOURCES
198198
)

0 commit comments

Comments
 (0)