Bill Wendling | 71df1dd | 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 | 71df1dd | 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 | f48ae28 | 2007-11-12 23:53:43 +0000 | [diff] [blame] | 12 | HOSTS="$1" |
Bill Wendling | 71df1dd | 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 | a2dbebc | 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 | f48ae28 | 2007-11-12 23:53:43 +0000 | [diff] [blame] | 18 | TARGETS="$2" |
Bill Wendling | 71df1dd | 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 | ebde4b3 | 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 | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 38 | # enabled in the LLVM libs/tools. |
Devang Patel | ebde4b3 | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 39 | LLVM_ASSERTIONS="$7" |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 40 | |
Devang Patel | ebde4b3 | 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 | 26c3303 | 2008-01-18 21:01:00 +0000 | [diff] [blame] | 42 | # build. |
Devang Patel | ebde4b3 | 2008-01-30 18:30:11 +0000 | [diff] [blame] | 43 | LLVM_OPTIMIZED="$8" |
| 44 | |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 45 | # A yes/no parameter that controls whether to cross-build for an ARM host. |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 46 | ARM_HOSTED_BUILD="$9" |
Bob Wilson | c892b6d | 2010-04-28 21:08:01 +0000 | [diff] [blame] | 47 | |
Bob Wilson | ebcadde | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 48 | # A yes/no parameter that controls whether to cross-build for the iOS simulator |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 49 | IOS_SIM_BUILD="${10}" |
Bob Wilson | ebcadde | 2010-07-20 20:44:02 +0000 | [diff] [blame] | 50 | |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 51 | # The version number of the submission, e.g. 1007. |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 52 | LLVM_SUBMIT_VERSION="${11}" |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 53 | |
| 54 | # The subversion number of the submission, e.g. 03. |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 55 | LLVM_SUBMIT_SUBVERSION="${12}" |
Evan Cheng | 26c3303 | 2008-01-18 21:01:00 +0000 | [diff] [blame] | 56 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 57 | # 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. |
| 60 | DIR=`pwd` |
| 61 | |
| 62 | DARWIN_VERS=`uname -r | sed 's/\..*//'` |
| 63 | echo DARWIN_VERS = $DARWIN_VERS |
| 64 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 65 | ################################################################################ |
| 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. |
| 71 | SRC_DIR=$DIR/src |
| 72 | rm -rf $SRC_DIR || exit 1 |
| 73 | mkdir $SRC_DIR || exit 1 |
| 74 | ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1 |
Stuart Hastings | 8de31d0 | 2009-10-22 17:22:37 +0000 | [diff] [blame] | 75 | # We can't use the top-level Makefile as-is. Remove the soft link: |
| 76 | rm $SRC_DIR/Makefile || exit 1 |
| 77 | # Now create our own by editing the top-level Makefile, deleting every line marked "Apple-style": |
| 78 | sed -e '/[Aa]pple-style/d' -e '/include.*GNUmakefile/d' $ORIG_SRC_DIR/Makefile > $SRC_DIR/Makefile || exit 1 |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 79 | |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 80 | SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/.*\.\([0-9]*\).*/\1/'` |
| 81 | if [ "x$SUBVERSION" != "x$RC_ProjectSourceVersion" ]; then |
| 82 | LLVM_SUBMIT_SUBVERSION=`printf "%02d" $SUBVERSION` |
| 83 | RC_ProjectSourceVersion=`echo $RC_ProjectSourceVersion | sed -e 's/\..*//'` |
| 84 | LLVM_SUBMIT_VERSION=$RC_ProjectSourceVersion |
| 85 | fi |
| 86 | if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then |
| 87 | LLVM_VERSION="$LLVM_SUBMIT_VERSION" |
| 88 | else |
| 89 | LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION" |
| 90 | fi |
| 91 | LLVM_VERSION_INFO="'\" Apple Build #$LLVM_VERSION\"'" |
| 92 | |
| 93 | # Figure out how many make processes to run. |
| 94 | SYSCTL=`sysctl -n hw.activecpu` |
| 95 | # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. |
| 96 | # Builders can default to 2, since even if they are single processor, |
| 97 | # nothing else is running on the machine. |
| 98 | if [ -z "$SYSCTL" ]; then |
| 99 | SYSCTL=2 |
| 100 | fi |
| 101 | JOBS_FLAG="-j $SYSCTL" |
| 102 | |
| 103 | COMMON_CONFIGURE_OPTS="\ |
| 104 | --prefix=$DEST_DIR$DEST_ROOT \ |
| 105 | --enable-assertions=$LLVM_ASSERTIONS \ |
| 106 | --enable-optimized=$LLVM_OPTIMIZED \ |
| 107 | --disable-bindings" |
| 108 | |
| 109 | COMMON_MAKEFLAGS=$JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" UNIVERSAL_SDK_PATH=$SDKROOT NO_RUNTIME_LIBS=1 DISABLE_EDIS=1 REQUIRES_RTTI=1 DEBUG_SYMBOLS=1 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION CXXFLAGS=-DLLVM_VERSION_INFO="$LLVM_VERSION_INFO" VERBOSE=1 |
| 110 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 111 | # Build the LLVM tree universal. |
| 112 | mkdir -p $DIR/obj-llvm || exit 1 |
| 113 | cd $DIR/obj-llvm || exit 1 |
| 114 | |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 115 | if [ "$ARM_HOSTED_BUILD" = yes ]; then |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 116 | # The cross-tools' build process expects to find an existing cross toolchain |
| 117 | # under names like 'arm-apple-darwin$DARWIN_VERS-as'; so make them. |
| 118 | rm -rf $DIR/bin || exit 1 |
| 119 | mkdir $DIR/bin || exit 1 |
| 120 | for prog in ar nm ranlib strip lipo ld as ; do |
| 121 | P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog} |
| 122 | T=`xcrun -sdk $SDKROOT -find ${prog}` |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 123 | ln -s $T $DIR/bin/$prog |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 124 | echo '#!/bin/sh' > $P || exit 1 |
| 125 | echo 'exec '$T' "$@"' >> $P || exit 1 |
| 126 | chmod a+x $P || exit 1 |
| 127 | done |
Eric Christopher | 2266c00 | 2011-09-16 20:36:22 +0000 | [diff] [blame] | 128 | # Set up the links for clang. |
| 129 | for prog in clang clang++ ; do |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 130 | P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog} |
Eric Christopher | 2266c00 | 2011-09-16 20:36:22 +0000 | [diff] [blame] | 131 | T=`xcrun -sdk $SDKROOT -find ${prog}` |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 132 | ln -s $T $DIR/bin/$prog |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 133 | echo '#!/bin/sh' > $P || exit 1 |
Bill Wendling | f14bb1e | 2010-12-23 00:49:18 +0000 | [diff] [blame] | 134 | echo 'exec '$T' -arch armv7 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1 |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 135 | chmod a+x $P || exit 1 |
| 136 | done |
| 137 | |
| 138 | PATH=$DIR/bin:$PATH |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 139 | |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 140 | unset SDKROOT && \ |
| 141 | $SRC_DIR/configure $COMMON_CONFIGURE_OPTS \ |
| 142 | --enable-targets=arm \ |
| 143 | --host=arm-apple-darwin10 \ |
| 144 | --target=arm-apple-darwin10 \ |
| 145 | --build=i686-apple-darwin10 \ |
| 146 | --program-prefix="" \ |
| 147 | || exit 1 |
| 148 | |
| 149 | make $COMMON_MAKEFLAGS SDKROOT= |
| 150 | if [ $? != 0 ] ; then |
| 151 | echo "error: LLVM 'make' failed!" |
| 152 | exit 1 |
| 153 | fi |
| 154 | |
Jim Grosbach | dc916f1 | 2009-10-30 20:54:59 +0000 | [diff] [blame] | 155 | else |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 156 | # not $ARM_HOSTED_BUILD |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 157 | |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 158 | if [ "$IOS_SIM_BUILD" = yes ]; then |
| 159 | # Use a non-standard "darwin_sim" host triple to trigger a cross-build. |
| 160 | configure_opts="--enable-targets=x86 --host=i686-apple-darwin_sim \ |
| 161 | --build=i686-apple-darwin10" |
| 162 | else |
| 163 | configure_opts="--enable-targets=arm,x86" |
| 164 | fi |
| 165 | |
Bob Wilson | 8bbd98d | 2012-04-03 21:50:26 +0000 | [diff] [blame] | 166 | if [ $SDKROOT ]; then |
| 167 | CPPFLAGS="$CPPFLAGS -isysroot $SDKROOT" |
| 168 | fi |
Bob Wilson | 1864146 | 2012-04-05 00:35:55 +0000 | [diff] [blame] | 169 | for host in $HOSTS; do :; done |
| 170 | CPPFLAGS="$CPPFLAGS -arch $host" |
Bob Wilson | 8bbd98d | 2012-04-03 21:50:26 +0000 | [diff] [blame] | 171 | |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 172 | $SRC_DIR/configure $COMMON_CONFIGURE_OPTS $configure_opts \ |
| 173 | --program-prefix="" \ |
Bob Wilson | 8bbd98d | 2012-04-03 21:50:26 +0000 | [diff] [blame] | 174 | CPPFLAGS="$CPPFLAGS" \ |
Bob Wilson | 0d54560 | 2010-05-05 22:22:40 +0000 | [diff] [blame] | 175 | || exit 1 |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 176 | |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 177 | make $COMMON_MAKEFLAGS |
| 178 | if [ $? != 0 ] ; then |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 179 | echo "error: LLVM 'make' failed!" |
| 180 | exit 1 |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 181 | fi |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 182 | fi |
| 183 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 184 | ################################################################################ |
| 185 | # Construct the actual destination root, by copying stuff from $DIR/dst-* to |
| 186 | # $DEST_DIR, with occasional 'lipo' commands. |
| 187 | |
| 188 | cd $DEST_DIR || exit 1 |
| 189 | |
| 190 | # Clean out DEST_DIR in case -noclean was passed to buildit. |
| 191 | rm -rf * || exit 1 |
| 192 | |
| 193 | cd $DIR/obj-llvm || exit 1 |
| 194 | |
| 195 | # Install the tree into the destination directory. |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 196 | make $COMMON_MAKEFLAGS install |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 197 | if ! test $? == 0 ; then |
| 198 | echo "error: LLVM 'make install' failed!" |
| 199 | exit 1 |
| 200 | fi |
| 201 | |
| 202 | # Install Version.h |
Bill Wendling | 098a38b | 2009-12-15 22:42:19 +0000 | [diff] [blame] | 203 | LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'` |
| 204 | if [ "x$LLVM_MINOR_VERSION" = "x" ]; then |
| 205 | LLVM_MINOR_VERSION=0 |
| 206 | fi |
| 207 | RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION` |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 208 | echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h |
| 209 | echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h |
| 210 | |
Bob Wilson | 7f6f124 | 2011-10-03 18:48:16 +0000 | [diff] [blame] | 211 | # Find the right version of strip to use. |
| 212 | STRIP=strip |
| 213 | if [ -n "$SDKROOT" ]; then |
| 214 | STRIP=`xcrun -sdk $SDKROOT -find strip` |
| 215 | fi |
| 216 | |
Bill Wendling | da2586f | 2008-03-22 21:57:15 +0000 | [diff] [blame] | 217 | if [ "x$LLVM_DEBUG" != "x1" ]; then |
| 218 | # Strip local symbols from llvm libraries. |
Bill Wendling | 7839c49 | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 219 | # |
| 220 | # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or |
| 221 | # PPC objects! |
Bob Wilson | 7f6f124 | 2011-10-03 18:48:16 +0000 | [diff] [blame] | 222 | $STRIP -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa] |
Bill Wendling | 194d091 | 2009-02-09 04:01:11 +0000 | [diff] [blame] | 223 | for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do |
Bob Wilson | 7f6f124 | 2011-10-03 18:48:16 +0000 | [diff] [blame] | 224 | $STRIP -Sxl $f |
Bill Wendling | f2116d7 | 2009-02-09 02:18:35 +0000 | [diff] [blame] | 225 | done |
Bill Wendling | da2586f | 2008-03-22 21:57:15 +0000 | [diff] [blame] | 226 | fi |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 227 | |
| 228 | # Remove .dir files |
| 229 | cd $DEST_DIR$DEST_ROOT |
Bill Wendling | 783b851 | 2009-02-09 02:13:33 +0000 | [diff] [blame] | 230 | rm -f bin/.dir etc/llvm/.dir lib/.dir |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 231 | |
Bob Wilson | dbb7715 | 2010-10-22 23:04:17 +0000 | [diff] [blame] | 232 | # The Hello dylib is an example of how to build a pass. |
| 233 | # The BugpointPasses module is only used to test bugpoint. |
| 234 | # These unversioned dylibs cause verification failures, so do not install them. |
Bob Wilson | d2e7b05 | 2011-02-26 00:22:17 +0000 | [diff] [blame] | 235 | # (The wildcards are used to match a "lib" prefix if it is present.) |
| 236 | rm $DEST_DIR$DEST_ROOT/lib/*LLVMHello.dylib |
| 237 | rm $DEST_DIR$DEST_ROOT/lib/*BugpointPasses.dylib |
Bill Wendling | e8b48b4 | 2009-04-10 18:48:38 +0000 | [diff] [blame] | 238 | |
Devang Patel | 3978c75 | 2008-08-19 01:17:41 +0000 | [diff] [blame] | 239 | # Compress manpages |
| 240 | MDIR=$DEST_DIR$DEST_ROOT/share/man/man1 |
| 241 | gzip -f $MDIR/* |
| 242 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 243 | ################################################################################ |
| 244 | # Create SYM_DIR with information required for debugging. |
| 245 | |
Bill Wendling | c8f2f68 | 2007-11-12 23:55:19 +0000 | [diff] [blame] | 246 | # Figure out how many make processes to run. |
| 247 | SYSCTL=`sysctl -n hw.activecpu` |
| 248 | |
| 249 | # hw.activecpu only available in 10.2.6 and later |
| 250 | if [ -z "$SYSCTL" ]; then |
| 251 | SYSCTL=`sysctl -n hw.ncpu` |
| 252 | fi |
| 253 | |
| 254 | # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders |
| 255 | # can default to 2, since even if they are single processor, nothing else is |
| 256 | # running on the machine. |
| 257 | if [ -z "$SYSCTL" ]; then |
| 258 | SYSCTL=2 |
| 259 | fi |
| 260 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 261 | cd $SYM_DIR || exit 1 |
| 262 | |
| 263 | # Clean out SYM_DIR in case -noclean was passed to buildit. |
| 264 | rm -rf * || exit 1 |
| 265 | |
| 266 | # Generate .dSYM files |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 267 | DSYMUTIL=`xcrun -find dsymutil` |
Bill Wendling | 591854d | 2009-04-10 17:45:16 +0000 | [diff] [blame] | 268 | find $DEST_DIR -perm -0111 -type f \ |
| 269 | ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \ |
Bob Wilson | 81f6bab | 2013-01-10 22:59:51 +0000 | [diff] [blame] | 270 | -print | xargs -n 1 -P ${SYSCTL} ${DSYMUTIL} |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 271 | |
| 272 | # Save .dSYM files and .a archives |
| 273 | cd $DEST_DIR || exit 1 |
| 274 | find . \( -path \*.dSYM/\* -or -name \*.a \) -print \ |
| 275 | | cpio -pdml $SYM_DIR || exit 1 |
| 276 | |
| 277 | # Save source files. |
| 278 | mkdir $SYM_DIR/src || exit 1 |
| 279 | cd $DIR || exit 1 |
| 280 | find obj-* -name \*.\[chy\] -o -name \*.cpp -print \ |
| 281 | | cpio -pdml $SYM_DIR/src || exit 1 |
| 282 | |
| 283 | ################################################################################ |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 284 | # Remove libLTO.dylib and lto.h. Those are installed by clang. |
Bill Wendling | 8d87a1f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 285 | |
| 286 | cd $DEST_DIR$DEST_ROOT |
Bob Wilson | 9d12ffc | 2012-04-03 23:13:26 +0000 | [diff] [blame] | 287 | rm -f lib/libLTO.dylib |
Bill Wendling | 8d87a1f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 288 | rm -f lib/libLTO.a lib/libLTO.la |
Stuart Hastings | e167360 | 2011-02-25 20:42:39 +0000 | [diff] [blame] | 289 | find $DEST_DIR$DEST_ROOT -name lto.h -delete |
| 290 | |
Bill Wendling | 8d87a1f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 291 | ################################################################################ |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 292 | # Remove debugging information from DEST_DIR. |
| 293 | |
Bill Wendling | 8d87a1f | 2010-06-22 23:44:15 +0000 | [diff] [blame] | 294 | cd $DIR || exit 1 |
Bill Wendling | 9a925be | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 295 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 296 | find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1 |
| 297 | find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1 |
Bill Wendling | 9a925be | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 298 | |
| 299 | # Strip debugging information from files |
Bill Wendling | 7839c49 | 2010-06-29 22:17:37 +0000 | [diff] [blame] | 300 | # |
| 301 | # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or |
| 302 | # PPC objects! |
Bill Wendling | 9a925be | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 303 | find $DEST_DIR -perm -0111 -type f \ |
| 304 | ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \ |
Bob Wilson | 7f6f124 | 2011-10-03 18:48:16 +0000 | [diff] [blame] | 305 | -print | xargs -n 1 -P ${SYSCTL} $STRIP -arch all -Sl |
Bill Wendling | 9a925be | 2010-06-29 01:08:57 +0000 | [diff] [blame] | 306 | |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 307 | chgrp -h -R wheel $DEST_DIR |
| 308 | chgrp -R wheel $DEST_DIR |
| 309 | |
| 310 | ################################################################################ |
Bob Wilson | 5d2c121 | 2010-07-14 23:49:18 +0000 | [diff] [blame] | 311 | # Remove the docs directory |
Bill Wendling | 557ecd8 | 2008-05-06 08:33:07 +0000 | [diff] [blame] | 312 | |
Bob Wilson | 5d2c121 | 2010-07-14 23:49:18 +0000 | [diff] [blame] | 313 | rm -rf $DEST_DIR$DEST_ROOT/docs |
Bill Wendling | 557ecd8 | 2008-05-06 08:33:07 +0000 | [diff] [blame] | 314 | |
| 315 | ################################################################################ |
Bill Wendling | 71df1dd | 2007-11-09 06:59:33 +0000 | [diff] [blame] | 316 | # w00t! Done! |
| 317 | |
| 318 | exit 0 |