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

Do not include multiple -arch options in CPPFLAGS.

llvm-svn: 154070
This commit is contained in:
Bob Wilson 2012-04-05 00:35:55 +00:00
parent 15541ee757
commit fcde5a3ac5

View File

@ -120,9 +120,8 @@ if [ "$ARM_HOSTED_BUILD" != yes ]; then
if [ $SDKROOT ]; then
CPPFLAGS="$CPPFLAGS -isysroot $SDKROOT"
fi
for host in $HOSTS; do
CPPFLAGS="$CPPFLAGS -arch $host"
done
for host in $HOSTS; do :; done
CPPFLAGS="$CPPFLAGS -arch $host"
fi
if [ \! -f Makefile.config ]; then