Skip to content

Commit 4785832

Browse files
authored
[Offload] Fix cmake warning (#145488)
Cmake was unhappy that there was no space between arguments, now it is.
1 parent 9aebfde commit 4785832

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

offload/DeviceRTL/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ function(compileDeviceRTLLibrary target_name target_triple)
156156
)
157157
target_link_libraries(omptarget.${target_name} PRIVATE omptarget.${target_name}.all_objs)
158158
target_link_options(omptarget.${target_name} PRIVATE "--target=${target_triple}"
159-
"-Wno-unused-command-line-argument""-r" "-nostdlib" "-flto"
159+
"-Wno-unused-command-line-argument" "-r" "-nostdlib" "-flto"
160160
"-Wl,--lto-emit-llvm" "-fuse-ld=lld" "-march=" "-mcpu=")
161161

162162
install(TARGETS omptarget.${target_name}

0 commit comments

Comments
 (0)