search for: compilerrtutils

Displaying 4 results from an estimated 4 matches for "compilerrtutils".

2014 Feb 13
3
[LLVMdev] cmake/ninja build failing
...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_compile_flags target) > foreach(arg ${ARGN}) > set(argstring "${argstring} ${arg}") > endforeach() > set_property(TARGET ${target} PROPERTY COMPILE_FLAGS "${argstring}") > endfunction() > > but that makes no a...
2014 Feb 12
2
[LLVMdev] cmake/ninja build failing
A couple of llvm sub-projects have been failing to build for me for a while (compiler-rt asan and util/unittests, at least). It turns out to be due to the fact that some paths on my system include spaces and other special characters, but the the build.ninja file was not generated with correctly quoted strings. Specifically I'm on OS X and the command is setting -isysroot to a location inside
2018 Nov 16
2
LLVM_CONFIG_PATH when building Clang from sources
...heck for working CXX compiler: /Developer/usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Looking for unwind.h -- Looking for unwind.h - found CMake Error at cmake/Modules/CompilerRTUtils.cmake:213 (message): llvm-config not found: specify LLVM_CONFIG_PATH Call Stack (most recent call first): CMakeLists.txt:66 (load_llvm_config) -- Configuring incomplete, errors occurred!
2015 May 15
2
[LLVMdev] CMake 3.2 warning in Compiler-RT
Hi Folks, Now that I'm using CMake 3.2.2 to get the "pool = console" Ninja feature, I'm seeing this warning: CMake Warning (dev) at projects/compiler-rt/cmake/Modules/CompilerRTUtils.cmake:55 (if): Policy CMP0054 is not set: Only interpret if() arguments as variables or keywords when unquoted. Run "cmake --help-policy CMP0054" for policy details. Use the cmake_policy command to set the policy and suppress this warning. Quoted variables like "HAVE_RPC...