1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Use llvm-gcc to build ARM when it's available

llvm-svn: 98770
This commit is contained in:
Jim Grosbach 2010-03-17 21:25:13 +00:00
parent 2fcf1547f2
commit a83aafc043

View File

@ -106,11 +106,10 @@ if [ "x$RC_ProjectName" = "xllvmCore_EmbeddedHosted" ]; then
# Try to use the platform llvm-gcc. Fall back to gcc if it's not available.
for prog in gcc g++ ; do
P=$DIR/bin/arm-apple-darwin$DARWIN_VERS-${prog}
# FIXME: Uncomment once llvm-gcc works for this
# T=`xcrun -find llvm-${prog}`
# if [ "x$T" = "x" ] ; then
T=`xcrun -find llvm-${prog}`
if [ "x$T" = "x" ] ; then
T=`xcrun -sdk $SDKROOT -find ${prog}`
# fi
fi
echo '#!/bin/sh' > $P || exit 1
echo 'exec '$T' -arch armv6 -isysroot '${SDKROOT}' "$@"' >> $P || exit 1
chmod a+x $P || exit 1