Add libcxx and clang-tools-extra to the testing thing.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181418 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2013-05-08 09:31:10 +00:00
parent 7193427e21
commit 77bf8661cd

View File

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