blob: 994fb0696ee9dde9e4eaf608034d29653a0d5699 [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 Wilson7d255212010-05-05 22:22:40 +000045# A yes/no parameter that controls whether to cross-build for an ARM host.
Bob Wilsond13af632012-04-03 23:13:26 +000046ARM_HOSTED_BUILD="$9"
Bob Wilsonb8485d62010-04-28 21:08:01 +000047
Bob Wilson273e48b2010-07-20 20:44:02 +000048# A yes/no parameter that controls whether to cross-build for the iOS simulator
Bob Wilsond13af632012-04-03 23:13:26 +000049IOS_SIM_BUILD="${10}"
Bob Wilson273e48b2010-07-20 20:44:02 +000050
Bob Wilson7d255212010-05-05 22:22:40 +000051# The version number of the submission, e.g. 1007.
Bob Wilsond13af632012-04-03 23:13:26 +000052LLVM_SUBMIT_VERSION="${11}"
Bob Wilson7d255212010-05-05 22:22:40 +000053
54# The subversion number of the submission, e.g. 03.
Bob Wilsond13af632012-04-03 23:13:26 +000055LLVM_SUBMIT_SUBVERSION="${12}"
Evan Chengb4eae992008-01-18 21:01:00 +000056
Bill Wendling6902e842007-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 Wendling6902e842007-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 Hastings4a53e1e2009-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 Wendling6902e842007-11-09 06:59:33 +000079
80# Build the LLVM tree universal.
81mkdir -p $DIR/obj-llvm || exit 1
82cd $DIR/obj-llvm || exit 1
83
Bob Wilson7d255212010-05-05 22:22:40 +000084if [ "$ARM_HOSTED_BUILD" = yes ]; then
Jim Grosbach669327b2009-10-30 20:54:59 +000085 # The cross-tools' build process expects to find an existing cross toolchain
86 # under names like 'arm-apple-darwin$DARWIN_VERS-as'; so make them.
87 rm -rf $DIR/bin || exit 1
88 mkdir $DIR/bin || exit 1
89 for prog in ar nm ranlib strip lipo ld as ; do
90 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
91 T=`xcrun -sdk $SDKROOT -find ${prog}`
92 echo '#!/bin/sh' > $P || exit 1
93 echo 'exec '$T' "$@"' >> $P || exit 1
94 chmod a+x $P || exit 1
95 done
Eric Christopher04f138e2011-09-16 20:36:22 +000096 # Set up the links for clang.
97 for prog in clang clang++ ; do
Jim Grosbach669327b2009-10-30 20:54:59 +000098 P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
Eric Christopher04f138e2011-09-16 20:36:22 +000099 T=`xcrun -sdk $SDKROOT -find ${prog}`
Jim Grosbach669327b2009-10-30 20:54:59 +0000100 echo '#!/bin/sh' > $P || exit 1
Bill Wendling65e43a22010-12-23 00:49:18 +0000101 echo 'exec '$T' -arch armv7 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
Jim Grosbach669327b2009-10-30 20:54:59 +0000102 chmod a+x $P || exit 1
103 done
104
105 PATH=$DIR/bin:$PATH
Jim Grosbach669327b2009-10-30 20:54:59 +0000106fi
107
Bob Wilson7d255212010-05-05 22:22:40 +0000108if [ "$ARM_HOSTED_BUILD" = yes ]; then
Bob Wilson7d255212010-05-05 22:22:40 +0000109 configure_opts="--enable-targets=arm --host=arm-apple-darwin10 \
110 --target=arm-apple-darwin10 --build=i686-apple-darwin10"
Bob Wilson273e48b2010-07-20 20:44:02 +0000111elif [ "$IOS_SIM_BUILD" = yes ]; then
112 # Use a non-standard "darwin_sim" host triple to trigger a cross-build.
113 configure_opts="--enable-targets=x86 --host=i686-apple-darwin_sim \
114 --build=i686-apple-darwin10"
Jim Grosbach669327b2009-10-30 20:54:59 +0000115else
Bob Wilsonac074072012-04-03 21:50:24 +0000116 configure_opts="--enable-targets=arm,x86"
Bob Wilson7d255212010-05-05 22:22:40 +0000117fi
118
Bob Wilson585d5802012-04-03 21:50:26 +0000119if [ "$ARM_HOSTED_BUILD" != yes ]; then
120 if [ $SDKROOT ]; then
121 CPPFLAGS="$CPPFLAGS -isysroot $SDKROOT"
122 fi
Bob Wilson63246de2012-04-05 00:35:55 +0000123 for host in $HOSTS; do :; done
124 CPPFLAGS="$CPPFLAGS -arch $host"
Bob Wilson585d5802012-04-03 21:50:26 +0000125fi
126
Bob Wilson7d255212010-05-05 22:22:40 +0000127if [ \! -f Makefile.config ]; then
Bob Wilson29c8a782010-07-14 23:41:58 +0000128 $SRC_DIR/configure --prefix=$DEST_DIR$DEST_ROOT $configure_opts \
Bob Wilson7d255212010-05-05 22:22:40 +0000129 --enable-assertions=$LLVM_ASSERTIONS \
130 --enable-optimized=$LLVM_OPTIMIZED \
131 --disable-bindings \
Bob Wilson585d5802012-04-03 21:50:26 +0000132 CPPFLAGS="$CPPFLAGS" \
Bob Wilson7d255212010-05-05 22:22:40 +0000133 || exit 1
Bill Wendling6902e842007-11-09 06:59:33 +0000134fi
135
Bill Wendlinge6497782008-10-27 23:31:24 +0000136SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/[^.]*\.\([0-9]*\).*/\1/'`
Bill Wendling499d7cf2008-07-11 22:42:10 +0000137
138if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then
139 LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION`
140 RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'`
141 LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion
142fi
143
Bill Wendling6902e842007-11-09 06:59:33 +0000144if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
145 LLVM_VERSION="$LLVM_SUBMIT_VERSION"
146else
147 LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
148fi
149
Bob Wilson05a5c102011-09-26 22:30:57 +0000150# Figure out how many make processes to run.
151SYSCTL=`sysctl -n hw.activecpu`
152# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
153# Builders can default to 2, since even if they are single processor,
154# nothing else is running on the machine.
155if [ -z "$SYSCTL" ]; then
156 SYSCTL=2
Bill Wendlingff140fa2008-04-15 21:33:52 +0000157fi
Bob Wilson05a5c102011-09-26 22:30:57 +0000158JOBS_FLAG="-j $SYSCTL"
Bill Wendlingff140fa2008-04-15 21:33:52 +0000159
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000160make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Bob Wilsonbf1075c2010-06-14 17:56:25 +0000161 UNIVERSAL_SDK_PATH=$SDKROOT \
Daniel Dunbarb562b472009-08-27 23:43:28 +0000162 NO_RUNTIME_LIBS=1 \
Bill Wendling602d0052010-03-23 22:15:33 +0000163 DISABLE_EDIS=1 \
Bob Wilsonfb067ed2011-11-04 17:57:13 +0000164 REQUIRES_RTTI=1 \
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000165 DEBUG_SYMBOLS=1 \
Nick Kledzik02e4e172008-02-29 19:32:13 +0000166 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
167 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Bill Wendlinge6497782008-10-27 23:31:24 +0000168 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'" \
169 VERBOSE=1
Bill Wendling6902e842007-11-09 06:59:33 +0000170
Stuart Hastingsdc3d8cc2009-09-28 22:17:53 +0000171if [ $? != 0 ] ; then
Bill Wendling6902e842007-11-09 06:59:33 +0000172 echo "error: LLVM 'make' failed!"
173 exit 1
174fi
175
Bill Wendling6902e842007-11-09 06:59:33 +0000176################################################################################
177# Construct the actual destination root, by copying stuff from $DIR/dst-* to
178# $DEST_DIR, with occasional 'lipo' commands.
179
180cd $DEST_DIR || exit 1
181
182# Clean out DEST_DIR in case -noclean was passed to buildit.
183rm -rf * || exit 1
184
185cd $DIR/obj-llvm || exit 1
186
187# Install the tree into the destination directory.
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000188make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Daniel Dunbarb562b472009-08-27 23:43:28 +0000189 NO_RUNTIME_LIBS=1 \
Bill Wendling602d0052010-03-23 22:15:33 +0000190 DISABLE_EDIS=1 \
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000191 DEBUG_SYMBOLS=1 \
Bill Wendlinge6497782008-10-27 23:31:24 +0000192 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
193 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Evan Chengb306e382009-04-20 22:16:40 +0000194 OPTIMIZE_OPTION='-O3' VERBOSE=1 install
Bill Wendling6902e842007-11-09 06:59:33 +0000195
196if ! test $? == 0 ; then
197 echo "error: LLVM 'make install' failed!"
198 exit 1
199fi
200
201# Install Version.h
Bill Wendling6be413d2009-12-15 22:42:19 +0000202LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'`
203if [ "x$LLVM_MINOR_VERSION" = "x" ]; then
204 LLVM_MINOR_VERSION=0
205fi
206RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION`
Bill Wendling6902e842007-11-09 06:59:33 +0000207echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
208echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
209
Bob Wilsonae59e8c2011-10-03 18:48:16 +0000210# Find the right version of strip to use.
211STRIP=strip
212if [ -n "$SDKROOT" ]; then
213 STRIP=`xcrun -sdk $SDKROOT -find strip`
214fi
215
Bill Wendling28ecd492008-03-22 21:57:15 +0000216if [ "x$LLVM_DEBUG" != "x1" ]; then
217 # Strip local symbols from llvm libraries.
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000218 #
219 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
220 # PPC objects!
Bob Wilsonae59e8c2011-10-03 18:48:16 +0000221 $STRIP -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa]
Bill Wendlingeaa0ffb2009-02-09 04:01:11 +0000222 for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do
Bob Wilsonae59e8c2011-10-03 18:48:16 +0000223 $STRIP -Sxl $f
Bill Wendling51739ca2009-02-09 02:18:35 +0000224 done
Bill Wendling28ecd492008-03-22 21:57:15 +0000225fi
Bill Wendling6902e842007-11-09 06:59:33 +0000226
227# Remove .dir files
228cd $DEST_DIR$DEST_ROOT
Bill Wendling25c08052009-02-09 02:13:33 +0000229rm -f bin/.dir etc/llvm/.dir lib/.dir
Bill Wendling6902e842007-11-09 06:59:33 +0000230
Bob Wilson04b2bb32010-10-22 23:04:17 +0000231# The Hello dylib is an example of how to build a pass.
232# The BugpointPasses module is only used to test bugpoint.
233# These unversioned dylibs cause verification failures, so do not install them.
Bob Wilsone1b5aa72011-02-26 00:22:17 +0000234# (The wildcards are used to match a "lib" prefix if it is present.)
235rm $DEST_DIR$DEST_ROOT/lib/*LLVMHello.dylib
236rm $DEST_DIR$DEST_ROOT/lib/*BugpointPasses.dylib
Bill Wendling68189852009-04-10 18:48:38 +0000237
Devang Patel48694562008-08-19 01:17:41 +0000238# Compress manpages
239MDIR=$DEST_DIR$DEST_ROOT/share/man/man1
240gzip -f $MDIR/*
241
Bill Wendling6902e842007-11-09 06:59:33 +0000242################################################################################
243# Create SYM_DIR with information required for debugging.
244
Bill Wendling553d22c2007-11-12 23:55:19 +0000245# Figure out how many make processes to run.
246SYSCTL=`sysctl -n hw.activecpu`
247
248# hw.activecpu only available in 10.2.6 and later
249if [ -z "$SYSCTL" ]; then
250 SYSCTL=`sysctl -n hw.ncpu`
251fi
252
253# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders
254# can default to 2, since even if they are single processor, nothing else is
255# running on the machine.
256if [ -z "$SYSCTL" ]; then
257 SYSCTL=2
258fi
259
Bill Wendling6902e842007-11-09 06:59:33 +0000260cd $SYM_DIR || exit 1
261
262# Clean out SYM_DIR in case -noclean was passed to buildit.
263rm -rf * || exit 1
264
265# Generate .dSYM files
Bill Wendling82934f22009-04-10 17:45:16 +0000266find $DEST_DIR -perm -0111 -type f \
267 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \
268 -print | xargs -n 1 -P ${SYSCTL} dsymutil
Bill Wendling6902e842007-11-09 06:59:33 +0000269
270# Save .dSYM files and .a archives
271cd $DEST_DIR || exit 1
272find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
273 | cpio -pdml $SYM_DIR || exit 1
274
275# Save source files.
276mkdir $SYM_DIR/src || exit 1
277cd $DIR || exit 1
278find obj-* -name \*.\[chy\] -o -name \*.cpp -print \
279 | cpio -pdml $SYM_DIR/src || exit 1
280
281################################################################################
Bob Wilsond13af632012-04-03 23:13:26 +0000282# Remove libLTO.dylib and lto.h. Those are installed by clang.
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000283
284cd $DEST_DIR$DEST_ROOT
Bob Wilsond13af632012-04-03 23:13:26 +0000285rm -f lib/libLTO.dylib
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000286rm -f lib/libLTO.a lib/libLTO.la
Stuart Hastings539f8172011-02-25 20:42:39 +0000287find $DEST_DIR$DEST_ROOT -name lto.h -delete
288
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000289################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000290# Remove debugging information from DEST_DIR.
291
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000292cd $DIR || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000293
Bill Wendling6902e842007-11-09 06:59:33 +0000294find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
295find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000296
297# Strip debugging information from files
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000298#
299# Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
300# PPC objects!
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000301find $DEST_DIR -perm -0111 -type f \
302 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \
Bob Wilsonae59e8c2011-10-03 18:48:16 +0000303 -print | xargs -n 1 -P ${SYSCTL} $STRIP -arch all -Sl
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000304
Bill Wendling6902e842007-11-09 06:59:33 +0000305chgrp -h -R wheel $DEST_DIR
306chgrp -R wheel $DEST_DIR
307
308################################################################################
Bob Wilson4bb327d2010-07-14 23:49:18 +0000309# Remove the docs directory
Bill Wendling1f851292008-05-06 08:33:07 +0000310
Bob Wilson4bb327d2010-07-14 23:49:18 +0000311rm -rf $DEST_DIR$DEST_ROOT/docs
Bill Wendling1f851292008-05-06 08:33:07 +0000312
313################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000314# w00t! Done!
315
316exit 0