Extract the x86_64 part for the executables.
authorBill Wendling <isanbard@gmail.com>
Mon, 23 Jun 2008 22:08:30 +0000 (22:08 +0000)
committerBill Wendling <isanbard@gmail.com>
Mon, 23 Jun 2008 22:08:30 +0000 (22:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52647 91177308-0d34-0410-b5e6-96231b3b80d8

utils/buildit/build_llvm

index 6ccff46ba890cad229cf3dbd30a7ae7f4a65b0ea..4ef7fb54015f42de4abd74962407d4d83bf888ca 100755 (executable)
@@ -173,21 +173,19 @@ rm bin/.dir etc/llvm/.dir lib/.dir
 
 # Remove PPC64 fat slices.
 cd $DEST_DIR$DEST_ROOT/bin
-
 if [ $MACOSX_DEPLOYMENT_TARGET = "10.4" ]; then
     find . -perm 755 -type f -exec lipo -extract ppc -extract i386 {} -output {} \;
-else
+elif [ $MACOSX_DEPLOYMENT_TARGET = "10.5" ]; then
     find . -perm 755 -type f -exec lipo -extract ppc7400 -extract i386 {} -output {} \;
+else
+    find . -perm 755 -type f -exec lipo -extract ppc7400 -extract i386 -extract x86_64 {} -output {} \;
 fi
 
 cd $DEST_DIR$DEST_ROOT
-
 mkdir -p $DT_HOME/lib
 mv lib/libLTO.dylib $DT_HOME/lib/libLTO.dylib
 rm -f lib/libLTO.a lib/libLTO.la
 
-
-
 ################################################################################
 # Create SYM_DIR with information required for debugging.