We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1acfb8a + 2fa4e8f commit 9a27a07Copy full SHA for 9a27a07
.buildbot.sh
@@ -6,11 +6,14 @@ INST_DIR=`pwd`/inst
6
7
mkdir -p build
8
cd build
9
+# Disabling default PIE due to:
10
+# https://github.com/llvm/llvm-project/issues/57085
11
cmake -DCMAKE_INSTALL_PREFIX=${INST_DIR} \
12
-DLLVM_INSTALL_UTILS=On \
13
-DCMAKE_BUILD_TYPE=release \
14
-DLLVM_ENABLE_ASSERTIONS=On \
15
-DLLVM_ENABLE_PROJECTS="lld;clang" \
16
+ -DCLANG_DEFAULT_PIE_ON_LINUX=OFF \
17
../llvm
18
make -j `nproc` install
19
0 commit comments