[compiler-rt] r254660 - [CMake] CMake calls to set_property with APPEND string need to have a leading space.
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 3 14:56:22 PST 2015
Author: cbieneman
Date: Thu Dec 3 16:56:21 2015
New Revision: 254660
URL: http://llvm.org/viewvc/llvm-project?rev=254660&view=rev
Log:
[CMake] CMake calls to set_property with APPEND string need to have a leading space.
Modified:
compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
Modified: compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake?rev=254660&r1=254659&r2=254660&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/AddCompilerRT.cmake Thu Dec 3 16:56:21 2015
@@ -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}>
More information about the llvm-commits
mailing list