diff options
author | Chris Bieneman <beanz@apple.com> | 2015-12-03 22:56:21 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-12-03 22:56:21 +0000 |
commit | bcd09fef72e54ac328ec75e940c8b24e28225b6c (patch) | |
tree | d8356aa1b695a023edf266b07f1f2c7bef455f5d | |
parent | ac6677ab8c83b729847f55941d02395a040ce691 (diff) | |
download | bcm5719-llvm-bcd09fef72e54ac328ec75e940c8b24e28225b6c.tar.gz bcm5719-llvm-bcd09fef72e54ac328ec75e940c8b24e28225b6c.zip |
[CMake] CMake calls to set_property with APPEND string need to have a leading space.
llvm-svn: 254660
-rw-r--r-- | compiler-rt/cmake/Modules/AddCompilerRT.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/cmake/Modules/AddCompilerRT.cmake b/compiler-rt/cmake/Modules/AddCompilerRT.cmake index 1314d33c8f6..6f401b1fa0c 100644 --- a/compiler-rt/cmake/Modules/AddCompilerRT.cmake +++ b/compiler-rt/cmake/Modules/AddCompilerRT.cmake @@ -326,7 +326,7 @@ function(rt_externalize_debuginfo name) set(lto_object ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${name}-lto.o) set_property(TARGET ${name} APPEND_STRING PROPERTY - LINK_FLAGS "-Wl,-object_path_lto -Wl,${lto_object}") + LINK_FLAGS " -Wl,-object_path_lto -Wl,${lto_object}") endif() add_custom_command(TARGET ${name} POST_BUILD COMMAND xcrun dsymutil $<TARGET_FILE:${name}> |