[compiler-rt] r245624 - [CMake] Turns out CMake was passing the space as part of the argument instead of separating two arguments.

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 20 15:06:46 PDT 2015


Author: cbieneman
Date: Thu Aug 20 17:06:46 2015
New Revision: 245624

URL: http://llvm.org/viewvc/llvm-project?rev=245624&view=rev
Log:
[CMake] Turns out CMake was passing the space as part of the argument instead of separating two arguments.

Modified:
    compiler-rt/trunk/cmake/Modules/CompilerRTCompile.cmake

Modified: compiler-rt/trunk/cmake/Modules/CompilerRTCompile.cmake
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/cmake/Modules/CompilerRTCompile.cmake?rev=245624&r1=245623&r2=245624&view=diff
==============================================================================
--- compiler-rt/trunk/cmake/Modules/CompilerRTCompile.cmake (original)
+++ compiler-rt/trunk/cmake/Modules/CompilerRTCompile.cmake Thu Aug 20 17:06:46 2015
@@ -33,7 +33,7 @@ if (APPLE)
        OUTPUT_VARIABLE OSX_SYSROOT
        ERROR_QUIET
        OUTPUT_STRIP_TRAILING_WHITESPACE)
-    set(OSX_SYSROOT_FLAG "-isysroot ${OSX_SYSROOT}")
+    set(OSX_SYSROOT_FLAG "-isysroot${OSX_SYSROOT}")
   endif()
 endif()
 




More information about the llvm-commits mailing list