File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function(_report_sdk prefix)
23
23
message (STATUS " Architectures: ${SWIFT_SDK_${prefix} _ARCHITECTURES}" )
24
24
message (STATUS " Object Format: ${SWIFT_SDK_${prefix} _OBJECT_FORMAT}" )
25
25
foreach (arch ${SWIFT_SDK_${prefix}_ARCHITECTURES} )
26
- if (${ SWIFT_SDK_${prefix}_ARCH_${arch}_LINKER} )
26
+ if (SWIFT_SDK_${prefix}_ARCH_${arch}_LINKER )
27
27
message (STATUS " Linker (${arch} ): ${SWIFT_SDK_${prefix} _ARCH_${arch} _LINKER}" )
28
28
else ()
29
29
message (STATUS " Linker (${arch} ): ${CMAKE_LINKER} " )
Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ foreach(sdk ${ELFISH_SDKS})
165
165
set (section_magic_end_obj "${CMAKE_CURRENT_BINARY_DIR} /CMakeFiles/section_magic_end-${arch_suffix} .dir/swift_sections.S${CMAKE_C_OUTPUT_EXTENSION} " )
166
166
167
167
set (ld_EXECUTABLE ${CMAKE_LINKER} )
168
- if (${ SWIFT_SDK_${prefix }_ARCH_${arch}_LINKER} )
169
- set (ld_EXECUTABLE ${SWIFT_SDK_${prefix }_ARCH_${arch}_LINKER} )
168
+ if (SWIFT_SDK_${sdk }_ARCH_${arch}_LINKER )
169
+ set (ld_EXECUTABLE ${SWIFT_SDK_${sdk }_ARCH_${arch}_LINKER} )
170
170
endif ()
171
171
172
172
add_custom_command_target (section_magic_${arch_suffix}_begin_object
You can’t perform that action at this time.
0 commit comments