[CMake] CMake calls to set_property with APPEND string need to have a leading space.

llvm-svn: 254660
This commit is contained in:
Chris Bieneman 2015-12-03 22:56:21 +00:00
parent ac6677ab8c
commit bcd09fef72
1 changed files with 1 additions and 1 deletions

View File

@ -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}>