ld64-253.9.tar.gz
[apple/ld64.git] / unit-tests / run-all-unit-tests
index fa969688a5b3fcbf370ca5545623234303b605cd..92851281512dcba73c398be50713cb6b274341e0 100755 (executable)
@@ -6,21 +6,26 @@ unset LD_TRACE_DYLIBS
 unset LD_TRACE_ARCHIVES
 
 export DYLD_FALLBACK_LIBRARY_PATH=${DYLD_FALLBACK_LIBRARY_PATH}:/Developer/usr/lib
+export MACOSX_DEPLOYMENT_TARGET=10.7
 # cd into test-cases directory
 cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'`
 
 [ "$PROCTORRUN" ] && exec ../proctor-run
 
-all_archs="x86_64  ppc i386  "
-#armv6 thumb
-valid_archs="x86_64 armv6 ppc i386  "
+all_archs="x86_64  i386"
+valid_archs="x86_64 i386"
+# only test arm code if iOS platform tools installed
+if [ -d /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs ]
+then
+    all_archs="${all_archs}  armv7"
+    valid_archs="${valid_archs} armv7"
+fi
+
 
 # clean first
 ../bin/make-recursive.pl clean > /dev/null
 
 mkdir /tmp/$$
-mkdir $BUILD_ROOT/lib
-ln -s /Developer/usr/lib/libLTO.dylib ${BUILD_ROOT}/lib/libLTO.dylib
 for arch in $all_archs
 do
        echo ""