From 3c356b4f56a2406b199949f64bc35cf68bb78b48 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Thu, 3 Dec 2015 22:55:36 +0000 Subject: [PATCH] [CMake] Fixing bots CMake calls to set_property with APPEND string need to have a leading space. llvm-svn: 254659 --- cmake/modules/AddLLVM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index e121da6786d..8cc8abbbc7d 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -668,7 +668,7 @@ function(export_executable_symbols target) set_target_properties(${target} PROPERTIES ENABLE_EXPORTS 1) if (APPLE) set_property(TARGET ${target} APPEND_STRING PROPERTY - LINK_FLAGS "-rdynamic") + LINK_FLAGS " -rdynamic") endif() endif() endfunction()