blob: 3aa55884a987842234ecb452a2dfa79f772dfbe0 [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 Wilsonb8485d62010-04-28 21:08:01 +000045# The ninth parameter is a yes/no that indicates whether libLTO.dylib
46# should be installed.
47INSTALL_LIBLTO="$9"
Devang Patelc60141b2008-01-30 18:30:11 +000048
Bob Wilson7d255212010-05-05 22:22:40 +000049# A yes/no parameter that controls whether to cross-build for an ARM host.
50ARM_HOSTED_BUILD="${10}"
Bob Wilsonb8485d62010-04-28 21:08:01 +000051
Bob Wilson273e48b2010-07-20 20:44:02 +000052# A yes/no parameter that controls whether to cross-build for the iOS simulator
53IOS_SIM_BUILD="${11}"
54
Bob Wilson7d255212010-05-05 22:22:40 +000055# The version number of the submission, e.g. 1007.
Bob Wilson273e48b2010-07-20 20:44:02 +000056LLVM_SUBMIT_VERSION="${12}"
Bob Wilson7d255212010-05-05 22:22:40 +000057
58# The subversion number of the submission, e.g. 03.
Bob Wilson273e48b2010-07-20 20:44:02 +000059LLVM_SUBMIT_SUBVERSION="${13}"
Evan Chengb4eae992008-01-18 21:01:00 +000060
Bill Wendling6902e842007-11-09 06:59:33 +000061# 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.
64DIR=`pwd`
65
66DARWIN_VERS=`uname -r | sed 's/\..*//'`
67echo DARWIN_VERS = $DARWIN_VERS
68
Bill Wendling6902e842007-11-09 06:59:33 +000069################################################################################
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.
75SRC_DIR=$DIR/src
76rm -rf $SRC_DIR || exit 1
77mkdir $SRC_DIR || exit 1
78ln -s $ORIG_SRC_DIR/* $SRC_DIR/ || exit 1
Stuart Hastings4a53e1e2009-10-22 17:22:37 +000079# We can't use the top-level Makefile as-is. Remove the soft link:
80rm $SRC_DIR/Makefile || exit 1
81# Now create our own by editing the top-level Makefile, deleting every line marked "Apple-style":
82sed -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 +000083
84# Build the LLVM tree universal.
85mkdir -p $DIR/obj-llvm || exit 1
86cd $DIR/obj-llvm || exit 1
87
Bob Wilson7d255212010-05-05 22:22:40 +000088if [ "$ARM_HOSTED_BUILD" = yes ]; then
Jim Grosbach669327b2009-10-30 20:54:59 +000089 # 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 Wilson02dee5b2010-07-22 23:33:00 +0000103 T=`xcrun -sdk $SDKROOT -find llvm-${prog}`
Jim Grosbach11cb87c2010-03-17 21:25:13 +0000104 if [ "x$T" = "x" ] ; then
Jim Grosbach669327b2009-10-30 20:54:59 +0000105 T=`xcrun -sdk $SDKROOT -find ${prog}`
Jim Grosbach11cb87c2010-03-17 21:25:13 +0000106 fi
Jim Grosbach669327b2009-10-30 20:54:59 +0000107 echo '#!/bin/sh' > $P || exit 1
Bill Wendling65e43a22010-12-23 00:49:18 +0000108 echo 'exec '$T' -arch armv7 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
Jim Grosbach669327b2009-10-30 20:54:59 +0000109 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 Wendling7fc40262009-11-03 22:50:10 +0000114elif [ $DARWIN_VERS -gt 9 ]; then
Jim Grosbach669327b2009-10-30 20:54:59 +0000115 # 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 Cheng17fc13f2009-11-04 08:36:50 +0000118 savedPATH=$PATH ; PATH="/Developer/usr/bin:$PATH"
Jim Grosbach669327b2009-10-30 20:54:59 +0000119 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
125fi
126
Bob Wilson7d255212010-05-05 22:22:40 +0000127if [ "$ARM_HOSTED_BUILD" = yes ]; then
Bob Wilson7d255212010-05-05 22:22:40 +0000128 configure_opts="--enable-targets=arm --host=arm-apple-darwin10 \
129 --target=arm-apple-darwin10 --build=i686-apple-darwin10"
Bob Wilson273e48b2010-07-20 20:44:02 +0000130elif [ "$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 Grosbach669327b2009-10-30 20:54:59 +0000134else
Bob Wilson7d255212010-05-05 22:22:40 +0000135 configure_opts="--enable-targets=arm,x86,powerpc,cbe"
136fi
137
138if [ \! -f Makefile.config ]; then
Bob Wilson29c8a782010-07-14 23:41:58 +0000139 $SRC_DIR/configure --prefix=$DEST_DIR$DEST_ROOT $configure_opts \
Bob Wilson7d255212010-05-05 22:22:40 +0000140 --enable-assertions=$LLVM_ASSERTIONS \
141 --enable-optimized=$LLVM_OPTIMIZED \
142 --disable-bindings \
143 || exit 1
Bill Wendling6902e842007-11-09 06:59:33 +0000144fi
145
Bill Wendlinge6497782008-10-27 23:31:24 +0000146SUBVERSION=`echo $RC_ProjectSourceVersion | sed -e 's/[^.]*\.\([0-9]*\).*/\1/'`
Bill Wendling499d7cf2008-07-11 22:42:10 +0000147
148if [ "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
152fi
153
Bill Wendling6902e842007-11-09 06:59:33 +0000154if [ "x$LLVM_SUBMIT_SUBVERSION" = "x00" -o "x$LLVM_SUBMIT_SUBVERSION" = "x0" ]; then
155 LLVM_VERSION="$LLVM_SUBMIT_VERSION"
156else
157 LLVM_VERSION="$LLVM_SUBMIT_VERSION-$LLVM_SUBMIT_SUBVERSION"
158fi
159
Bill Wendlingff140fa2008-04-15 21:33:52 +0000160GCC_VER=`cc --version 2>/dev/null | sed 1q`
161
162if 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/'`
166fi
167
168JOBS_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.
173if [ "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
Bill Wendlingff140fa2008-04-15 21:33:52 +0000177 # sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot.
178 # Builders can default to 2, since even if they are single processor,
179 # nothing else is running on the machine.
180 if [ -z "$SYSCTL" ]; then
181 SYSCTL=2
182 fi
183
184 JOBS_FLAG="-j $SYSCTL"
185fi
186
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000187make $JOBS_FLAG $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Bob Wilsonbf1075c2010-06-14 17:56:25 +0000188 UNIVERSAL_SDK_PATH=$SDKROOT \
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 \
Nick Kledzik02e4e172008-02-29 19:32:13 +0000192 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
193 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Bill Wendlinge6497782008-10-27 23:31:24 +0000194 CXXFLAGS="-DLLVM_VERSION_INFO='\" Apple Build #$LLVM_VERSION\"'" \
195 VERBOSE=1
Bill Wendling6902e842007-11-09 06:59:33 +0000196
Stuart Hastingsdc3d8cc2009-09-28 22:17:53 +0000197if [ $? != 0 ] ; then
Bill Wendling6902e842007-11-09 06:59:33 +0000198 echo "error: LLVM 'make' failed!"
199 exit 1
200fi
201
Bill Wendling6902e842007-11-09 06:59:33 +0000202################################################################################
203# Construct the actual destination root, by copying stuff from $DIR/dst-* to
204# $DEST_DIR, with occasional 'lipo' commands.
205
206cd $DEST_DIR || exit 1
207
208# Clean out DEST_DIR in case -noclean was passed to buildit.
209rm -rf * || exit 1
210
211cd $DIR/obj-llvm || exit 1
212
213# Install the tree into the destination directory.
Bob Wilsond79f0ed2010-04-28 18:06:27 +0000214make $LOCAL_MAKEFLAGS $OPTIMIZE_OPTS UNIVERSAL=1 UNIVERSAL_ARCH="$HOSTS" \
Daniel Dunbarb562b472009-08-27 23:43:28 +0000215 NO_RUNTIME_LIBS=1 \
Bill Wendling602d0052010-03-23 22:15:33 +0000216 DISABLE_EDIS=1 \
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000217 DEBUG_SYMBOLS=1 \
Bill Wendlinge6497782008-10-27 23:31:24 +0000218 LLVM_SUBMIT_VERSION=$LLVM_SUBMIT_VERSION \
219 LLVM_SUBMIT_SUBVERSION=$LLVM_SUBMIT_SUBVERSION \
Evan Chengb306e382009-04-20 22:16:40 +0000220 OPTIMIZE_OPTION='-O3' VERBOSE=1 install
Bill Wendling6902e842007-11-09 06:59:33 +0000221
222if ! test $? == 0 ; then
223 echo "error: LLVM 'make install' failed!"
224 exit 1
225fi
226
227# Install Version.h
Bill Wendling6be413d2009-12-15 22:42:19 +0000228LLVM_MINOR_VERSION=`echo $LLVM_SUBMIT_SUBVERSION | sed -e 's,0*\([1-9][0-9]*\),\1,'`
229if [ "x$LLVM_MINOR_VERSION" = "x" ]; then
230 LLVM_MINOR_VERSION=0
231fi
232RC_ProjectSourceSubversion=`printf "%d" $LLVM_MINOR_VERSION`
Bill Wendling6902e842007-11-09 06:59:33 +0000233echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
234echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
235
Bill Wendling28ecd492008-03-22 21:57:15 +0000236if [ "x$LLVM_DEBUG" != "x1" ]; then
237 # Strip local symbols from llvm libraries.
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000238 #
239 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
240 # PPC objects!
241 strip -Sl $DEST_DIR$DEST_ROOT/lib/*.[oa]
Bill Wendlingeaa0ffb2009-02-09 04:01:11 +0000242 for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000243 strip -Sxl $f
Bill Wendling51739ca2009-02-09 02:18:35 +0000244 done
Bill Wendling28ecd492008-03-22 21:57:15 +0000245fi
Bill Wendling6902e842007-11-09 06:59:33 +0000246
Bill Wendlingce5ac162008-11-20 00:11:57 +0000247# Copy over the tblgen utility.
Bob Wilson29c8a782010-07-14 23:41:58 +0000248cp `find $DIR -name tblgen` $DEST_DIR$DEST_ROOT/bin
Bill Wendlingce5ac162008-11-20 00:11:57 +0000249
Bill Wendling6902e842007-11-09 06:59:33 +0000250# Remove .dir files
251cd $DEST_DIR$DEST_ROOT
Bill Wendling25c08052009-02-09 02:13:33 +0000252rm -f bin/.dir etc/llvm/.dir lib/.dir
Bill Wendling6902e842007-11-09 06:59:33 +0000253
254# Remove PPC64 fat slices.
255cd $DEST_DIR$DEST_ROOT/bin
Bill Wendling6902e842007-11-09 06:59:33 +0000256if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then
Bill Wendling25c08052009-02-09 02:13:33 +0000257 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
258 -exec lipo -extract ppc -extract i386 {} -output {} \;
Bill Wendling8d3f36f2008-06-23 22:08:30 +0000259elif [ $MACOSX_DEPLOYMENT_TARGET = "10.5" ]; then
Bill Wendling25c08052009-02-09 02:13:33 +0000260 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
261 -exec lipo -extract ppc7400 -extract i386 {} -output {} \;
Bill Wendling8d3f36f2008-06-23 22:08:30 +0000262else
Bill Wendling25c08052009-02-09 02:13:33 +0000263 find . -perm 755 -type f \! \( -name '*gccas' -o -name '*gccld' -o -name llvm-config \) \
264 -exec lipo -extract ppc7400 -extract i386 -extract x86_64 {} -output {} \;
Bill Wendling6902e842007-11-09 06:59:33 +0000265fi
266
Bob Wilson04b2bb32010-10-22 23:04:17 +0000267# The Hello dylib is an example of how to build a pass.
268# The BugpointPasses module is only used to test bugpoint.
269# These unversioned dylibs cause verification failures, so do not install them.
Bob Wilsonabf4b382010-10-22 22:10:57 +0000270rm $DEST_DIR$DEST_ROOT/lib/libLLVMHello.dylib
Bob Wilson04b2bb32010-10-22 23:04:17 +0000271rm $DEST_DIR$DEST_ROOT/lib/libBugpointPasses.dylib
Bill Wendling68189852009-04-10 18:48:38 +0000272
Devang Patel48694562008-08-19 01:17:41 +0000273# Compress manpages
274MDIR=$DEST_DIR$DEST_ROOT/share/man/man1
275gzip -f $MDIR/*
276
Bill Wendling6902e842007-11-09 06:59:33 +0000277################################################################################
278# Create SYM_DIR with information required for debugging.
279
Bill Wendling553d22c2007-11-12 23:55:19 +0000280# Figure out how many make processes to run.
281SYSCTL=`sysctl -n hw.activecpu`
282
283# hw.activecpu only available in 10.2.6 and later
284if [ -z "$SYSCTL" ]; then
285 SYSCTL=`sysctl -n hw.ncpu`
286fi
287
288# sysctl -n hw.* does not work when invoked via B&I chroot /BuildRoot. Builders
289# can default to 2, since even if they are single processor, nothing else is
290# running on the machine.
291if [ -z "$SYSCTL" ]; then
292 SYSCTL=2
293fi
294
Bill Wendling6902e842007-11-09 06:59:33 +0000295cd $SYM_DIR || exit 1
296
297# Clean out SYM_DIR in case -noclean was passed to buildit.
298rm -rf * || exit 1
299
300# Generate .dSYM files
Bill Wendling82934f22009-04-10 17:45:16 +0000301find $DEST_DIR -perm -0111 -type f \
302 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \
303 -print | xargs -n 1 -P ${SYSCTL} dsymutil
Bill Wendling6902e842007-11-09 06:59:33 +0000304
305# Save .dSYM files and .a archives
306cd $DEST_DIR || exit 1
307find . \( -path \*.dSYM/\* -or -name \*.a \) -print \
308 | cpio -pdml $SYM_DIR || exit 1
309
310# Save source files.
311mkdir $SYM_DIR/src || exit 1
312cd $DIR || exit 1
313find obj-* -name \*.\[chy\] -o -name \*.cpp -print \
314 | cpio -pdml $SYM_DIR/src || exit 1
315
316################################################################################
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000317# Install and strip libLTO.dylib
318
319cd $DEST_DIR$DEST_ROOT
320if [ "$INSTALL_LIBLTO" = "yes" ]; then
Bob Wilson29c8a782010-07-14 23:41:58 +0000321 DT_HOME="$DEST_DIR/Developer/usr"
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000322 mkdir -p $DT_HOME/lib
323 mv lib/libLTO.dylib $DT_HOME/lib/libLTO.dylib
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000324
Bob Wilson43327922010-07-19 21:33:07 +0000325 # Save a copy of the unstripped dylib
326 mkdir -p $SYM_DIR/Developer/usr/lib
327 cp $DT_HOME/lib/libLTO.dylib $SYM_DIR/Developer/usr/lib/libLTO.dylib
328
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000329 # Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
330 # PPC objects!
331 strip -arch all -Sl $DT_HOME/lib/libLTO.dylib
Bob Wilson43327922010-07-19 21:33:07 +0000332
333 if [ "x$DISABLE_USR_LINKS" == "x" ]; then
334 # Add a symlink in /usr/lib for B&I.
335 mkdir -p $DEST_DIR/usr/lib/
336 (cd $DEST_DIR/usr/lib && \
337 ln -s ../../Developer/usr/lib/libLTO.dylib ./libLTO.dylib)
338 fi
Bob Wilson29c8a782010-07-14 23:41:58 +0000339else
340 rm -f lib/libLTO.dylib
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000341fi
342rm -f lib/libLTO.a lib/libLTO.la
343
Stuart Hastings539f8172011-02-25 20:42:39 +0000344// Omit lto.h from the result. Clang will supply.
345find $DEST_DIR$DEST_ROOT -name lto.h -delete
346
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000347################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000348# Remove debugging information from DEST_DIR.
349
Bill Wendlinge45da4f2010-06-22 23:44:15 +0000350cd $DIR || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000351
Bill Wendling6902e842007-11-09 06:59:33 +0000352find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
353find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000354
355# Strip debugging information from files
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000356#
357# Use '-l' to strip i386 modules. N.B. that flag doesn't work with kext or
358# PPC objects!
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000359find $DEST_DIR -perm -0111 -type f \
360 ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \
Bill Wendling0a7e18c2010-06-29 22:17:37 +0000361 -print | xargs -n 1 -P ${SYSCTL} strip -arch all -Sl
Bill Wendling0a1bd2a2010-06-29 01:08:57 +0000362
Bill Wendling6902e842007-11-09 06:59:33 +0000363chgrp -h -R wheel $DEST_DIR
364chgrp -R wheel $DEST_DIR
365
366################################################################################
Bob Wilson4bb327d2010-07-14 23:49:18 +0000367# Remove the docs directory
Bill Wendling1f851292008-05-06 08:33:07 +0000368
Bob Wilson4bb327d2010-07-14 23:49:18 +0000369rm -rf $DEST_DIR$DEST_ROOT/docs
Bill Wendling1f851292008-05-06 08:33:07 +0000370
371################################################################################
Bill Wendling6902e842007-11-09 06:59:33 +0000372# w00t! Done!
373
374exit 0