diff options
| author | Chris Bieneman <beanz@apple.com> | 2015-08-20 22:06:46 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2015-08-20 22:06:46 +0000 |
| commit | 4268d39436bf471bee6993efe9999f36cad4cf37 (patch) | |
| tree | 7dd4903430ab9296e5954b5d13ce3b4d642b21ef | |
| parent | cbdfdb74d361727a299f05962c8c24b74f893606 (diff) | |
| download | bcm5719-llvm-4268d39436bf471bee6993efe9999f36cad4cf37.tar.gz bcm5719-llvm-4268d39436bf471bee6993efe9999f36cad4cf37.zip | |
[CMake] Turns out CMake was passing the space as part of the argument instead of separating two arguments.
llvm-svn: 245624
| -rw-r--r-- | compiler-rt/cmake/Modules/CompilerRTCompile.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/cmake/Modules/CompilerRTCompile.cmake b/compiler-rt/cmake/Modules/CompilerRTCompile.cmake index 289195e4b54..850d109c26d 100644 --- a/compiler-rt/cmake/Modules/CompilerRTCompile.cmake +++ b/compiler-rt/cmake/Modules/CompilerRTCompile.cmake @@ -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() |

