-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use modern clang/libc++ for sanitizers (#1171)
* Use modern clang/libc++ for sanitizers * update ubuntu * new llvm builds differently * clang, not clang-3.8 * just build what we need
- Loading branch information
1 parent
bdd6c44
commit 3424091
Showing
3 changed files
with
31 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Checkout LLVM sources | ||
git clone --depth=1 https://github.com/llvm/llvm-project.git llvm-project | ||
|
||
# Setup libc++ options | ||
if [ -z "$BUILD_32_BITS" ]; then | ||
export BUILD_32_BITS=OFF && echo disabling 32 bit build | ||
fi | ||
|
||
# Build and install libc++ (Use unstable ABI for better sanitizer coverage) | ||
cd ./llvm-project | ||
cmake -DCMAKE_C_COMPILER=${C_COMPILER} \ | ||
-DCMAKE_CXX_COMPILER=${COMPILER} \ | ||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DLIBCXX_ABI_UNSTABLE=OFF \ | ||
-DLLVM_USE_SANITIZER=${LIBCXX_SANITIZER} \ | ||
-DLLVM_BUILD_32_BITS=${BUILD_32_BITS} \ | ||
-DLLVM_ENABLE_PROJECTS='libcxx;libcxxabi' \ | ||
-S llvm -B llvm-build -G "Unix Makefiles" | ||
make -C llvm-build -j3 cxx cxxabi | ||
sudo make -C llvm-build install-cxx install-cxxabi | ||
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.