diff options
author | Ian Lynagh <igloo@earth.li> | 2010-09-21 19:37:21 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-09-21 19:37:21 +0000 |
commit | 2d8835178b858bd6e533e456d7811bb540d44bcf (patch) | |
tree | 7f1c2867d8a53c2ca1a22cab4f2fdeecf5503f61 | |
parent | 75d9236613acdcfa54deb81b12bd4546c31e7c9f (diff) | |
download | haskell-2d8835178b858bd6e533e456d7811bb540d44bcf.tar.gz |
Don't use -march=i686 on powerpc-apple-darwin
Thorikil ran into this when doing a PPC OS X build. We now also don't
use -m32 on PPC/OSX, but I don't think it should be necessary. We can
add it back if it does turn out to be.
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index d9a14343b7..bee5085b4b 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -10,7 +10,7 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], [ case $$1 in - i386-apple-darwin|powerpc-apple-darwin) + 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 |