Displaying 3 results from an estimated 3 matches for "sanitizer_common_supported_darwin_o".
Did you mean:
sanitizer_common_supported_darwin_os
2014 May 18
3
[LLVMdev] Clang 3.5 Release Pre-Pre-Pre-Announcement
Bill,
I have the openmp support in llvm 3.5svn now built on 10.7 using Xcode
4.6.3 and 10.8/10.9 using 5.1.1. The 10.7 build required the hack…
perl -pi -e 's|list\(APPEND SANITIZER_COMMON_SUPPORTED_DARWIN_OS
iossim\)||g' projects/compiler-rt/CMakeLists.txt
to suppress building libclang_rt.asan_iossim_dynamic.dylib. The compiler-rt
build now expects the iPhoneSimulator7.0.0.sdk but Xcode 4.6.3 only has the
/iPhoneSimulator6.1.sdk. I tried tweaking that back to 6.1 but the build of
llibclang_rt.asa...
2014 Feb 12
2
[LLVMdev] cmake/ninja build failing
...now why these variables are used on OS X in the first place I can't say if removing them this way is the correct solution, or if maybe the CMakeLists.txt files just needs to properly quote these strings.
Here's my shortened version of that whole `if(APPLE)` block:
> if(APPLE)
> set(SANITIZER_COMMON_SUPPORTED_DARWIN_OS osx)
>
> if(COMPILER_RT_USES_LIBCXX)
> set(SANITIZER_MIN_OSX_VERSION 10.7)
> else()
> set(SANITIZER_MIN_OSX_VERSION 10.6)
> endif()
> set(DARWIN_osx_CFLAGS -mmacosx-version-min=${SANITIZER_MIN_OSX_VERSION})
> set(DARWIN_osx_LINKFLAGS)
> endif()
So, can anyo...
2014 May 18
2
[LLVMdev] Clang 3.5 Release Pre-Pre-Pre-Announcement
Bill,
Are there any plans to integrate the new openmp support into the
llvm/clang 3.5 build process? I have been able to build the current
llvm/clang/compiler-rt/openmp svn on Mac OS X 10.9 out of tree with…
pushd projects/openmp/runtime
make compiler=clang
popd
and then
OPENMP_DIR=`ls projects/openmp/runtime/tmp | grep dyn`
pushd