1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Don't download and compile compiler-rt, libcxx, and libcxxabi by default.

llvm-svn: 142185
This commit is contained in:
Bill Wendling 2011-10-17 08:41:20 +00:00
parent b2979db708
commit d425d074bd

View File

@ -14,7 +14,7 @@
set -e # Exit if any command fails
projects="llvm cfe dragonegg test-suite compiler-rt libcxx libcxxabi"
projects="llvm cfe dragonegg test-suite"
# Base SVN URL for the sources.
Base_url="http://llvm.org/svn/llvm-project"
@ -268,7 +268,7 @@ function test_llvmCore() {
make check-all \
2>&1 | tee $LogDir/llvm.check-Phase$Phase-$Flavor.log
make unittests \
2>&1 | tee $LogDir/llvm.unittests--Phase$Phase-$Flavor.log
2>&1 | tee $LogDir/llvm.unittests-Phase$Phase-$Flavor.log
cd $BuildDir
}