From 6884a72b554258cb1ba71bd722d074050d8a22f4 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Fri, 17 Jul 2015 16:50:50 +0000 Subject: [PATCH] Merging r242543: ------------------------------------------------------------------------ r242543 | hans | 2015-07-17 09:49:59 -0700 (Fri, 17 Jul 2015) | 1 line Add libunwind to the release scripts ------------------------------------------------------------------------ git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_37@242544 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/release/export.sh | 2 +- utils/release/tag.sh | 2 +- utils/release/test-release.sh | 6 +++++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/utils/release/export.sh b/utils/release/export.sh index 9aee306f966..2fd4206b740 100755 --- a/utils/release/export.sh +++ b/utils/release/export.sh @@ -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="" diff --git a/utils/release/tag.sh b/utils/release/tag.sh index 8d6cd5f2f63..caefc7f7b71 100755 --- a/utils/release/tag.sh +++ b/utils/release/tag.sh @@ -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" diff --git a/utils/release/test-release.sh b/utils/release/test-release.sh index c622e269584..919cc1af172 100755 --- a/utils/release/test-release.sh +++ b/utils/release/test-release.sh @@ -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" @@ -228,6 +228,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 }