Default to armv7 instead of armv6.

llvm-svn: 122457
This commit is contained in:
Bill Wendling 2010-12-23 00:49:18 +00:00
parent 8c48503baa
commit f14bb1e98b
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ if [ "$ARM_HOSTED_BUILD" = yes ]; then
T=`xcrun -sdk $SDKROOT -find ${prog}`
fi
echo '#!/bin/sh' > $P || exit 1
echo 'exec '$T' -arch armv6 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
echo 'exec '$T' -arch armv7 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
chmod a+x $P || exit 1
done