2011-10-19 17:25:49 +08:00
|
|
|
#!/usr/bin/env bash
|
2010-09-09 02:32:31 +08:00
|
|
|
#===-- test-release.sh - Test the LLVM release candidates ------------------===#
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
#
|
|
|
|
# Download, build, and test the release candidate for an LLVM release.
|
|
|
|
#
|
|
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
|
2011-10-19 16:42:07 +08:00
|
|
|
if [ `uname -s` = "FreeBSD" ]; then
|
|
|
|
MAKE=gmake
|
|
|
|
else
|
|
|
|
MAKE=make
|
|
|
|
fi
|
|
|
|
|
2015-07-18 00:49:59 +08:00
|
|
|
projects="llvm cfe compiler-rt libcxx libcxxabi test-suite clang-tools-extra libunwind"
|
2011-10-17 06:44:08 +08:00
|
|
|
|
|
|
|
# Base SVN URL for the sources.
|
|
|
|
Base_url="http://llvm.org/svn/llvm-project"
|
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
Release=""
|
|
|
|
Release_no_dot=""
|
|
|
|
RC=""
|
2013-11-20 12:55:20 +08:00
|
|
|
Triple=""
|
2013-11-24 13:29:35 +08:00
|
|
|
use_gzip="no"
|
2010-09-09 02:32:31 +08:00
|
|
|
do_checkout="yes"
|
2011-10-17 06:44:08 +08:00
|
|
|
do_debug="no"
|
2011-10-17 12:46:54 +08:00
|
|
|
do_asserts="no"
|
2012-04-03 07:27:43 +08:00
|
|
|
do_compare="yes"
|
2010-09-09 02:32:31 +08:00
|
|
|
BuildDir="`pwd`"
|
2015-07-16 05:06:16 +08:00
|
|
|
use_autoconf="no"
|
|
|
|
ExtraConfigureFlags=""
|
2015-07-17 18:40:40 +08:00
|
|
|
ExportBranch=""
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
function usage() {
|
2015-06-23 05:13:30 +08:00
|
|
|
echo "usage: `basename $0` -release X.Y.Z -rc NUM [OPTIONS]"
|
2010-09-09 02:32:31 +08:00
|
|
|
echo ""
|
2015-06-23 05:13:30 +08:00
|
|
|
echo " -release X.Y.Z The release version to test."
|
2014-12-05 01:15:35 +08:00
|
|
|
echo " -rc NUM The pre-release candidate number."
|
|
|
|
echo " -final The final release candidate."
|
|
|
|
echo " -triple TRIPLE The target triple for this machine."
|
|
|
|
echo " -j NUM Number of compile jobs to run. [default: 3]"
|
|
|
|
echo " -build-dir DIR Directory to perform testing in. [default: pwd]"
|
|
|
|
echo " -no-checkout Don't checkout the sources from SVN."
|
|
|
|
echo " -test-debug Test the debug build. [default: no]"
|
|
|
|
echo " -test-asserts Test with asserts on. [default: no]"
|
|
|
|
echo " -no-compare-files Don't test that phase 2 and 3 files are identical."
|
|
|
|
echo " -use-gzip Use gzip instead of xz."
|
2015-07-16 05:06:16 +08:00
|
|
|
echo " -configure-flags FLAGS Extra flags to pass to the configure step."
|
|
|
|
echo " -use-autoconf Use autoconf instead of cmake"
|
2015-07-17 18:40:40 +08:00
|
|
|
echo " -svn-path DIR Use the specified DIR instead of a release."
|
|
|
|
echo " For example -svn-path trunk or -svn-path branches/release_37"
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
2015-07-16 05:06:16 +08:00
|
|
|
if [ `uname -s` = "Darwin" ]; then
|
|
|
|
# compiler-rt doesn't yet build with CMake on Darwin.
|
|
|
|
use_autoconf="yes"
|
|
|
|
fi
|
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
while [ $# -gt 0 ]; do
|
|
|
|
case $1 in
|
|
|
|
-release | --release )
|
|
|
|
shift
|
|
|
|
Release="$1"
|
2014-07-22 04:20:08 +08:00
|
|
|
Release_no_dot="`echo $1 | sed -e 's,\.,,g'`"
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
|
|
|
-rc | --rc | -RC | --RC )
|
|
|
|
shift
|
2011-11-28 19:45:10 +08:00
|
|
|
RC="rc$1"
|
|
|
|
;;
|
|
|
|
-final | --final )
|
|
|
|
RC=final
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
2015-07-17 18:40:40 +08:00
|
|
|
-svn-path | --svn-path )
|
|
|
|
shift
|
|
|
|
Release="test"
|
|
|
|
Release_no_dot="test"
|
|
|
|
ExportBranch="$1"
|
|
|
|
RC="`echo $ExportBranch | sed -e 's,/,_,g'`"
|
|
|
|
echo "WARNING: Using the branch $ExportBranch instead of a release tag"
|
|
|
|
echo " This is intended to aid new packagers in trialing "
|
|
|
|
echo " builds without requiring a tag to be created first"
|
|
|
|
;;
|
2013-11-20 12:55:20 +08:00
|
|
|
-triple | --triple )
|
|
|
|
shift
|
|
|
|
Triple="$1"
|
|
|
|
;;
|
2015-07-16 05:06:16 +08:00
|
|
|
-configure-flags | --configure-flags )
|
2014-12-05 01:15:35 +08:00
|
|
|
shift
|
2015-07-16 05:06:16 +08:00
|
|
|
ExtraConfigureFlags="$1"
|
2014-12-05 01:15:35 +08:00
|
|
|
;;
|
2010-09-09 02:32:31 +08:00
|
|
|
-j* )
|
|
|
|
NumJobs="`echo $1 | sed -e 's,-j\([0-9]*\),\1,g'`"
|
|
|
|
if [ -z "$NumJobs" ]; then
|
|
|
|
shift
|
|
|
|
NumJobs="$1"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
-build-dir | --build-dir | -builddir | --builddir )
|
|
|
|
shift
|
|
|
|
BuildDir="$1"
|
|
|
|
;;
|
|
|
|
-no-checkout | --no-checkout )
|
|
|
|
do_checkout="no"
|
|
|
|
;;
|
2011-10-17 06:44:08 +08:00
|
|
|
-test-debug | --test-debug )
|
|
|
|
do_debug="yes"
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
2011-10-17 12:46:54 +08:00
|
|
|
-test-asserts | --test-asserts )
|
|
|
|
do_asserts="yes"
|
|
|
|
;;
|
2012-04-03 07:27:43 +08:00
|
|
|
-no-compare-files | --no-compare-files )
|
|
|
|
do_compare="no"
|
|
|
|
;;
|
2013-11-24 13:29:35 +08:00
|
|
|
-use-gzip | --use-gzip )
|
|
|
|
use_gzip="yes"
|
|
|
|
;;
|
2015-07-16 05:06:16 +08:00
|
|
|
-use-autoconf | --use-autoconf )
|
|
|
|
use_autoconf="yes"
|
|
|
|
;;
|
2010-09-09 02:32:31 +08:00
|
|
|
-help | --help | -h | --h | -\? )
|
|
|
|
usage
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "unknown option: $1"
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
# Check required arguments.
|
|
|
|
if [ -z "$Release" ]; then
|
2011-10-17 06:44:08 +08:00
|
|
|
echo "error: no release number specified"
|
2010-09-09 02:32:31 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ -z "$RC" ]; then
|
2011-10-17 06:44:08 +08:00
|
|
|
echo "error: no release candidate number specified"
|
2010-09-09 02:32:31 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-07-17 18:40:40 +08:00
|
|
|
if [ -z "$ExportBranch" ]; then
|
|
|
|
ExportBranch="tags/RELEASE_$Release_no_dot/$RC"
|
|
|
|
fi
|
2013-11-20 12:55:20 +08:00
|
|
|
if [ -z "$Triple" ]; then
|
|
|
|
echo "error: no target triple specified"
|
|
|
|
exit 1
|
|
|
|
fi
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2010-09-09 03:50:25 +08:00
|
|
|
# Figure out how many make processes to run.
|
|
|
|
if [ -z "$NumJobs" ]; then
|
|
|
|
NumJobs=`sysctl -n hw.activecpu 2> /dev/null || true`
|
|
|
|
fi
|
|
|
|
if [ -z "$NumJobs" ]; then
|
|
|
|
NumJobs=`sysctl -n hw.ncpu 2> /dev/null || true`
|
|
|
|
fi
|
|
|
|
if [ -z "$NumJobs" ]; then
|
|
|
|
NumJobs=`grep -c processor /proc/cpuinfo 2> /dev/null || true`
|
|
|
|
fi
|
2010-09-09 02:32:31 +08:00
|
|
|
if [ -z "$NumJobs" ]; then
|
|
|
|
NumJobs=3
|
|
|
|
fi
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
# Go to the build directory (may be different from CWD)
|
2011-11-28 19:45:10 +08:00
|
|
|
BuildDir=$BuildDir/$RC
|
2011-10-17 06:44:08 +08:00
|
|
|
mkdir -p $BuildDir
|
|
|
|
cd $BuildDir
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2011-03-27 21:52:32 +08:00
|
|
|
# Location of log files.
|
2011-10-17 06:44:08 +08:00
|
|
|
LogDir=$BuildDir/logs
|
2011-03-27 21:52:32 +08:00
|
|
|
mkdir -p $LogDir
|
|
|
|
|
2013-11-20 12:55:20 +08:00
|
|
|
# Final package name.
|
|
|
|
Package=clang+llvm-$Release
|
|
|
|
if [ $RC != "final" ]; then
|
|
|
|
Package=$Package-$RC
|
|
|
|
fi
|
|
|
|
Package=$Package-$Triple
|
|
|
|
|
2013-11-18 18:34:59 +08:00
|
|
|
# Make sure that a required program is available
|
|
|
|
function check_program_exists() {
|
|
|
|
local program="$1"
|
|
|
|
if ! type -P $program > /dev/null 2>&1 ; then
|
|
|
|
echo "program '$1' not found !"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-11-20 12:55:20 +08:00
|
|
|
if [ `uname -s` != "Darwin" ]; then
|
|
|
|
check_program_exists 'chrpath'
|
|
|
|
check_program_exists 'file'
|
|
|
|
check_program_exists 'objdump'
|
|
|
|
fi
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
# Make sure that the URLs are valid.
|
|
|
|
function check_valid_urls() {
|
2011-10-17 06:44:08 +08:00
|
|
|
for proj in $projects ; do
|
|
|
|
echo "# Validating $proj SVN URL"
|
|
|
|
|
2015-07-17 18:40:40 +08:00
|
|
|
if ! svn ls $Base_url/$proj/$ExportBranch > /dev/null 2>&1 ; then
|
|
|
|
echo "$proj does not have a $ExportBranch branch/tag!"
|
2011-10-17 06:44:08 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
2012-07-23 16:51:15 +08:00
|
|
|
# Export sources to the build directory.
|
2010-09-09 02:32:31 +08:00
|
|
|
function export_sources() {
|
|
|
|
check_valid_urls
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
for proj in $projects ; do
|
2013-12-03 15:34:19 +08:00
|
|
|
echo "# Exporting $proj $Release-$RC sources"
|
2015-07-17 18:40:40 +08:00
|
|
|
if ! svn export -q $Base_url/$proj/$ExportBranch $proj.src ; then
|
2011-10-17 06:44:08 +08:00
|
|
|
echo "error: failed to export $proj project"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
echo "# Creating symlinks"
|
|
|
|
cd $BuildDir/llvm.src/tools
|
|
|
|
if [ ! -h clang ]; then
|
2011-10-30 07:49:52 +08:00
|
|
|
ln -s ../../cfe.src clang
|
2011-10-17 06:44:08 +08:00
|
|
|
fi
|
2013-05-08 17:31:10 +08:00
|
|
|
cd $BuildDir/llvm.src/tools/clang/tools
|
|
|
|
if [ ! -h clang-tools-extra ]; then
|
|
|
|
ln -s ../../../../clang-tools-extra.src extra
|
|
|
|
fi
|
2011-10-17 06:44:08 +08:00
|
|
|
cd $BuildDir/llvm.src/projects
|
2013-05-08 17:31:10 +08:00
|
|
|
if [ ! -h test-suite ]; then
|
|
|
|
ln -s ../../test-suite.src test-suite
|
2011-10-17 06:44:08 +08:00
|
|
|
fi
|
2012-04-17 13:11:51 +08:00
|
|
|
if [ ! -h compiler-rt ]; then
|
|
|
|
ln -s ../../compiler-rt.src compiler-rt
|
|
|
|
fi
|
2013-05-08 17:31:10 +08:00
|
|
|
if [ ! -h libcxx ]; then
|
|
|
|
ln -s ../../libcxx.src libcxx
|
|
|
|
fi
|
2014-08-20 15:32:09 +08:00
|
|
|
if [ ! -h libcxxabi ]; then
|
|
|
|
ln -s ../../libcxxabi.src libcxxabi
|
|
|
|
fi
|
2015-07-18 00:49:59 +08:00
|
|
|
if [ ! -h libunwind ]; then
|
|
|
|
ln -s ../../libunwind.src libunwind
|
|
|
|
fi
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
cd $BuildDir
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function configure_llvmCore() {
|
|
|
|
Phase="$1"
|
|
|
|
Flavor="$2"
|
|
|
|
ObjDir="$3"
|
|
|
|
|
|
|
|
case $Flavor in
|
2015-07-16 05:06:16 +08:00
|
|
|
Release )
|
|
|
|
BuildType="Release"
|
|
|
|
Assertions="OFF"
|
|
|
|
ConfigureFlags="--enable-optimized --disable-assertions"
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
2010-09-13 21:45:33 +08:00
|
|
|
Release+Asserts )
|
2015-07-16 05:06:16 +08:00
|
|
|
BuildType="Release"
|
|
|
|
Assertions="ON"
|
|
|
|
ConfigureFlags="--enable-optimized --enable-assertions"
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
|
|
|
Debug )
|
2015-07-16 05:06:16 +08:00
|
|
|
BuildType="Debug"
|
|
|
|
Assertions="ON"
|
|
|
|
ConfigureFlags="--disable-optimized --enable-assertions"
|
2010-09-09 02:32:31 +08:00
|
|
|
;;
|
|
|
|
* )
|
2011-10-17 06:44:08 +08:00
|
|
|
echo "# Invalid flavor '$Flavor'"
|
2010-09-09 02:32:31 +08:00
|
|
|
echo ""
|
|
|
|
return
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
echo "# Using C compiler: $c_compiler"
|
|
|
|
echo "# Using C++ compiler: $cxx_compiler"
|
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
cd $ObjDir
|
2011-11-28 19:45:10 +08:00
|
|
|
echo "# Configuring llvm $Release-$RC $Flavor"
|
2015-07-16 05:06:16 +08:00
|
|
|
|
|
|
|
if [ "$use_autoconf" = "yes" ]; then
|
|
|
|
echo "#" env CC="$c_compiler" CXX="$cxx_compiler" \
|
|
|
|
$BuildDir/llvm.src/configure \
|
|
|
|
$ConfigureFlags --disable-timestamps $ExtraConfigureFlags \
|
|
|
|
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
|
|
|
|
env CC="$c_compiler" CXX="$cxx_compiler" \
|
|
|
|
$BuildDir/llvm.src/configure \
|
|
|
|
$ConfigureFlags --disable-timestamps $ExtraConfigureFlags \
|
|
|
|
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
|
|
|
|
else
|
|
|
|
echo "#" env CC="$c_compiler" CXX="$cxx_compiler" \
|
|
|
|
cmake -G "Unix Makefiles" \
|
|
|
|
-DCMAKE_BUILD_TYPE=$BuildType -DLLVM_ENABLE_ASSERTIONS=$Assertions \
|
|
|
|
-DLLVM_ENABLE_TIMESTAMPS=OFF -DLLVM_CONFIGTIME="(timestamp not enabled)" \
|
|
|
|
$ExtraConfigureFlags $BuildDir/llvm.src \
|
|
|
|
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
|
|
|
|
env CC="$c_compiler" CXX="$cxx_compiler" \
|
|
|
|
cmake -G "Unix Makefiles" \
|
|
|
|
-DCMAKE_BUILD_TYPE=$BuildType -DLLVM_ENABLE_ASSERTIONS=$Assertions \
|
|
|
|
-DLLVM_ENABLE_TIMESTAMPS=OFF -DLLVM_CONFIGTIME="(timestamp not enabled)" \
|
|
|
|
$ExtraConfigureFlags $BuildDir/llvm.src \
|
|
|
|
2>&1 | tee $LogDir/llvm.configure-Phase$Phase-$Flavor.log
|
|
|
|
fi
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
cd $BuildDir
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function build_llvmCore() {
|
|
|
|
Phase="$1"
|
|
|
|
Flavor="$2"
|
|
|
|
ObjDir="$3"
|
2015-07-15 03:46:19 +08:00
|
|
|
DestDir="$4"
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
cd $ObjDir
|
2011-11-28 19:45:10 +08:00
|
|
|
echo "# Compiling llvm $Release-$RC $Flavor"
|
2015-07-16 05:06:16 +08:00
|
|
|
echo "# ${MAKE} -j $NumJobs VERBOSE=1"
|
|
|
|
${MAKE} -j $NumJobs VERBOSE=1 \
|
2011-10-17 06:44:08 +08:00
|
|
|
2>&1 | tee $LogDir/llvm.make-Phase$Phase-$Flavor.log
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2011-11-28 19:45:10 +08:00
|
|
|
echo "# Installing llvm $Release-$RC $Flavor"
|
2011-10-19 16:42:07 +08:00
|
|
|
echo "# ${MAKE} install"
|
|
|
|
${MAKE} install \
|
2015-07-15 03:46:19 +08:00
|
|
|
DESTDIR="${DestDir}" \
|
2011-10-17 06:44:08 +08:00
|
|
|
2>&1 | tee $LogDir/llvm.install-Phase$Phase-$Flavor.log
|
|
|
|
cd $BuildDir
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function test_llvmCore() {
|
|
|
|
Phase="$1"
|
|
|
|
Flavor="$2"
|
|
|
|
ObjDir="$3"
|
|
|
|
|
|
|
|
cd $ObjDir
|
2015-07-16 05:06:16 +08:00
|
|
|
${MAKE} -j $NumJobs -k check-all \
|
2011-10-17 06:44:08 +08:00
|
|
|
2>&1 | tee $LogDir/llvm.check-Phase$Phase-$Flavor.log
|
2015-07-16 05:06:16 +08:00
|
|
|
|
|
|
|
if [ "$use_autoconf" = "yes" ]; then
|
|
|
|
# In the cmake build, unit tests are run as part of check-all.
|
|
|
|
${MAKE} -k unittests \
|
|
|
|
2>&1 | tee $LogDir/llvm.unittests-Phase$Phase-$Flavor.log
|
|
|
|
fi
|
|
|
|
|
2011-10-17 06:44:08 +08:00
|
|
|
cd $BuildDir
|
2010-09-09 02:32:31 +08:00
|
|
|
}
|
|
|
|
|
2013-11-18 18:34:59 +08:00
|
|
|
# Clean RPATH. Libtool adds the build directory to the search path, which is
|
|
|
|
# not necessary --- and even harmful --- for the binary packages we release.
|
|
|
|
function clean_RPATH() {
|
2013-11-20 12:55:20 +08:00
|
|
|
if [ `uname -s` = "Darwin" ]; then
|
|
|
|
return
|
|
|
|
fi
|
2013-11-18 18:34:59 +08:00
|
|
|
local InstallPath="$1"
|
|
|
|
for Candidate in `find $InstallPath/{bin,lib} -type f`; do
|
|
|
|
if file $Candidate | grep ELF | egrep 'executable|shared object' > /dev/null 2>&1 ; then
|
|
|
|
rpath=`objdump -x $Candidate | grep 'RPATH' | sed -e's/^ *RPATH *//'`
|
|
|
|
if [ -n "$rpath" ]; then
|
|
|
|
newrpath=`echo $rpath | sed -e's/.*\(\$ORIGIN[^:]*\).*/\1/'`
|
|
|
|
chrpath -r $newrpath $Candidate 2>&1 > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2013-11-20 12:55:20 +08:00
|
|
|
# Create a package of the release binaries.
|
|
|
|
function package_release() {
|
|
|
|
cwd=`pwd`
|
|
|
|
cd $BuildDir/Phase3/Release
|
|
|
|
mv llvmCore-$Release-$RC.install $Package
|
2013-11-24 13:29:35 +08:00
|
|
|
if [ "$use_gzip" = "yes" ]; then
|
|
|
|
tar cfz $BuildDir/$Package.tar.gz $Package
|
|
|
|
else
|
|
|
|
tar cfJ $BuildDir/$Package.tar.xz $Package
|
|
|
|
fi
|
2013-11-20 12:55:20 +08:00
|
|
|
mv $Package llvmCore-$Release-$RC.install
|
|
|
|
cd $cwd
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:50:33 +08:00
|
|
|
# Exit if any command fails
|
|
|
|
# Note: pipefail is necessary for running build commands through
|
|
|
|
# a pipe (i.e. it changes the output of ``false | tee /dev/null ; echo $?``)
|
|
|
|
set -e
|
|
|
|
set -o pipefail
|
2011-10-19 01:27:12 +08:00
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
if [ "$do_checkout" = "yes" ]; then
|
|
|
|
export_sources
|
|
|
|
fi
|
|
|
|
|
2011-03-27 21:52:32 +08:00
|
|
|
(
|
2011-10-17 12:46:54 +08:00
|
|
|
Flavors="Release"
|
2011-10-17 06:44:08 +08:00
|
|
|
if [ "$do_debug" = "yes" ]; then
|
|
|
|
Flavors="Debug $Flavors"
|
|
|
|
fi
|
2011-10-17 12:46:54 +08:00
|
|
|
if [ "$do_asserts" = "yes" ]; then
|
|
|
|
Flavors="$Flavors Release+Asserts"
|
|
|
|
fi
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
for Flavor in $Flavors ; do
|
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo "********************************************************************************"
|
2011-11-28 19:45:10 +08:00
|
|
|
echo " Release: $Release-$RC"
|
2010-09-09 02:32:31 +08:00
|
|
|
echo " Build: $Flavor"
|
|
|
|
echo " System Info: "
|
|
|
|
echo " `uname -a`"
|
|
|
|
echo "********************************************************************************"
|
|
|
|
echo ""
|
|
|
|
|
2011-10-21 04:10:58 +08:00
|
|
|
c_compiler="$CC"
|
|
|
|
cxx_compiler="$CXX"
|
|
|
|
|
2011-11-28 19:45:10 +08:00
|
|
|
llvmCore_phase1_objdir=$BuildDir/Phase1/$Flavor/llvmCore-$Release-$RC.obj
|
2015-07-15 03:46:19 +08:00
|
|
|
llvmCore_phase1_destdir=$BuildDir/Phase1/$Flavor/llvmCore-$Release-$RC.install
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2011-11-28 19:45:10 +08:00
|
|
|
llvmCore_phase2_objdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.obj
|
2015-07-15 03:46:19 +08:00
|
|
|
llvmCore_phase2_destdir=$BuildDir/Phase2/$Flavor/llvmCore-$Release-$RC.install
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2011-11-28 19:45:10 +08:00
|
|
|
llvmCore_phase3_objdir=$BuildDir/Phase3/$Flavor/llvmCore-$Release-$RC.obj
|
2015-07-15 03:46:19 +08:00
|
|
|
llvmCore_phase3_destdir=$BuildDir/Phase3/$Flavor/llvmCore-$Release-$RC.install
|
2011-10-17 12:46:54 +08:00
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
rm -rf $llvmCore_phase1_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
rm -rf $llvmCore_phase1_destdir
|
2011-10-20 19:13:04 +08:00
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
rm -rf $llvmCore_phase2_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
rm -rf $llvmCore_phase2_destdir
|
2011-10-20 19:13:04 +08:00
|
|
|
|
2011-10-17 12:46:54 +08:00
|
|
|
rm -rf $llvmCore_phase3_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
rm -rf $llvmCore_phase3_destdir
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
mkdir -p $llvmCore_phase1_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
mkdir -p $llvmCore_phase1_destdir
|
2011-10-20 19:13:04 +08:00
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
mkdir -p $llvmCore_phase2_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
mkdir -p $llvmCore_phase2_destdir
|
2011-10-20 19:13:04 +08:00
|
|
|
|
2011-10-17 12:46:54 +08:00
|
|
|
mkdir -p $llvmCore_phase3_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
mkdir -p $llvmCore_phase3_destdir
|
2010-09-09 02:32:31 +08:00
|
|
|
|
|
|
|
############################################################################
|
2011-10-20 19:13:04 +08:00
|
|
|
# Phase 1: Build llvmCore and clang
|
2010-09-09 02:32:31 +08:00
|
|
|
echo "# Phase 1: Building llvmCore"
|
2015-07-15 04:15:15 +08:00
|
|
|
configure_llvmCore 1 $Flavor $llvmCore_phase1_objdir
|
2010-09-09 02:32:31 +08:00
|
|
|
build_llvmCore 1 $Flavor \
|
2015-07-15 03:46:19 +08:00
|
|
|
$llvmCore_phase1_objdir $llvmCore_phase1_destdir
|
|
|
|
clean_RPATH $llvmCore_phase1_destdir/usr/local
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Phase 2: Build llvmCore with newly built clang from phase 1.
|
|
|
|
c_compiler=$llvmCore_phase1_destdir/usr/local/bin/clang
|
|
|
|
cxx_compiler=$llvmCore_phase1_destdir/usr/local/bin/clang++
|
|
|
|
echo "# Phase 2: Building llvmCore"
|
2015-07-15 04:15:15 +08:00
|
|
|
configure_llvmCore 2 $Flavor $llvmCore_phase2_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
build_llvmCore 2 $Flavor \
|
|
|
|
$llvmCore_phase2_objdir $llvmCore_phase2_destdir
|
|
|
|
clean_RPATH $llvmCore_phase2_destdir/usr/local
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Phase 3: Build llvmCore with newly built clang from phase 2.
|
|
|
|
c_compiler=$llvmCore_phase2_destdir/usr/local/bin/clang
|
|
|
|
cxx_compiler=$llvmCore_phase2_destdir/usr/local/bin/clang++
|
|
|
|
echo "# Phase 3: Building llvmCore"
|
2015-07-15 04:15:15 +08:00
|
|
|
configure_llvmCore 3 $Flavor $llvmCore_phase3_objdir
|
2015-07-15 03:46:19 +08:00
|
|
|
build_llvmCore 3 $Flavor \
|
|
|
|
$llvmCore_phase3_objdir $llvmCore_phase3_destdir
|
|
|
|
clean_RPATH $llvmCore_phase3_destdir/usr/local
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Testing: Test phase 3
|
|
|
|
echo "# Testing - built with clang"
|
|
|
|
test_llvmCore 3 $Flavor $llvmCore_phase3_objdir
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Compare .o files between Phase2 and Phase3 and report which ones
|
|
|
|
# differ.
|
|
|
|
if [ "$do_compare" = "yes" ]; then
|
|
|
|
echo
|
|
|
|
echo "# Comparing Phase 2 and Phase 3 files"
|
2015-07-16 05:06:16 +08:00
|
|
|
for p2 in `find $llvmCore_phase2_objdir -name '*.o'` ; do
|
|
|
|
p3=`echo $p2 | sed -e 's,Phase2,Phase3,'`
|
|
|
|
# Substitute 'Phase2' for 'Phase3' in the Phase 2 object file in
|
2015-07-16 06:18:25 +08:00
|
|
|
# case there are build paths in the debug info. On some systems,
|
|
|
|
# sed adds a newline to the output, so pass $p3 through sed too.
|
|
|
|
if ! cmp --ignore-initial=16 <(sed -e 's,Phase2,Phase3,g' $p2) \
|
|
|
|
<(sed -e '' $p3) > /dev/null 2>&1 ; then
|
2015-07-16 05:06:16 +08:00
|
|
|
echo "file `basename $p2` differs between phase 2 and phase 3"
|
2015-07-15 03:46:19 +08:00
|
|
|
fi
|
|
|
|
done
|
2011-10-20 19:13:04 +08:00
|
|
|
fi
|
2010-09-09 02:32:31 +08:00
|
|
|
done
|
2011-11-28 19:45:10 +08:00
|
|
|
) 2>&1 | tee $LogDir/testing.$Release-$RC.log
|
2010-09-09 02:32:31 +08:00
|
|
|
|
2013-11-20 12:55:20 +08:00
|
|
|
package_release
|
|
|
|
|
2011-10-19 01:27:12 +08:00
|
|
|
set +e
|
|
|
|
|
2010-09-09 02:32:31 +08:00
|
|
|
# Woo hoo!
|
|
|
|
echo "### Testing Finished ###"
|
2013-11-24 13:29:35 +08:00
|
|
|
if [ "$use_gzip" = "yes" ]; then
|
|
|
|
echo "### Package: $Package.tar.gz"
|
|
|
|
else
|
|
|
|
echo "### Package: $Package.tar.xz"
|
|
|
|
fi
|
2011-03-27 21:52:32 +08:00
|
|
|
echo "### Logs: $LogDir"
|
2010-09-09 02:32:31 +08:00
|
|
|
exit 0
|