[PATCH] D112748: [release] Use the Bootstrapping build for building LLVM releases
Louis Dionne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 7 14:49:48 PST 2021
ldionne updated this revision to Diff 392547.
ldionne added a comment.
Add compiler-rt to LLVM_ENABLE_RUNTIMES too
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112748/new/
https://reviews.llvm.org/D112748
Files:
llvm/utils/release/test-release.sh
Index: llvm/utils/release/test-release.sh
===================================================================
--- llvm/utils/release/test-release.sh
+++ llvm/utils/release/test-release.sh
@@ -236,16 +236,17 @@
# Projects list
projects="llvm clang clang-tools-extra"
+runtimes=""
if [ $do_rt = "yes" ]; then
- projects="$projects compiler-rt"
+ projects="$runtimes compiler-rt"
fi
if [ $do_libs = "yes" ]; then
- projects="$projects libcxx"
+ runtimes="$runtimes libcxx"
if [ $do_libcxxabi = "yes" ]; then
- projects="$projects libcxxabi"
+ runtimes="$runtimes libcxxabi"
fi
if [ $do_libunwind = "yes" ]; then
- projects="$projects libunwind"
+ runtimes="$runtimes libunwind"
fi
fi
case $do_test_suite in
@@ -377,6 +378,7 @@
esac
project_list=${projects// /;}
+ runtime_list=${runtimes// /;}
echo "# Using C compiler: $c_compiler"
echo "# Using C++ compiler: $cxx_compiler"
@@ -387,12 +389,14 @@
cmake -G "$generator" \
-DCMAKE_BUILD_TYPE=$BuildType -DLLVM_ENABLE_ASSERTIONS=$Assertions \
-DLLVM_ENABLE_PROJECTS="$project_list" \
+ -DLLVM_ENABLE_RUNTIMES="$runtime_list" \
$ExtraConfigureFlags $BuildDir/llvm-project/llvm \
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
env CC="$c_compiler" CXX="$cxx_compiler" \
cmake -G "$generator" \
-DCMAKE_BUILD_TYPE=$BuildType -DLLVM_ENABLE_ASSERTIONS=$Assertions \
-DLLVM_ENABLE_PROJECTS="$project_list" \
+ -DLLVM_ENABLE_RUNTIMES="$runtime_list" \
$ExtraConfigureFlags $BuildDir/llvm-project/llvm \
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112748.392547.patch
Type: text/x-patch
Size: 1685 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211207/ae2d4c97/attachment.bin>
More information about the llvm-commits
mailing list