blob: afbf143cf0941534e612a512435c4f35590eec0a [file] [log] [blame]
Bill Wendling6902e842007-11-09 06:59:33 +00001#!/bin/sh
2# LLVM LOCAL file B&I
3
4set -x
5
Bill Wendling6902e842007-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 Patel5250f1f2007-11-12 23:53:43 +000012HOSTS="$1"
Bill Wendling6902e842007-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 Wilsond79f0ed2010-04-28 18:06:27 +000017# FIXME: The list of targets is currently hard-coded and TARGETS is not used.
Devang Patel5250f1f2007-11-12 23:53:43 +000018TARGETS="$2"
Bill Wendling6902e842007-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 Patelc60141b2008-01-30 18:30:11 +000037# The seventh parameter is a yes/no that indicates whether assertions should be
Bill Wendling6902e842007-11-09 06:59:33 +000038# enabled in the LLVM libs/tools.
Devang Patelc60141b2008-01-30 18:30:11 +000039LLVM_ASSERTIONS="$7"
Bill Wendling6902e842007-11-09 06:59:33 +000040
Devang Patelc60141b2008-01-30 18:30:11 +000041# The eighth parameter is a yes/no that indicates whether this is an optimized
Evan Chengb4eae992008-01-18 21:01:00 +000042# build.
Devang Patelc60141b2008-01-30 18:30:11 +000043LLVM_OPTIMIZED="$8"
44
Bob Wilsonb8485d62010-04-28 21:08:01 +000045# The ninth parameter is a yes/no that indicates whether libLTO.dylib
46# should be installed.
47INSTALL_LIBLTO="$9"
Devang Patelc60141b2008-01-30 18:30:11 +000048
Bob Wilson7d255212010-05-05 22:22:40 +000049# A yes/no parameter that controls whether to cross-build for an ARM host.
50ARM_HOSTED_BUILD="${10}"
Bob Wilsonb8485d62010-04-28 21:08:01 +000051
Bob Wilson7d255212010-05-05 22:22:40 +000052# The version number of the submission, e.g. 1007.
53LLVM_SUBMIT_VERSION="${11}"
54
55# The subversion number of the submission, e.g. 03.
56LLVM_SUBMIT_SUBVERSION="${12}"
Evan Chengb4eae992008-01-18 21:01:00 +000057
Bill Wendling6902e842007-11-09 06:59:33 +000058# The current working directory is where the build will happen. It may already
59# contain a partial result of an interrupted build, in which case this script
60# will continue where it left off.
61DIR=`pwd`
62
63DARWIN_VERS=`uname -r | sed 's/\..*//'`
64echo DARWIN_VERS = $DARWIN_VERS
65
Bill Wendling6902e842007-11-09 06:59:33 +000066################################################################################
67# Run the build.
68
69# Create the source tree we'll actually use to build, deleting
70# tcl since it doesn't actually build properly in a cross environment
71# and we don't really need it.
72SRC_DIR=$DIR/src
73rm -rf $SRC_DIR || exit 1
74mkdir $SRC_DIR || exit 1
75ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1
Stuart Hastings4a53e1e2009-10-22 17:22:37 +000076# We can't use the top-level Makefile as-is. Remove the soft link:
77rm $SRC_DIR/Makefile || exit 1
78# Now create our own by editing the top-level Makefile, deleting every line marked "Apple-style":
79sed -e '/[Aa]pple-style/d' -e '/include.*GNUmakefile/d' $ORIG_SRC_DIR/Makefile > $SRC_DIR/Makefile || exit 1
Bill Wendling6902e842007-11-09 06:59:33 +000080
81# Build the LLVM tree universal.
82mkdir -p $DIR/obj-llvm || exit 1
83cd $DIR/obj-llvm || exit 1
84
Bob Wilson7d255212010-05-05 22:22:40 +000085if [ "$ARM_HOSTED_BUILD" = yes ]; then
Jim Grosbach669327b2009-10-30 20:54:59 +000086 # The cross-tools' build process expects to find an existing cross toolchain
87 # under names like 'arm-apple-darwin$DARWIN_VERS-as'; so make them.
88 rm -rf $DIR/bin || exit 1
89 mkdir $DIR/bin || exit 1
90 for prog in ar nm ranlib strip lipo ld as ; do
91 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
92 T=`xcrun -sdk $SDKROOT -find ${prog}`
93 echo '#!/bin/sh' > $P || exit 1
94 echo 'exec '$T' "$@"' >> $P || exit 1
95 chmod a+x $P || exit 1
96 done
97 # Try to use the platform llvm-gcc. Fall back to gcc if it's not available.
98 for prog in gcc g++ ; do
99 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
Jim Grosbach11cb87c2010-03-17 21:25:13 +0000100 T=`xcrun -find llvm-${prog}`
101 if [ "x$T" = "x" ] ; then
Jim Grosbach669327b2009-10-30 20:54:59 +0000102 T=`xcrun -sdk $SDKROOT -find ${prog}`
Jim Grosbach11cb87c2010-03-17 21:25:13 +0000103 fi
Jim Grosbach669327b2009-10-30 20:54:59 +0000104 echo '#!/bin/sh' > $P || exit 1
105 echo 'exec '$T' -arch armv6 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
106 chmod a+x $P || exit 1
107 done
108
109 PATH=$DIR/bin:$PATH
110# otherwise, try to use llvm-gcc if it's available
Bill Wendling7fc40262009-11-03 22:50:10 +0000111elif [ $DARWIN_VERS -gt 9 ]; then
Jim Grosbach669327b2009-10-30 20:54:59 +0000112 # If the user has set CC or CXX, respect their wishes. If not,
113 # compile with LLVM-GCC/LLVM-G++ if available; if LLVM is not
114 # available, fall back to usual GCC/G++ default.
Evan Cheng17fc13f2009-11-04 08:36:50 +0000115 savedPATH=$PATH ; PATH="/Developer/usr/bin:$PATH"
Jim Grosbach669327b2009-10-30 20:54:59 +0000116 XTMPCC=$(which llvm-gcc)
117 if [ x$CC = x -a x$XTMPCC != x ] ; then export CC=$XTMPCC ; fi
118 XTMPCC=$(which llvm-g++)
119 if [ x$CXX = x -a x$XTMPCC != x ] ; then export CXX=$XTMPCC ; fi
120 PATH=$savedPATH
121 unset XTMPCC savedPATH
122fi
123
Bob Wilson7d255212010-05-05 22:22:40 +0000124if [ "$ARM_HOSTED_BUILD" = yes ]; then
Bob Wilson7d255212010-05-05 22:22:40 +0000125 configure_opts="--enable-targets=arm --host=arm-apple-darwin10 \
126 --target=arm-apple-darwin10 --build=i686-apple-darwin10"
Jim Grosbach669327b2009-10-30 20:54:59 +0000127else
Bob Wilson7d255212010-05-05 22:22:40 +0000128 configure_opts="--enable-targets=arm,x86,powerpc,cbe"
129fi
130
131if [ \! -f Makefile.config ]; then
Bob Wilson29c8a782010-07-14 23:41:58 +0000132 $SRC_DIR/configure --prefix=$DEST_DIR$DEST_ROOT $configure_opts \
Bob Wilson7d255212010-05-05 22:22:40 +0000133 --enable-assertions=$LLVM_ASSERTIONS \
134 --enable-optimized=$LLVM_OPTIMIZED \
135 --disable-bindings \
136 || exit 1
Bill Wendling6902e842007-11-09 06:59:33 +0000137fi
138
Bill Wendlinge6497782008-10-27 23:31:24 +0000139SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/[^.]*\.\([0-9]*\).*/\1/'`
Bill Wendling499d7cf2008-07-11 22:42:10 +0000140
141if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then
142 LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION`
143 RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'`
144 LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion
145fi
146
Bill Wendling6902e842007-11-09 06:59:33 +0000147if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
148 LLVM_VERSION="$LLVM_SUBMIT_VERSION"
149else
150 LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
151fi
152
Bill Wendlingff140fa2008-04-15 21:33:52 +0000153GCC_VER=`cc --version 2>/dev/null | sed 1q`
154
155if echo "$GCC_VER" | grep GCC > /dev/null; then
156 GCC_VER=`echo $GCC_VER | sed -e 's/.*(GCC) \([0-9.][0-9.]*\).*/\1/'`
157 MAJ_VER=`echo $GCC_VER | sed 's/\..*//'`
158 MIN_VER=`echo $GCC_VER | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
159fi
160
161JOBS_FLAG=""
162
163# Note: If compiling with GCC 4.0, don't pass the -jN flag. Building universal
164# already has parallelism and we don't want to make the builders hit swap by
165# firing off too many gccs at the same time.
166if [ "x$MAJ_VER" != "x4" -o "x$MIN_VER" != "x0" ]; then
167 # Figure out how many make processes to run.
168 SYSCTL=`sysctl -n hw.activecpu`
169
170 # hw.activecpu only available in 10.2.6 and later
171 if [ -z "$SYSCTL" ]; then
172 SYSCTL=`sysctl -n hw.ncpu`
173 fi
174
175 # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
176 # Builders can default to 2, since even if they are single processor,
177 # nothing else is running on the machine.
178 if [ -z "$SYSCTL" ]; then
179 SYSCTL=2
180 fi
181
182 JOBS_FLAG="-j $SYSCTL"
183fi
184
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000185make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Bob Wilsonbf1075c2010-06-14 17:56:25 +0000186 UNIVERSAL_SDK_PATH=$SDKROOT \
Daniel Dunbarb562b472009-08-27 23:43:28 +0000187 NO_RUNTIME_LIBS=1 \
Bill Wendling602d0052010-03-23 22:15:33 +0000188 DISABLE_EDIS=1 \
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000189 DEBUG_SYMBOLS=1 \
Nick Kledzik02e4e172008-02-29 19:32:13 +0000190 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
191 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Bill Wendlinge6497782008-10-27 23:31:24 +0000192 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'" \
193 VERBOSE=1
Bill Wendling6902e842007-11-09 06:59:33 +0000194
Stuart Hastingsdc3d8cc2009-09-28 22:17:53 +0000195if [ $? != 0 ] ; then
Bill Wendling6902e842007-11-09 06:59:33 +0000196 echo "error: LLVM 'make' failed!"
197 exit 1
198fi
199
Bill Wendling6902e842007-11-09 06:59:33 +0000200################################################################################
201# Construct the actual destination root, by copying stuff from $DIR/dst-* to
202# $DEST_DIR, with occasional 'lipo' commands.
203
204cd $DEST_DIR || exit 1
205
206# Clean out DEST_DIR in case -noclean was passed to buildit.
207rm -rf * || exit 1
208
209cd $DIR/obj-llvm || exit 1
210
211# Install the tree into the destination directory.
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000212make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Daniel Dunbarb562b472009-08-27 23:43:28 +0000213 NO_RUNTIME_LIBS=1 \
Bill Wendling602d0052010-03-23 22:15:33 +0000214 DISABLE_EDIS=1 \
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000215 DEBUG_SYMBOLS=1 \
Bill Wendlinge6497782008-10-27 23:31:24 +0000216 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
217 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Evan Chengb306e382009-04-20 22:16:40 +0000218 OPTIMIZE_OPTION='-O3' VERBOSE=1 install
Bill Wendling6902e842007-11-09 06:59:33 +0000219
220if ! test $? == 0 ; then
221 echo "error: LLVM 'make install' failed!"
222 exit 1
223fi
224
225# Install Version.h
Bill Wendling6be413d2009-12-15 22:42:19 +0000226LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'`
227if [ "x$LLVM_MINOR_VERSION" = "x" ]; then
228 LLVM_MINOR_VERSION=0
229fi
230RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION`
Bill Wendling6902e842007-11-09 06:59:33 +0000231echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
232echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
233
Bill Wendling28ecd492008-03-22 21:57:15 +0000234if [ "x$LLVM_DEBUG" != "x1" ]; then
235 # Strip local symbols from llvm libraries.
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000236 #
237 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
238 # PPC objects!
239 strip -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa]
Bill Wendlingeaa0ffb2009-02-09 04:01:11 +0000240 for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000241 strip -Sxl $f
Bill Wendling51739ca2009-02-09 02:18:35 +0000242 done
Bill Wendling28ecd492008-03-22 21:57:15 +0000243fi
Bill Wendling6902e842007-11-09 06:59:33 +0000244
Bill Wendlingce5ac162008-11-20 00:11:57 +0000245# Copy over the tblgen utility.
Bob Wilson29c8a782010-07-14 23:41:58 +0000246cp `find $DIR -name tblgen` $DEST_DIR$DEST_ROOT/bin
Bill Wendlingce5ac162008-11-20 00:11:57 +0000247
Bill Wendling6902e842007-11-09 06:59:33 +0000248# Remove .dir files
249cd $DEST_DIR$DEST_ROOT
Bill Wendling25c08052009-02-09 02:13:33 +0000250rm -f bin/.dir etc/llvm/.dir lib/.dir
Bill Wendling6902e842007-11-09 06:59:33 +0000251
252# Remove PPC64 fat slices.
253cd $DEST_DIR$DEST_ROOT/bin
Bill Wendling6902e842007-11-09 06:59:33 +0000254if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then
Bill Wendling25c08052009-02-09 02:13:33 +0000255 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
256 -exec lipo -extract ppc -extract i386 {} -output {} \;
Bill Wendling8d3f36f2008-06-23 22:08:30 +0000257elif [ $MACOSX_DEPLOYMENT_TARGET = "10.5" ]; then
Bill Wendling25c08052009-02-09 02:13:33 +0000258 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
259 -exec lipo -extract ppc7400 -extract i386 {} -output {} \;
Bill Wendling8d3f36f2008-06-23 22:08:30 +0000260else
Bill Wendling25c08052009-02-09 02:13:33 +0000261 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
262 -exec lipo -extract ppc7400 -extract i386 -extract x86_64 {} -output {} \;
Bill Wendling6902e842007-11-09 06:59:33 +0000263fi
264
Bill Wendling68189852009-04-10 18:48:38 +0000265# The Hello dylib is an example of how to build a pass. No need to install it.
Bob Wilson29c8a782010-07-14 23:41:58 +0000266rm $DEST_DIR$DEST_ROOT/lib/LLVMHello.dylib
Bill Wendling68189852009-04-10 18:48:38 +0000267
Devang Patel48694562008-08-19 01:17:41 +0000268# Compress manpages
269MDIR=$DEST_DIR$DEST_ROOT/share/man/man1
270gzip -f $MDIR/*
271
Bill Wendling6902e842007-11-09 06:59:33 +0000272################################################################################
273# Create SYM_DIR with information required for debugging.
274
Bill Wendling553d22c2007-11-12 23:55:19 +0000275# Figure out how many make processes to run.
276SYSCTL=`sysctl -n hw.activecpu`
277
278# hw.activecpu only available in 10.2.6 and later
279if [ -z "$SYSCTL" ]; then
280 SYSCTL=`sysctl -n hw.ncpu`
281fi
282
283# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders
284# can default to 2, since even if they are single processor, nothing else is
285# running on the machine.
286if [ -z "$SYSCTL" ]; then
287 SYSCTL=2
288fi
289
Bill Wendling6902e842007-11-09 06:59:33 +0000290cd $SYM_DIR || exit 1
291
292# Clean out SYM_DIR in case -noclean was passed to buildit.
293rm -rf * || exit 1
294
295# Generate .dSYM files
Bill Wendling82934f22009-04-10 17:45:16 +0000296find $DEST_DIR -perm -0111 -type f \
297 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \
298 -print | xargs -n 1 -P ${SYSCTL} dsymutil
Bill Wendling6902e842007-11-09 06:59:33 +0000299
300# Save .dSYM files and .a archives
301cd $DEST_DIR || exit 1
302find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
303 | cpio -pdml $SYM_DIR || exit 1
304
305# Save source files.
306mkdir $SYM_DIR/src || exit 1
307cd $DIR || exit 1
308find obj-* -name \*.\[chy\] -o -name \*.cpp -print \
309 | cpio -pdml $SYM_DIR/src || exit 1
310
311################################################################################
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000312# Install and strip libLTO.dylib
313
314cd $DEST_DIR$DEST_ROOT
315if [ "$INSTALL_LIBLTO" = "yes" ]; then
Bob Wilson29c8a782010-07-14 23:41:58 +0000316 DT_HOME="$DEST_DIR/Developer/usr"
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000317 mkdir -p $DT_HOME/lib
318 mv lib/libLTO.dylib $DT_HOME/lib/libLTO.dylib
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000319
320 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
321 # PPC objects!
322 strip -arch all -Sl $DT_HOME/lib/libLTO.dylib
Bob Wilson29c8a782010-07-14 23:41:58 +0000323else
324 rm -f lib/libLTO.dylib
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000325fi
326rm -f lib/libLTO.a lib/libLTO.la
327
328################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000329# Remove debugging information from DEST_DIR.
330
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000331cd $DIR || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000332
Bill Wendling6902e842007-11-09 06:59:33 +0000333find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
334find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000335
336# Strip debugging information from files
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000337#
338# Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
339# PPC objects!
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000340find $DEST_DIR -perm -0111 -type f \
341 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000342 -print | xargs -n 1 -P ${SYSCTL} strip -arch all -Sl
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000343
Bill Wendling6902e842007-11-09 06:59:33 +0000344chgrp -h -R wheel $DEST_DIR
345chgrp -R wheel $DEST_DIR
346
347################################################################################
Bill Wendling1f851292008-05-06 08:33:07 +0000348# Remove tar ball from docs directory
349
350find $DEST_DIR -name html.tar.gz -exec rm {} \;
351
352################################################################################
Eric Christopherc39d9532009-12-01 02:26:01 +0000353# symlinks so that B&I can find things
354
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000355if [ "$INSTALL_LIBLTO" = "yes" ]; then
Bob Wilsonb8485d62010-04-28 21:08:01 +0000356 mkdir -p $DEST_DIR/usr/lib/
357 cd $DEST_DIR/usr/lib && \
Bob Wilson29c8a782010-07-14 23:41:58 +0000358 ln -s ../../Developer/usr/lib/libLTO.dylib ./libLTO.dylib
Bob Wilsonb8485d62010-04-28 21:08:01 +0000359fi
Eric Christopherc39d9532009-12-01 02:26:01 +0000360
361################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000362# w00t! Done!
363
364exit 0