d607f3966c6a906a08fc726f4a6525c526067d8a
[oota-llvm.git] / utils / buildit / build_llvm
1 #!/bin/sh
2 # LLVM LOCAL file B&I
3
4 set -x
5
6 # -arch arguments are different than configure arguments. We need to
7 # translate them.
8
9 TRANSLATE_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.
17 HOSTS=`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.
22 TARGETS=`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...
26 ORIG_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.
30 DEST_ROOT="$4"
31
32 # The fifth parameter is the place where the compiler will be copied once it's
33 # built.
34 DEST_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.
39 SYM_DIR="$6"
40
41 # The seventh parameter is the version number of the submission, e.g. 1007.
42 LLVM_SUBMIT_VERSION="$7"
43
44 # The eighth parameter is the subversion number of the submission, e.g. 03.
45 LLVM_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.
49 LLVM_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.
54 DIR=`pwd`
55
56 DARWIN_VERS=`uname -r | sed 's/\..*//'`
57 echo DARWIN_VERS = $DARWIN_VERS
58
59 # If the user has CC set in their environment unset it now
60 unset 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
67 if [ "x$LLVM_DEBUG" == "x" ]; then
68     CFLAGS="-g -O2 ${RC_NONARCH_CFLAGS/-pipe/}"
69     OPTIMIZE_OPTS="ENABLE_OPTIMIZED=1"
70 else
71     CFLAGS="-g"
72     OPTIMIZE_OPTS=
73 fi
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.
81 SRC_DIR=$DIR/src
82 rm -rf $SRC_DIR || exit 1
83 mkdir $SRC_DIR || exit 1
84 ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1
85
86 # Build the LLVM tree universal.
87 mkdir -p $DIR/obj-llvm || exit 1
88 cd $DIR/obj-llvm || exit 1
89
90 if [ \! -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
94 fi
95
96 if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
97     LLVM_VERSION="$LLVM_SUBMIT_VERSION"
98 else
99     LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
100 fi
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.
105 make $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$LLVM_ARCHS" \
106     CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'"
107
108 if ! test $? == 0 ; then
109     echo "error: LLVM 'make' failed!"
110     exit 1
111 fi 
112
113 # Figure out how many make processes to run.
114 SYSCTL=`sysctl -n hw.activecpu`
115
116 # hw.activecpu only available in 10.2.6 and later
117 if [ -z "$SYSCTL" ]; then
118   SYSCTL=`sysctl -n hw.ncpu`
119 fi
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.
124 if [ -z "$SYSCTL" ]; then
125   SYSCTL=2
126 fi
127
128 ################################################################################
129 # Construct the actual destination root, by copying stuff from $DIR/dst-* to
130 # $DEST_DIR, with occasional 'lipo' commands.
131
132 cd $DEST_DIR || exit 1
133
134 # Clean out DEST_DIR in case -noclean was passed to buildit.
135 rm -rf * || exit 1
136
137 cd $DIR/obj-llvm || exit 1
138
139 # Install the tree into the destination directory.
140 make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 OPTIMIZE_OPTION='-O2' install
141
142 if ! test $? == 0 ; then
143     echo "error: LLVM 'make install' failed!"
144     exit 1
145 fi 
146
147 # Install Version.h
148 if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
149     RC_ProjectSourceSubversion=0
150 else
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
163 fi
164
165 echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
166 echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
167
168 # Strip local symbols from llvm libraries.
169 strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa]
170 strip -Sx $DEST_DIR$DEST_ROOT/lib/*.so
171
172 # Remove .dir files 
173 cd $DEST_DIR$DEST_ROOT
174 rm bin/.dir etc/llvm/.dir lib/.dir
175
176 # Remove PPC64 fat slices.
177 cd $DEST_DIR$DEST_ROOT/bin
178
179 if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then
180     find . -perm 755 -type f -exec lipo -extract ppc -extract i386 {} -output {} \;
181 else
182     find . -perm 755 -type f -exec lipo -extract ppc7400 -extract i386 {} -output {} \;
183 fi
184
185 cd $DEST_DIR$DEST_ROOT
186 lipo -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
191 cd $SYM_DIR || exit 1
192
193 # Clean out SYM_DIR in case -noclean was passed to buildit.
194 rm -rf * || exit 1
195
196 # Generate .dSYM files
197 find $DEST_DIR -perm -0111 -type f -print | xargs -n 1 -P ${SYSCTL} dsymutil
198
199 # Save .dSYM files and .a archives
200 cd $DEST_DIR || exit 1
201 find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
202     | cpio -pdml $SYM_DIR || exit 1
203
204 # Save source files.
205 mkdir $SYM_DIR/src || exit 1
206 cd $DIR || exit 1
207 find 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
213 find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
214 find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
215 chgrp -h -R wheel $DEST_DIR
216 chgrp -R wheel $DEST_DIR
217
218 ################################################################################
219 # w00t! Done!
220
221 exit 0