search for: darwin_iossim_cflag

Displaying 2 results from an estimated 2 matches for "darwin_iossim_cflag".

Did you mean: darwin_iossim_cflags
2014 Feb 12
2
[LLVMdev] cmake/ninja build failing
...a location inside the Xcode.app, but Xcode is installed at a path which includes spaces and parentheses. I see the problem in the build.ninja commands, where FLAGS includes the problematic setting of isysroot. The cause seems to come down to the line in the compiler-rt CMakeLists.txt: > set(DARWIN_iossim_CFLAGS > -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) where IOSSIM_SDK_DIR is the path including spaces and parens. I'm not sure why these flags are finding their way into my build since I'm not doing anything with iOS or the iOS simulator, but DARWIN_iossim_CFLAGS is get...
2014 Feb 13
3
[LLVMdev] cmake/ninja build failing
...a at least shows me that the relevant path is indeed getting added via set_target_compile_flags: the path is now part of one of these quoted strings. On Feb 12, 2014, at 11:01 AM, Brad King <brad.king at kitware.com> wrote: > On 02/12/2014 02:04 AM, Seth Cantrell wrote: >>> set(DARWIN_iossim_CFLAGS >>> -mios-simulator-version-min=7.0 -isysroot ${IOSSIM_SDK_DIR}) >> >> where IOSSIM_SDK_DIR is the path including spaces and parens. > > It looks like the _CFLAGS values are used in the module > cmake/Modules/CompilerRTUtils.cmake: > > function(set_target_...