blob: 42f8af0ef4e84a34c6504130a64fa5ad4b1e41f3 [file] [log] [blame]
Bill Wendling71df1dd2007-11-09 06:59:33 +00001#!/bin/sh
2# LLVM LOCAL file B&I
3
4set -x
5
Bill Wendling71df1dd2007-11-09 06:59:33 +00006# Build LLVM the "Apple way".
7# Parameters:
8
9# The first parameter is a space-separated list of the architectures the
10# compilers will run on. For instance, "ppc i386". If the current machine
11# isn't in the list, it will (effectively) be added.
Devang Patelf48ae282007-11-12 23:53:43 +000012HOSTS="$1"
Bill Wendling71df1dd2007-11-09 06:59:33 +000013
14# The second parameter is a space-separated list of the architectures the
15# compilers will generate code for. If the current machine isn't in the list, a
16# compiler for it will get built anyway, but won't be installed.
Bob Wilsona2dbebc2010-04-28 18:06:27 +000017# FIXME: The list of targets is currently hard-coded and TARGETS is not used.
Devang Patelf48ae282007-11-12 23:53:43 +000018TARGETS="$2"
Bill Wendling71df1dd2007-11-09 06:59:33 +000019
20# The third parameter is the path to the compiler sources. There should be a
21# shell script named 'configure' in this directory. This script makes a copy...
22ORIG_SRC_DIR="$3"
23
24# The fourth parameter is the location where the LLVM will be installed. You can
25# move it once it's built, so this mostly controls the layout of $DEST_DIR.
26DEST_ROOT="$4"
27
28# The fifth parameter is the place where the compiler will be copied once it's
29# built.
30DEST_DIR="$5"
31
32# The sixth parameter is a directory in which to place information (like
33# unstripped executables and generated source files) helpful in debugging the
34# resulting compiler.
35SYM_DIR="$6"
36
Devang Patelebde4b32008-01-30 18:30:11 +000037# The seventh parameter is a yes/no that indicates whether assertions should be
Bill Wendling71df1dd2007-11-09 06:59:33 +000038# enabled in the LLVM libs/tools.
Devang Patelebde4b32008-01-30 18:30:11 +000039LLVM_ASSERTIONS="$7"
Bill Wendling71df1dd2007-11-09 06:59:33 +000040
Devang Patelebde4b32008-01-30 18:30:11 +000041# The eighth parameter is a yes/no that indicates whether this is an optimized
Evan Cheng26c33032008-01-18 21:01:00 +000042# build.
Devang Patelebde4b32008-01-30 18:30:11 +000043LLVM_OPTIMIZED="$8"
44
Bob Wilson0d545602010-05-05 22:22:40 +000045# A yes/no parameter that controls whether to cross-build for an ARM host.
Bob Wilson9d12ffc2012-04-03 23:13:26 +000046ARM_HOSTED_BUILD="$9"
Bob Wilsonc892b6d2010-04-28 21:08:01 +000047
Bob Wilsonebcadde2010-07-20 20:44:02 +000048# A yes/no parameter that controls whether to cross-build for the iOS simulator
Bob Wilson9d12ffc2012-04-03 23:13:26 +000049IOS_SIM_BUILD="${10}"
Bob Wilsonebcadde2010-07-20 20:44:02 +000050
Bob Wilson0d545602010-05-05 22:22:40 +000051# The version number of the submission, e.g. 1007.
Bob Wilson9d12ffc2012-04-03 23:13:26 +000052LLVM_SUBMIT_VERSION="${11}"
Bob Wilson0d545602010-05-05 22:22:40 +000053
54# The subversion number of the submission, e.g. 03.
Bob Wilson9d12ffc2012-04-03 23:13:26 +000055LLVM_SUBMIT_SUBVERSION="${12}"
Evan Cheng26c33032008-01-18 21:01:00 +000056
Bill Wendling71df1dd2007-11-09 06:59:33 +000057# The current working directory is where the build will happen. It may already
58# contain a partial result of an interrupted build, in which case this script
59# will continue where it left off.
60DIR=`pwd`
61
62DARWIN_VERS=`uname -r | sed 's/\..*//'`
63echo DARWIN_VERS = $DARWIN_VERS
64
Bill Wendling71df1dd2007-11-09 06:59:33 +000065################################################################################
66# Run the build.
67
68# Create the source tree we'll actually use to build, deleting
69# tcl since it doesn't actually build properly in a cross environment
70# and we don't really need it.
71SRC_DIR=$DIR/src
72rm -rf $SRC_DIR || exit 1
73mkdir $SRC_DIR || exit 1
74ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1
Stuart Hastings8de31d02009-10-22 17:22:37 +000075# We can't use the top-level Makefile as-is. Remove the soft link:
76rm $SRC_DIR/Makefile || exit 1
77# Now create our own by editing the top-level Makefile, deleting every line marked "Apple-style":
78sed -e '/[Aa]pple-style/d' -e '/include.*GNUmakefile/d' $ORIG_SRC_DIR/Makefile > $SRC_DIR/Makefile || exit 1
Bill Wendling71df1dd2007-11-09 06:59:33 +000079
Bob Wilson81f6bab2013-01-10 22:59:51 +000080SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/.*\.\([0-9]*\).*/\1/'`
81if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then
82 LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION`
83 RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'`
84 LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion
85fi
86if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
87 LLVM_VERSION="$LLVM_SUBMIT_VERSION"
88else
89 LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
90fi
Bob Wilson81f6bab2013-01-10 22:59:51 +000091
92# Figure out how many make processes to run.
93SYSCTL=`sysctl -n hw.activecpu`
94# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
95# Builders can default to 2, since even if they are single processor,
96# nothing else is running on the machine.
97if [ -z "$SYSCTL" ]; then
98 SYSCTL=2
99fi
100JOBS_FLAG="-j $SYSCTL"
101
102COMMON_CONFIGURE_OPTS="\
103 --prefix=$DEST_DIR$DEST_ROOT \
104 --enable-assertions=$LLVM_ASSERTIONS \
105 --enable-optimized=$LLVM_OPTIMIZED \
106 --disable-bindings"
107
Bob Wilsonace548a2013-01-12 02:31:42 +0000108COMMON_MAKEFLAGS="\
109 UNIVERSAL=1 \
110 UNIVERSAL_SDK_PATH=$SDKROOT \
111 NO_RUNTIME_LIBS=1 \
112 DISABLE_EDIS=1 \
113 REQUIRES_RTTI=1 \
114 DEBUG_SYMBOLS=1 \
115 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
116 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
117 VERBOSE=1"
Bob Wilson81f6bab2013-01-10 22:59:51 +0000118
Bill Wendling71df1dd2007-11-09 06:59:33 +0000119# Build the LLVM tree universal.
120mkdir -p $DIR/obj-llvm || exit 1
121cd $DIR/obj-llvm || exit 1
122
Bob Wilson0d545602010-05-05 22:22:40 +0000123if [ "$ARM_HOSTED_BUILD" = yes ]; then
Jim Grosbachdc916f12009-10-30 20:54:59 +0000124 # The cross-tools' build process expects to find an existing cross toolchain
125 # under names like 'arm-apple-darwin$DARWIN_VERS-as'; so make them.
126 rm -rf $DIR/bin || exit 1
127 mkdir $DIR/bin || exit 1
128 for prog in ar nm ranlib strip lipo ld as ; do
129 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
130 T=`xcrun -sdk $SDKROOT -find ${prog}`
Bob Wilson81f6bab2013-01-10 22:59:51 +0000131 ln -s $T $DIR/bin/$prog
Jim Grosbachdc916f12009-10-30 20:54:59 +0000132 echo '#!/bin/sh' > $P || exit 1
133 echo 'exec '$T' "$@"' >> $P || exit 1
134 chmod a+x $P || exit 1
135 done
Eric Christopher2266c002011-09-16 20:36:22 +0000136 # Set up the links for clang.
137 for prog in clang clang++ ; do
Jim Grosbachdc916f12009-10-30 20:54:59 +0000138 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
Eric Christopher2266c002011-09-16 20:36:22 +0000139 T=`xcrun -sdk $SDKROOT -find ${prog}`
Bob Wilson81f6bab2013-01-10 22:59:51 +0000140 ln -s $T $DIR/bin/$prog
Jim Grosbachdc916f12009-10-30 20:54:59 +0000141 echo '#!/bin/sh' > $P || exit 1
Bill Wendlingf14bb1e2010-12-23 00:49:18 +0000142 echo 'exec '$T' -arch armv7 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
Jim Grosbachdc916f12009-10-30 20:54:59 +0000143 chmod a+x $P || exit 1
144 done
145
146 PATH=$DIR/bin:$PATH
Jim Grosbachdc916f12009-10-30 20:54:59 +0000147
Bob Wilson81f6bab2013-01-10 22:59:51 +0000148 unset SDKROOT && \
149 $SRC_DIR/configure $COMMON_CONFIGURE_OPTS \
150 --enable-targets=arm \
151 --host=arm-apple-darwin10 \
152 --target=arm-apple-darwin10 \
153 --build=i686-apple-darwin10 \
154 --program-prefix="" \
155 || exit 1
156
Bob Wilsonace548a2013-01-12 02:31:42 +0000157 make $JOBS_FLAG $COMMON_MAKEFLAGS SDKROOT= UNIVERSAL_ARCH="$HOSTS" \
158 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'"
Bob Wilson81f6bab2013-01-10 22:59:51 +0000159 if [ $? != 0 ] ; then
160 echo "error: LLVM 'make' failed!"
161 exit 1
162 fi
163
Jim Grosbachdc916f12009-10-30 20:54:59 +0000164else
Bob Wilson81f6bab2013-01-10 22:59:51 +0000165# not $ARM_HOSTED_BUILD
Bob Wilson0d545602010-05-05 22:22:40 +0000166
Bob Wilson81f6bab2013-01-10 22:59:51 +0000167 if [ "$IOS_SIM_BUILD" = yes ]; then
168 # Use a non-standard "darwin_sim" host triple to trigger a cross-build.
169 configure_opts="--enable-targets=x86 --host=i686-apple-darwin_sim \
170 --build=i686-apple-darwin10"
171 else
172 configure_opts="--enable-targets=arm,x86"
173 fi
174
Bob Wilson8bbd98d2012-04-03 21:50:26 +0000175 if [ $SDKROOT ]; then
176 CPPFLAGS="$CPPFLAGS -isysroot $SDKROOT"
177 fi
Bob Wilson18641462012-04-05 00:35:55 +0000178 for host in $HOSTS; do :; done
179 CPPFLAGS="$CPPFLAGS -arch $host"
Bob Wilson8bbd98d2012-04-03 21:50:26 +0000180
Bob Wilson81f6bab2013-01-10 22:59:51 +0000181 $SRC_DIR/configure $COMMON_CONFIGURE_OPTS $configure_opts \
182 --program-prefix="" \
Bob Wilson8bbd98d2012-04-03 21:50:26 +0000183 CPPFLAGS="$CPPFLAGS" \
Bob Wilson0d545602010-05-05 22:22:40 +0000184 || exit 1
Bill Wendling71df1dd2007-11-09 06:59:33 +0000185
Bob Wilsonace548a2013-01-12 02:31:42 +0000186 make $JOBS_FLAG $COMMON_MAKEFLAGS UNIVERSAL_ARCH="$HOSTS" \
187 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'"
Bob Wilson81f6bab2013-01-10 22:59:51 +0000188 if [ $? != 0 ] ; then
Bill Wendling71df1dd2007-11-09 06:59:33 +0000189 echo "error: LLVM 'make' failed!"
190 exit 1
Bob Wilson81f6bab2013-01-10 22:59:51 +0000191 fi
Bill Wendling71df1dd2007-11-09 06:59:33 +0000192fi
193
Bill Wendling71df1dd2007-11-09 06:59:33 +0000194################################################################################
195# Construct the actual destination root, by copying stuff from $DIR/dst-* to
196# $DEST_DIR, with occasional 'lipo' commands.
197
198cd $DEST_DIR || exit 1
199
200# Clean out DEST_DIR in case -noclean was passed to buildit.
201rm -rf * || exit 1
202
203cd $DIR/obj-llvm || exit 1
204
205# Install the tree into the destination directory.
Bob Wilsonace548a2013-01-12 02:31:42 +0000206make $JOBS_FLAG $COMMON_MAKEFLAGS UNIVERSAL_ARCH="$HOSTS" install
Bill Wendling71df1dd2007-11-09 06:59:33 +0000207if ! test $? == 0 ; then
208 echo "error: LLVM 'make install' failed!"
209 exit 1
210fi
211
212# Install Version.h
Bill Wendling098a38b2009-12-15 22:42:19 +0000213LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'`
214if [ "x$LLVM_MINOR_VERSION" = "x" ]; then
215 LLVM_MINOR_VERSION=0
216fi
217RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION`
Bill Wendling71df1dd2007-11-09 06:59:33 +0000218echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
219echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
220
Bob Wilson7f6f1242011-10-03 18:48:16 +0000221# Find the right version of strip to use.
222STRIP=strip
223if [ -n "$SDKROOT" ]; then
224 STRIP=`xcrun -sdk $SDKROOT -find strip`
225fi
226
Bill Wendlingda2586f2008-03-22 21:57:15 +0000227if [ "x$LLVM_DEBUG" != "x1" ]; then
228 # Strip local symbols from llvm libraries.
Bill Wendling7839c492010-06-29 22:17:37 +0000229 #
230 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
231 # PPC objects!
Bob Wilson7f6f1242011-10-03 18:48:16 +0000232 $STRIP -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa]
Bill Wendling194d0912009-02-09 04:01:11 +0000233 for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do
Bob Wilson7f6f1242011-10-03 18:48:16 +0000234 $STRIP -Sxl $f
Bill Wendlingf2116d72009-02-09 02:18:35 +0000235 done
Bill Wendlingda2586f2008-03-22 21:57:15 +0000236fi
Bill Wendling71df1dd2007-11-09 06:59:33 +0000237
238# Remove .dir files
239cd $DEST_DIR$DEST_ROOT
Bill Wendling783b8512009-02-09 02:13:33 +0000240rm -f bin/.dir etc/llvm/.dir lib/.dir
Bill Wendling71df1dd2007-11-09 06:59:33 +0000241
Bob Wilsondbb77152010-10-22 23:04:17 +0000242# The Hello dylib is an example of how to build a pass.
243# The BugpointPasses module is only used to test bugpoint.
244# These unversioned dylibs cause verification failures, so do not install them.
Bob Wilsond2e7b052011-02-26 00:22:17 +0000245# (The wildcards are used to match a "lib" prefix if it is present.)
246rm $DEST_DIR$DEST_ROOT/lib/*LLVMHello.dylib
247rm $DEST_DIR$DEST_ROOT/lib/*BugpointPasses.dylib
Bill Wendlinge8b48b42009-04-10 18:48:38 +0000248
Devang Patel3978c752008-08-19 01:17:41 +0000249# Compress manpages
250MDIR=$DEST_DIR$DEST_ROOT/share/man/man1
251gzip -f $MDIR/*
252
Bill Wendling71df1dd2007-11-09 06:59:33 +0000253################################################################################
254# Create SYM_DIR with information required for debugging.
255
Bill Wendlingc8f2f682007-11-12 23:55:19 +0000256# Figure out how many make processes to run.
257SYSCTL=`sysctl -n hw.activecpu`
258
259# hw.activecpu only available in 10.2.6 and later
260if [ -z "$SYSCTL" ]; then
261 SYSCTL=`sysctl -n hw.ncpu`
262fi
263
264# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders
265# can default to 2, since even if they are single processor, nothing else is
266# running on the machine.
267if [ -z "$SYSCTL" ]; then
268 SYSCTL=2
269fi
270
Bill Wendling71df1dd2007-11-09 06:59:33 +0000271cd $SYM_DIR || exit 1
272
273# Clean out SYM_DIR in case -noclean was passed to buildit.
274rm -rf * || exit 1
275
276# Generate .dSYM files
Bob Wilson81f6bab2013-01-10 22:59:51 +0000277DSYMUTIL=`xcrun -find dsymutil`
Bill Wendling591854d2009-04-10 17:45:16 +0000278find $DEST_DIR -perm -0111 -type f \
279 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \
Bob Wilson81f6bab2013-01-10 22:59:51 +0000280 -print | xargs -n 1 -P ${SYSCTL} ${DSYMUTIL}
Bill Wendling71df1dd2007-11-09 06:59:33 +0000281
282# Save .dSYM files and .a archives
283cd $DEST_DIR || exit 1
284find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
285 | cpio -pdml $SYM_DIR || exit 1
286
287# Save source files.
288mkdir $SYM_DIR/src || exit 1
289cd $DIR || exit 1
290find obj-* -name \*.\[chy\] -o -name \*.cpp -print \
291 | cpio -pdml $SYM_DIR/src || exit 1
292
293################################################################################
Bob Wilson9d12ffc2012-04-03 23:13:26 +0000294# Remove libLTO.dylib and lto.h. Those are installed by clang.
Bill Wendling8d87a1f2010-06-22 23:44:15 +0000295
296cd $DEST_DIR$DEST_ROOT
Bob Wilson9d12ffc2012-04-03 23:13:26 +0000297rm -f lib/libLTO.dylib
Bill Wendling8d87a1f2010-06-22 23:44:15 +0000298rm -f lib/libLTO.a lib/libLTO.la
Stuart Hastingse1673602011-02-25 20:42:39 +0000299find $DEST_DIR$DEST_ROOT -name lto.h -delete
300
Bill Wendling8d87a1f2010-06-22 23:44:15 +0000301################################################################################
Bill Wendling71df1dd2007-11-09 06:59:33 +0000302# Remove debugging information from DEST_DIR.
303
Bill Wendling8d87a1f2010-06-22 23:44:15 +0000304cd $DIR || exit 1
Bill Wendling9a925be2010-06-29 01:08:57 +0000305
Bill Wendling71df1dd2007-11-09 06:59:33 +0000306find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
307find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
Bill Wendling9a925be2010-06-29 01:08:57 +0000308
309# Strip debugging information from files
Bill Wendling7839c492010-06-29 22:17:37 +0000310#
311# Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
312# PPC objects!
Bill Wendling9a925be2010-06-29 01:08:57 +0000313find $DEST_DIR -perm -0111 -type f \
314 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \
Bob Wilson7f6f1242011-10-03 18:48:16 +0000315 -print | xargs -n 1 -P ${SYSCTL} $STRIP -arch all -Sl
Bill Wendling9a925be2010-06-29 01:08:57 +0000316
Bill Wendling71df1dd2007-11-09 06:59:33 +0000317chgrp -h -R wheel $DEST_DIR
318chgrp -R wheel $DEST_DIR
319
320################################################################################
Bob Wilson5d2c1212010-07-14 23:49:18 +0000321# Remove the docs directory
Bill Wendling557ecd82008-05-06 08:33:07 +0000322
Bob Wilson5d2c1212010-07-14 23:49:18 +0000323rm -rf $DEST_DIR$DEST_ROOT/docs
Bill Wendling557ecd82008-05-06 08:33:07 +0000324
325################################################################################
Bill Wendling71df1dd2007-11-09 06:59:33 +0000326# w00t! Done!
327
328exit 0