1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Download and build the compiler-rt project.

llvm-svn: 154905
This commit is contained in:
Bill Wendling 2012-04-17 05:11:51 +00:00
parent c9489b786a
commit be2b67fb44

View File

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