blob: d607f3966c6a906a08fc726f4a6525c526067d8a [file] [log] [blame]
Bill Wendling6902e842007-11-09 06:59:33 +00001#!/bin/sh
2# LLVM LOCAL file B&I
3
4set -x
5
6# -arch arguments are different than configure arguments. We need to
7# translate them.
8
9TRANSLATE_ARCH="sed -e s/ppc/powerpc/ -e s/i386/i686/"
10
11# Build LLVM the "Apple way".
12# Parameters:
13
14# The first parameter is a space-separated list of the architectures the
15# compilers will run on. For instance, "ppc i386". If the current machine
16# isn't in the list, it will (effectively) be added.
17HOSTS=`echo $1 | $TRANSLATE_ARCH `
18
19# The second parameter is a space-separated list of the architectures the
20# compilers will generate code for. If the current machine isn't in the list, a
21# compiler for it will get built anyway, but won't be installed.
22TARGETS=`echo $2 | $TRANSLATE_ARCH`
23
24# The third parameter is the path to the compiler sources. There should be a
25# shell script named 'configure' in this directory. This script makes a copy...
26ORIG_SRC_DIR="$3"
27
28# The fourth parameter is the location where the LLVM will be installed. You can
29# move it once it's built, so this mostly controls the layout of $DEST_DIR.
30DEST_ROOT="$4"
31
32# The fifth parameter is the place where the compiler will be copied once it's
33# built.
34DEST_DIR="$5"
35
36# The sixth parameter is a directory in which to place information (like
37# unstripped executables and generated source files) helpful in debugging the
38# resulting compiler.
39SYM_DIR="$6"
40
41# The seventh parameter is the version number of the submission, e.g. 1007.
42LLVM_SUBMIT_VERSION="$7"
43
44# The eighth parameter is the subversion number of the submission, e.g. 03.
45LLVM_SUBMIT_SUBVERSION="$8"
46
47# The nineth parameter is a yes/no that indicates whether assertions should be
48# enabled in the LLVM libs/tools.
49LLVM_ASSERTIONS="$9"
50
51# The current working directory is where the build will happen. It may already
52# contain a partial result of an interrupted build, in which case this script
53# will continue where it left off.
54DIR=`pwd`
55
56DARWIN_VERS=`uname -r | sed 's/\..*//'`
57echo DARWIN_VERS = $DARWIN_VERS
58
59# If the user has CC set in their environment unset it now
60unset CC
61
62# The B&I build srcript (~rc/bin/buildit) accepts an '-othercflags' command-line
63# flag, and captures the argument to that flag in $RC_NONARCH_CFLAGS (and
64# mysteriously prepends '-pipe' thereto). We will allow this to override the
65# default $CFLAGS and $CXXFLAGS.
66
67if [ "x$LLVM_DEBUG" == "x" ]; then
68 CFLAGS="-g -O2 ${RC_NONARCH_CFLAGS/-pipe/}"
69 OPTIMIZE_OPTS="ENABLE_OPTIMIZED=1"
70else
71 CFLAGS="-g"
72 OPTIMIZE_OPTS=
73fi
74
75################################################################################
76# Run the build.
77
78# Create the source tree we'll actually use to build, deleting
79# tcl since it doesn't actually build properly in a cross environment
80# and we don't really need it.
81SRC_DIR=$DIR/src
82rm -rf $SRC_DIR || exit 1
83mkdir $SRC_DIR || exit 1
84ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1
85
86# Build the LLVM tree universal.
87mkdir -p $DIR/obj-llvm || exit 1
88cd $DIR/obj-llvm || exit 1
89
90if [ \! -f Makefile.config ]; then
91 $SRC_DIR/llvm/configure --prefix=$DEST_DIR$DEST_ROOT \
92 --enable-targets=x86,powerpc --enable-assertions=$LLVM_ASSERTIONS \
93 || exit 1
94fi
95
96if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
97 LLVM_VERSION="$LLVM_SUBMIT_VERSION"
98else
99 LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
100fi
101
102# Note: Don't pass -jN here. Building universal already has parallelism and we
103# don't want to make the builders hit swap by firing off too many gcc's at the
104# same time.
105make $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$LLVM_ARCHS" \
106 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'"
107
108if ! test $? == 0 ; then
109 echo "error: LLVM 'make' failed!"
110 exit 1
111fi
112
113# Figure out how many make processes to run.
114SYSCTL=`sysctl -n hw.activecpu`
115
116# hw.activecpu only available in 10.2.6 and later
117if [ -z "$SYSCTL" ]; then
118 SYSCTL=`sysctl -n hw.ncpu`
119fi
120
121# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders
122# can default to 2, since even if they are single processor, nothing else is
123# running on the machine.
124if [ -z "$SYSCTL" ]; then
125 SYSCTL=2
126fi
127
128################################################################################
129# Construct the actual destination root, by copying stuff from $DIR/dst-* to
130# $DEST_DIR, with occasional 'lipo' commands.
131
132cd $DEST_DIR || exit 1
133
134# Clean out DEST_DIR in case -noclean was passed to buildit.
135rm -rf * || exit 1
136
137cd $DIR/obj-llvm || exit 1
138
139# Install the tree into the destination directory.
140make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 OPTIMIZE_OPTION='-O2' install
141
142if ! test $? == 0 ; then
143 echo "error: LLVM 'make install' failed!"
144 exit 1
145fi
146
147# Install Version.h
148if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
149 RC_ProjectSourceSubversion=0
150else
151 case "$LLVM_SUBMIT_SUBVERSION" in
152 01) RC_ProjectSourceSubversion=1 ;;
153 02) RC_ProjectSourceSubversion=2 ;;
154 03) RC_ProjectSourceSubversion=3 ;;
155 04) RC_ProjectSourceSubversion=4 ;;
156 05) RC_ProjectSourceSubversion=5 ;;
157 06) RC_ProjectSourceSubversion=6 ;;
158 07) RC_ProjectSourceSubversion=7 ;;
159 08) RC_ProjectSourceSubversion=8 ;;
160 09) RC_ProjectSourceSubversion=9 ;;
161 *) RC_ProjectSourceSubversion=$LLVM_SUBMIT_SUBVERSION ;;
162 esac
163fi
164
165echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
166echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
167
168# Strip local symbols from llvm libraries.
169strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa]
170strip -Sx $DEST_DIR$DEST_ROOT/lib/*.so
171
172# Remove .dir files
173cd $DEST_DIR$DEST_ROOT
174rm bin/.dir etc/llvm/.dir lib/.dir
175
176# Remove PPC64 fat slices.
177cd $DEST_DIR$DEST_ROOT/bin
178
179if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then
180 find . -perm 755 -type f -exec lipo -extract ppc -extract i386 {} -output {} \;
181else
182 find . -perm 755 -type f -exec lipo -extract ppc7400 -extract i386 {} -output {} \;
183fi
184
185cd $DEST_DIR$DEST_ROOT
186lipo -extract ppc -extract i386 lib/LLVMlto.0.0.0.so -output lib/LLVMlto.0.0.0.so
187
188################################################################################
189# Create SYM_DIR with information required for debugging.
190
191cd $SYM_DIR || exit 1
192
193# Clean out SYM_DIR in case -noclean was passed to buildit.
194rm -rf * || exit 1
195
196# Generate .dSYM files
197find $DEST_DIR -perm -0111 -type f -print | xargs -n 1 -P ${SYSCTL} dsymutil
198
199# Save .dSYM files and .a archives
200cd $DEST_DIR || exit 1
201find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
202 | cpio -pdml $SYM_DIR || exit 1
203
204# Save source files.
205mkdir $SYM_DIR/src || exit 1
206cd $DIR || exit 1
207find obj-* -name \*.\[chy\] -o -name \*.cpp -print \
208 | cpio -pdml $SYM_DIR/src || exit 1
209
210################################################################################
211# Remove debugging information from DEST_DIR.
212
213find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
214find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
215chgrp -h -R wheel $DEST_DIR
216chgrp -R wheel $DEST_DIR
217
218################################################################################
219# w00t! Done!
220
221exit 0