Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # LLVM LOCAL file B&I |
| 3 | |
| 4 | set -x |
| 5 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 6 | # 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 Patel | 5250f1f | 2007-11-12 23:53:43 +0000 | [diff] [blame] | 12 | HOSTS="$1" |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 13 | |
| 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 Wilson | d79f0ed | 2010-04-28 18:06:27 +0000 | [diff] [blame] | 17 | # FIXME: The list of targets is currently hard-coded and TARGETS is not used. |
Devang Patel | 5250f1f | 2007-11-12 23:53:43 +0000 | [diff] [blame] | 18 | TARGETS="$2" |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 19 | |
| 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... |
| 22 | ORIG_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. |
| 26 | DEST_ROOT="$4" |
| 27 | |
| 28 | # The fifth parameter is the place where the compiler will be copied once it's |
| 29 | # built. |
| 30 | DEST_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. |
| 35 | SYM_DIR="$6" |
| 36 | |
Devang Patel | c60141b | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 37 | # The seventh parameter is a yes/no that indicates whether assertions should be |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 38 | # enabled in the LLVM libs/tools. |
Devang Patel | c60141b | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 39 | LLVM_ASSERTIONS="$7" |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 40 | |
Devang Patel | c60141b | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 41 | # The eighth parameter is a yes/no that indicates whether this is an optimized |
Evan Cheng | b4eae99 | 2008-01-18 21:01:00 +0000 | [diff] [blame] | 42 | # build. |
Devang Patel | c60141b | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 43 | LLVM_OPTIMIZED="$8" |
| 44 | |
Bob Wilson | b8485d6 | 2010-04-28 21:08:01 +0000 | [diff] [blame] | 45 | # The ninth parameter is a yes/no that indicates whether libLTO.dylib |
| 46 | # should be installed. |
| 47 | INSTALL_LIBLTO="$9" |
Devang Patel | c60141b | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 48 | |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 49 | # A yes/no parameter that controls whether to cross-build for an ARM host. |
| 50 | ARM_HOSTED_BUILD="${10}" |
Bob Wilson | b8485d6 | 2010-04-28 21:08:01 +0000 | [diff] [blame] | 51 | |
Bob Wilson | 273e48b | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 52 | # A yes/no parameter that controls whether to cross-build for the iOS simulator |
| 53 | IOS_SIM_BUILD="${11}" |
| 54 | |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 55 | # The version number of the submission, e.g. 1007. |
Bob Wilson | 273e48b | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 56 | LLVM_SUBMIT_VERSION="${12}" |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 57 | |
| 58 | # The subversion number of the submission, e.g. 03. |
Bob Wilson | 273e48b | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 59 | LLVM_SUBMIT_SUBVERSION="${13}" |
Evan Cheng | b4eae99 | 2008-01-18 21:01:00 +0000 | [diff] [blame] | 60 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 61 | # The current working directory is where the build will happen. It may already |
| 62 | # contain a partial result of an interrupted build, in which case this script |
| 63 | # will continue where it left off. |
| 64 | DIR=`pwd` |
| 65 | |
| 66 | DARWIN_VERS=`uname -r | sed 's/\..*//'` |
| 67 | echo DARWIN_VERS = $DARWIN_VERS |
| 68 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 69 | ################################################################################ |
| 70 | # Run the build. |
| 71 | |
| 72 | # Create the source tree we'll actually use to build, deleting |
| 73 | # tcl since it doesn't actually build properly in a cross environment |
| 74 | # and we don't really need it. |
| 75 | SRC_DIR=$DIR/src |
| 76 | rm -rf $SRC_DIR || exit 1 |
| 77 | mkdir $SRC_DIR || exit 1 |
| 78 | ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1 |
Stuart Hastings | 4a53e1e | 2009-10-22 17:22:37 +0000 | [diff] [blame] | 79 | # We can't use the top-level Makefile as-is. Remove the soft link: |
| 80 | rm $SRC_DIR/Makefile || exit 1 |
| 81 | # Now create our own by editing the top-level Makefile, deleting every line marked "Apple-style": |
| 82 | sed -e '/[Aa]pple-style/d' -e '/include.*GNUmakefile/d' $ORIG_SRC_DIR/Makefile > $SRC_DIR/Makefile || exit 1 |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 83 | |
| 84 | # Build the LLVM tree universal. |
| 85 | mkdir -p $DIR/obj-llvm || exit 1 |
| 86 | cd $DIR/obj-llvm || exit 1 |
| 87 | |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 88 | if [ "$ARM_HOSTED_BUILD" = yes ]; then |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 89 | # The cross-tools' build process expects to find an existing cross toolchain |
| 90 | # under names like 'arm-apple-darwin$DARWIN_VERS-as'; so make them. |
| 91 | rm -rf $DIR/bin || exit 1 |
| 92 | mkdir $DIR/bin || exit 1 |
| 93 | for prog in ar nm ranlib strip lipo ld as ; do |
| 94 | P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog} |
| 95 | T=`xcrun -sdk $SDKROOT -find ${prog}` |
| 96 | echo '#!/bin/sh' > $P || exit 1 |
| 97 | echo 'exec '$T' "$@"' >> $P || exit 1 |
| 98 | chmod a+x $P || exit 1 |
| 99 | done |
| 100 | # Try to use the platform llvm-gcc. Fall back to gcc if it's not available. |
| 101 | for prog in gcc g++ ; do |
| 102 | P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog} |
Bob Wilson | 02dee5b | 2010-07-22 23:33:00 +0000 | [diff] [blame] | 103 | T=`xcrun -sdk $SDKROOT -find llvm-${prog}` |
Jim Grosbach | 11cb87c | 2010-03-17 21:25:13 +0000 | [diff] [blame] | 104 | if [ "x$T" = "x" ] ; then |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 105 | T=`xcrun -sdk $SDKROOT -find ${prog}` |
Jim Grosbach | 11cb87c | 2010-03-17 21:25:13 +0000 | [diff] [blame] | 106 | fi |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 107 | echo '#!/bin/sh' > $P || exit 1 |
| 108 | echo 'exec '$T' -arch armv6 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1 |
| 109 | chmod a+x $P || exit 1 |
| 110 | done |
| 111 | |
| 112 | PATH=$DIR/bin:$PATH |
| 113 | # otherwise, try to use llvm-gcc if it's available |
Bill Wendling | 7fc4026 | 2009-11-03 22:50:10 +0000 | [diff] [blame] | 114 | elif [ $DARWIN_VERS -gt 9 ]; then |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 115 | # If the user has set CC or CXX, respect their wishes. If not, |
| 116 | # compile with LLVM-GCC/LLVM-G++ if available; if LLVM is not |
| 117 | # available, fall back to usual GCC/G++ default. |
Evan Cheng | 17fc13f | 2009-11-04 08:36:50 +0000 | [diff] [blame] | 118 | savedPATH=$PATH ; PATH="/Developer/usr/bin:$PATH" |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 119 | XTMPCC=$(which llvm-gcc) |
| 120 | if [ x$CC = x -a x$XTMPCC != x ] ; then export CC=$XTMPCC ; fi |
| 121 | XTMPCC=$(which llvm-g++) |
| 122 | if [ x$CXX = x -a x$XTMPCC != x ] ; then export CXX=$XTMPCC ; fi |
| 123 | PATH=$savedPATH |
| 124 | unset XTMPCC savedPATH |
| 125 | fi |
| 126 | |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 127 | if [ "$ARM_HOSTED_BUILD" = yes ]; then |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 128 | configure_opts="--enable-targets=arm --host=arm-apple-darwin10 \ |
| 129 | --target=arm-apple-darwin10 --build=i686-apple-darwin10" |
Bob Wilson | 273e48b | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 130 | elif [ "$IOS_SIM_BUILD" = yes ]; then |
| 131 | # Use a non-standard "darwin_sim" host triple to trigger a cross-build. |
| 132 | configure_opts="--enable-targets=x86 --host=i686-apple-darwin_sim \ |
| 133 | --build=i686-apple-darwin10" |
Jim Grosbach | 669327b | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 134 | else |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 135 | configure_opts="--enable-targets=arm,x86,powerpc,cbe" |
| 136 | fi |
| 137 | |
| 138 | if [ \! -f Makefile.config ]; then |
Bob Wilson | 29c8a78 | 2010-07-14 23:41:58 +0000 | [diff] [blame] | 139 | $SRC_DIR/configure --prefix=$DEST_DIR$DEST_ROOT $configure_opts \ |
Bob Wilson | 7d25521 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 140 | --enable-assertions=$LLVM_ASSERTIONS \ |
| 141 | --enable-optimized=$LLVM_OPTIMIZED \ |
| 142 | --disable-bindings \ |
| 143 | || exit 1 |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 144 | fi |
| 145 | |
Bill Wendling | e649778 | 2008-10-27 23:31:24 +0000 | [diff] [blame] | 146 | SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/[^.]*\.\([0-9]*\).*/\1/'` |
Bill Wendling | 499d7cf | 2008-07-11 22:42:10 +0000 | [diff] [blame] | 147 | |
| 148 | if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then |
| 149 | LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION` |
| 150 | RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'` |
| 151 | LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion |
| 152 | fi |
| 153 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 154 | if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then |
| 155 | LLVM_VERSION="$LLVM_SUBMIT_VERSION" |
| 156 | else |
| 157 | LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION" |
| 158 | fi |
| 159 | |
Bill Wendling | ff140fa | 2008-04-15 21:33:52 +0000 | [diff] [blame] | 160 | GCC_VER=`cc --version 2>/dev/null | sed 1q` |
| 161 | |
| 162 | if echo "$GCC_VER" | grep GCC > /dev/null; then |
| 163 | GCC_VER=`echo $GCC_VER | sed -e 's/.*(GCC) \([0-9.][0-9.]*\).*/\1/'` |
| 164 | MAJ_VER=`echo $GCC_VER | sed 's/\..*//'` |
| 165 | MIN_VER=`echo $GCC_VER | sed 's/[^.]*\.\([0-9]*\).*/\1/'` |
| 166 | fi |
| 167 | |
| 168 | JOBS_FLAG="" |
| 169 | |
| 170 | # Note: If compiling with GCC 4.0, don't pass the -jN flag. Building universal |
| 171 | # already has parallelism and we don't want to make the builders hit swap by |
| 172 | # firing off too many gccs at the same time. |
| 173 | if [ "x$MAJ_VER" != "x4" -o "x$MIN_VER" != "x0" ]; then |
| 174 | # Figure out how many make processes to run. |
| 175 | SYSCTL=`sysctl -n hw.activecpu` |
| 176 | |
| 177 | # hw.activecpu only available in 10.2.6 and later |
| 178 | if [ -z "$SYSCTL" ]; then |
| 179 | SYSCTL=`sysctl -n hw.ncpu` |
| 180 | fi |
| 181 | |
| 182 | # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. |
| 183 | # Builders can default to 2, since even if they are single processor, |
| 184 | # nothing else is running on the machine. |
| 185 | if [ -z "$SYSCTL" ]; then |
| 186 | SYSCTL=2 |
| 187 | fi |
| 188 | |
| 189 | JOBS_FLAG="-j $SYSCTL" |
| 190 | fi |
| 191 | |
Bob Wilson | d79f0ed | 2010-04-28 18:06:27 +0000 | [diff] [blame] | 192 | make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \ |
Bob Wilson | bf1075c | 2010-06-14 17:56:25 +0000 | [diff] [blame] | 193 | UNIVERSAL_SDK_PATH=$SDKROOT \ |
Daniel Dunbar | b562b47 | 2009-08-27 23:43:28 +0000 | [diff] [blame] | 194 | NO_RUNTIME_LIBS=1 \ |
Bill Wendling | 602d005 | 2010-03-23 22:15:33 +0000 | [diff] [blame] | 195 | DISABLE_EDIS=1 \ |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 196 | DEBUG_SYMBOLS=1 \ |
Nick Kledzik | 02e4e17 | 2008-02-29 19:32:13 +0000 | [diff] [blame] | 197 | LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \ |
| 198 | LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \ |
Bill Wendling | e649778 | 2008-10-27 23:31:24 +0000 | [diff] [blame] | 199 | CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'" \ |
| 200 | VERBOSE=1 |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 201 | |
Stuart Hastings | dc3d8cc | 2009-09-28 22:17:53 +0000 | [diff] [blame] | 202 | if [ $? != 0 ] ; then |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 203 | echo "error: LLVM 'make' failed!" |
| 204 | exit 1 |
| 205 | fi |
| 206 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 207 | ################################################################################ |
| 208 | # Construct the actual destination root, by copying stuff from $DIR/dst-* to |
| 209 | # $DEST_DIR, with occasional 'lipo' commands. |
| 210 | |
| 211 | cd $DEST_DIR || exit 1 |
| 212 | |
| 213 | # Clean out DEST_DIR in case -noclean was passed to buildit. |
| 214 | rm -rf * || exit 1 |
| 215 | |
| 216 | cd $DIR/obj-llvm || exit 1 |
| 217 | |
| 218 | # Install the tree into the destination directory. |
Bob Wilson | d79f0ed | 2010-04-28 18:06:27 +0000 | [diff] [blame] | 219 | make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \ |
Daniel Dunbar | b562b47 | 2009-08-27 23:43:28 +0000 | [diff] [blame] | 220 | NO_RUNTIME_LIBS=1 \ |
Bill Wendling | 602d005 | 2010-03-23 22:15:33 +0000 | [diff] [blame] | 221 | DISABLE_EDIS=1 \ |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 222 | DEBUG_SYMBOLS=1 \ |
Bill Wendling | e649778 | 2008-10-27 23:31:24 +0000 | [diff] [blame] | 223 | LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \ |
| 224 | LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \ |
Evan Cheng | b306e38 | 2009-04-20 22:16:40 +0000 | [diff] [blame] | 225 | OPTIMIZE_OPTION='-O3' VERBOSE=1 install |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 226 | |
| 227 | if ! test $? == 0 ; then |
| 228 | echo "error: LLVM 'make install' failed!" |
| 229 | exit 1 |
| 230 | fi |
| 231 | |
| 232 | # Install Version.h |
Bill Wendling | 6be413d | 2009-12-15 22:42:19 +0000 | [diff] [blame] | 233 | LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'` |
| 234 | if [ "x$LLVM_MINOR_VERSION" = "x" ]; then |
| 235 | LLVM_MINOR_VERSION=0 |
| 236 | fi |
| 237 | RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION` |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 238 | echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h |
| 239 | echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h |
| 240 | |
Bill Wendling | 28ecd49 | 2008-03-22 21:57:15 +0000 | [diff] [blame] | 241 | if [ "x$LLVM_DEBUG" != "x1" ]; then |
| 242 | # Strip local symbols from llvm libraries. |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 243 | # |
| 244 | # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or |
| 245 | # PPC objects! |
| 246 | strip -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa] |
Bill Wendling | eaa0ffb | 2009-02-09 04:01:11 +0000 | [diff] [blame] | 247 | for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 248 | strip -Sxl $f |
Bill Wendling | 51739ca | 2009-02-09 02:18:35 +0000 | [diff] [blame] | 249 | done |
Bill Wendling | 28ecd49 | 2008-03-22 21:57:15 +0000 | [diff] [blame] | 250 | fi |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 251 | |
Bill Wendling | ce5ac16 | 2008-11-20 00:11:57 +0000 | [diff] [blame] | 252 | # Copy over the tblgen utility. |
Bob Wilson | 29c8a78 | 2010-07-14 23:41:58 +0000 | [diff] [blame] | 253 | cp `find $DIR -name tblgen` $DEST_DIR$DEST_ROOT/bin |
Bill Wendling | ce5ac16 | 2008-11-20 00:11:57 +0000 | [diff] [blame] | 254 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 255 | # Remove .dir files |
| 256 | cd $DEST_DIR$DEST_ROOT |
Bill Wendling | 25c0805 | 2009-02-09 02:13:33 +0000 | [diff] [blame] | 257 | rm -f bin/.dir etc/llvm/.dir lib/.dir |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 258 | |
| 259 | # Remove PPC64 fat slices. |
| 260 | cd $DEST_DIR$DEST_ROOT/bin |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 261 | if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then |
Bill Wendling | 25c0805 | 2009-02-09 02:13:33 +0000 | [diff] [blame] | 262 | find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \ |
| 263 | -exec lipo -extract ppc -extract i386 {} -output {} \; |
Bill Wendling | 8d3f36f | 2008-06-23 22:08:30 +0000 | [diff] [blame] | 264 | elif [ $MACOSX_DEPLOYMENT_TARGET = "10.5" ]; then |
Bill Wendling | 25c0805 | 2009-02-09 02:13:33 +0000 | [diff] [blame] | 265 | find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \ |
| 266 | -exec lipo -extract ppc7400 -extract i386 {} -output {} \; |
Bill Wendling | 8d3f36f | 2008-06-23 22:08:30 +0000 | [diff] [blame] | 267 | else |
Bill Wendling | 25c0805 | 2009-02-09 02:13:33 +0000 | [diff] [blame] | 268 | find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \ |
| 269 | -exec lipo -extract ppc7400 -extract i386 -extract x86_64 {} -output {} \; |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 270 | fi |
| 271 | |
Bob Wilson | 04b2bb3 | 2010-10-22 23:04:17 +0000 | [diff] [blame] | 272 | # The Hello dylib is an example of how to build a pass. |
| 273 | # The BugpointPasses module is only used to test bugpoint. |
| 274 | # These unversioned dylibs cause verification failures, so do not install them. |
Bob Wilson | abf4b38 | 2010-10-22 22:10:57 +0000 | [diff] [blame] | 275 | rm $DEST_DIR$DEST_ROOT/lib/libLLVMHello.dylib |
Bob Wilson | 04b2bb3 | 2010-10-22 23:04:17 +0000 | [diff] [blame] | 276 | rm $DEST_DIR$DEST_ROOT/lib/libBugpointPasses.dylib |
Bill Wendling | 6818985 | 2009-04-10 18:48:38 +0000 | [diff] [blame] | 277 | |
Devang Patel | 4869456 | 2008-08-19 01:17:41 +0000 | [diff] [blame] | 278 | # Compress manpages |
| 279 | MDIR=$DEST_DIR$DEST_ROOT/share/man/man1 |
| 280 | gzip -f $MDIR/* |
| 281 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 282 | ################################################################################ |
| 283 | # Create SYM_DIR with information required for debugging. |
| 284 | |
Bill Wendling | 553d22c | 2007-11-12 23:55:19 +0000 | [diff] [blame] | 285 | # Figure out how many make processes to run. |
| 286 | SYSCTL=`sysctl -n hw.activecpu` |
| 287 | |
| 288 | # hw.activecpu only available in 10.2.6 and later |
| 289 | if [ -z "$SYSCTL" ]; then |
| 290 | SYSCTL=`sysctl -n hw.ncpu` |
| 291 | fi |
| 292 | |
| 293 | # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders |
| 294 | # can default to 2, since even if they are single processor, nothing else is |
| 295 | # running on the machine. |
| 296 | if [ -z "$SYSCTL" ]; then |
| 297 | SYSCTL=2 |
| 298 | fi |
| 299 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 300 | cd $SYM_DIR || exit 1 |
| 301 | |
| 302 | # Clean out SYM_DIR in case -noclean was passed to buildit. |
| 303 | rm -rf * || exit 1 |
| 304 | |
| 305 | # Generate .dSYM files |
Bill Wendling | 82934f2 | 2009-04-10 17:45:16 +0000 | [diff] [blame] | 306 | find $DEST_DIR -perm -0111 -type f \ |
| 307 | ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \ |
| 308 | -print | xargs -n 1 -P ${SYSCTL} dsymutil |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 309 | |
| 310 | # Save .dSYM files and .a archives |
| 311 | cd $DEST_DIR || exit 1 |
| 312 | find . \( -path \*.dSYM/\* -or -name \*.a \) -print \ |
| 313 | | cpio -pdml $SYM_DIR || exit 1 |
| 314 | |
| 315 | # Save source files. |
| 316 | mkdir $SYM_DIR/src || exit 1 |
| 317 | cd $DIR || exit 1 |
| 318 | find obj-* -name \*.\[chy\] -o -name \*.cpp -print \ |
| 319 | | cpio -pdml $SYM_DIR/src || exit 1 |
| 320 | |
| 321 | ################################################################################ |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 322 | # Install and strip libLTO.dylib |
| 323 | |
| 324 | cd $DEST_DIR$DEST_ROOT |
| 325 | if [ "$INSTALL_LIBLTO" = "yes" ]; then |
Bob Wilson | 29c8a78 | 2010-07-14 23:41:58 +0000 | [diff] [blame] | 326 | DT_HOME="$DEST_DIR/Developer/usr" |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 327 | mkdir -p $DT_HOME/lib |
| 328 | mv lib/libLTO.dylib $DT_HOME/lib/libLTO.dylib |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 329 | |
Bob Wilson | 4332792 | 2010-07-19 21:33:07 +0000 | [diff] [blame] | 330 | # Save a copy of the unstripped dylib |
| 331 | mkdir -p $SYM_DIR/Developer/usr/lib |
| 332 | cp $DT_HOME/lib/libLTO.dylib $SYM_DIR/Developer/usr/lib/libLTO.dylib |
| 333 | |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 334 | # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or |
| 335 | # PPC objects! |
| 336 | strip -arch all -Sl $DT_HOME/lib/libLTO.dylib |
Bob Wilson | 4332792 | 2010-07-19 21:33:07 +0000 | [diff] [blame] | 337 | |
| 338 | if [ "x$DISABLE_USR_LINKS" == "x" ]; then |
| 339 | # Add a symlink in /usr/lib for B&I. |
| 340 | mkdir -p $DEST_DIR/usr/lib/ |
| 341 | (cd $DEST_DIR/usr/lib && \ |
| 342 | ln -s ../../Developer/usr/lib/libLTO.dylib ./libLTO.dylib) |
| 343 | fi |
Bob Wilson | 29c8a78 | 2010-07-14 23:41:58 +0000 | [diff] [blame] | 344 | else |
| 345 | rm -f lib/libLTO.dylib |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 346 | fi |
| 347 | rm -f lib/libLTO.a lib/libLTO.la |
| 348 | |
| 349 | ################################################################################ |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 350 | # Remove debugging information from DEST_DIR. |
| 351 | |
Bill Wendling | e45da4f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 352 | cd $DIR || exit 1 |
Bill Wendling | 0a1bd2a | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 353 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 354 | find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1 |
| 355 | find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1 |
Bill Wendling | 0a1bd2a | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 356 | |
| 357 | # Strip debugging information from files |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 358 | # |
| 359 | # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or |
| 360 | # PPC objects! |
Bill Wendling | 0a1bd2a | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 361 | find $DEST_DIR -perm -0111 -type f \ |
| 362 | ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \ |
Bill Wendling | 0a7e18c | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 363 | -print | xargs -n 1 -P ${SYSCTL} strip -arch all -Sl |
Bill Wendling | 0a1bd2a | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 364 | |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 365 | chgrp -h -R wheel $DEST_DIR |
| 366 | chgrp -R wheel $DEST_DIR |
| 367 | |
| 368 | ################################################################################ |
Bob Wilson | 4bb327d | 2010-07-14 23:49:18 +0000 | [diff] [blame] | 369 | # Remove the docs directory |
Bill Wendling | 1f85129 | 2008-05-06 08:33:07 +0000 | [diff] [blame] | 370 | |
Bob Wilson | 4bb327d | 2010-07-14 23:49:18 +0000 | [diff] [blame] | 371 | rm -rf $DEST_DIR$DEST_ROOT/docs |
Bill Wendling | 1f85129 | 2008-05-06 08:33:07 +0000 | [diff] [blame] | 372 | |
| 373 | ################################################################################ |
Bill Wendling | 6902e84 | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 374 | # w00t! Done! |
| 375 | |
| 376 | exit 0 |