Skip to content

Commit 2fa4e8f

Browse files
committed
Turn off default PIE in CI.
Since we disabled default PIE on the yk side (ykjit/yk#559), we should probably do the same here for CI purposes.
1 parent 1acfb8a commit 2fa4e8f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.buildbot.sh

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ INST_DIR=`pwd`/inst
66

77
mkdir -p build
88
cd build
9+
# Disabling default PIE due to:
10+
# https://github.com/llvm/llvm-project/issues/57085
911
cmake -DCMAKE_INSTALL_PREFIX=${INST_DIR} \
1012
-DLLVM_INSTALL_UTILS=On \
1113
-DCMAKE_BUILD_TYPE=release \
1214
-DLLVM_ENABLE_ASSERTIONS=On \
1315
-DLLVM_ENABLE_PROJECTS="lld;clang" \
16+
-DCLANG_DEFAULT_PIE_ON_LINUX=OFF \
1417
../llvm
1518
make -j `nproc` install
1619

0 commit comments

Comments
 (0)