From: Ian Lynagh Date: Wed, 13 Apr 2011 22:36:29 +0000 (+0100) Subject: Now that -fvia-C is gone, we don't need -march=i686 on i386 Darwin X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=7960c82803a501976491d3c21c998a5e779f2380 Now that -fvia-C is gone, we don't need -march=i686 on i386 Darwin This fixes #5106 (objc compilation was failing on i386 Darwin). --- diff --git a/aclocal.m4 b/aclocal.m4 index e09bda8..0e72d22 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -94,14 +94,10 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], AC_MSG_CHECKING([Setting up $2, $3, $4 and $5]) case $$1 in i386-apple-darwin) - # By default, gcc on OS X will generate SSE - # instructions, which need things 16-byte aligned, - # but we don't 16-byte align things. Thus drop - # back to generic i686 compatibility. Trac #2983. - $2="$$2 -march=i686 -m32" - $3="$$3 -march=i686 -m32" + $2="$$2 -m32" + $3="$$3 -m32" $4="$$4 -arch i386" - $5="$$5 -march=i686 -m32" + $5="$$5 -m32" ;; x86_64-apple-darwin) $2="$$2 -m64"