Add libunwind to the release scripts

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242543 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Hans Wennborg 2015-07-17 16:49:59 +00:00
parent 27bd1ca0d9
commit 8a8582d6e9
3 changed files with 7 additions and 3 deletions

View File

@ -14,7 +14,7 @@
set -e
projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp"
projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
base_url="https://llvm.org/svn/llvm-project"
release=""

View File

@ -17,7 +17,7 @@ set -e
release=""
rc=""
rebranch="no"
projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp"
projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
dryrun=""
revision="HEAD"

View File

@ -18,7 +18,7 @@ else
MAKE=make
fi
projects="llvm cfe compiler-rt libcxx libcxxabi test-suite clang-tools-extra"
projects="llvm cfe compiler-rt libcxx libcxxabi test-suite clang-tools-extra libunwind"
# Base SVN URL for the sources.
Base_url="http://llvm.org/svn/llvm-project"
@ -244,6 +244,10 @@ function export_sources() {
if [ ! -h libcxxabi ]; then
ln -s ../../libcxxabi.src libcxxabi
fi
if [ ! -h libunwind ]; then
ln -s ../../libunwind.src libunwind
fi
cd $BuildDir
}