Skip to content

Commit

Permalink
Add compiler-rt to the "relocatable" (P1144) builder (#65)
Browse files Browse the repository at this point in the history
Trying to make the sanitizers work. Not sure if this will achieve
that goal, but it gets this builder closer to the clang-trunk builder,
anyway.
  • Loading branch information
Quuxplusone authored Jul 4, 2024
1 parent 05d5217 commit 1510d14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GCC_VERSION=9.2.0
declare -a CMAKE_EXTRA_ARGS
declare -a NINJA_EXTRA_TARGETS
declare -a NINJA_EXTRA_TARGETS_NO_FAIL
LLVM_ENABLE_PROJECTS="clang;"
LLVM_ENABLE_PROJECTS="clang"
LLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"
LLVM_EXPERIMENTAL_TARGETS_TO_BUILD=
BASENAME=clang
Expand Down Expand Up @@ -95,7 +95,8 @@ relocatable-trunk)
BRANCH=trivially-relocatable
URL=https://github.com/Quuxplusone/llvm-project.git
VERSION=relocatable-trunk-$(date +%Y%m%d)
LLVM_ENABLE_RUNTIMES+=";libunwind"
LLVM_ENABLE_PROJECTS="clang"
LLVM_ENABLE_RUNTIMES="compiler-rt;libcxx;libcxxabi;libunwind"
;;
patmat-trunk)
BRANCH=llvmorg-master-pattern-matching
Expand Down

0 comments on commit 1510d14

Please sign in to comment.