diff options
author | Ian Lynagh <igloo@earth.li> | 2011-01-16 15:12:30 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-01-16 15:12:30 +0000 |
commit | 2a1db1613dfa6b7cb982daa98987aee2c4eb12b1 (patch) | |
tree | 5b0b983d36bb1fee0dfa6e0e9971a460687dce72 /aclocal.m4 | |
parent | 437f89151dac9f70b833b7ab0d34bf170f8a3585 (diff) | |
download | haskell-2a1db1613dfa6b7cb982daa98987aee2c4eb12b1.tar.gz |
It's not clear if LDFLAGS flags will be given to gcc or ld,
and they accept different flags, so for now do nothing
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index f5ae279eb8..e6410d7de5 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -6,7 +6,11 @@ # FPTOOLS_SET_C_LD_FLAGS # ---------------------------------- -# Set the C and LD flags for a given platform +# Set the C, LD and CPP flags for a given platform +# $1 is the platform +# $2 is the name of the C flags variable +# $3 is the name of the LD flags variable +# $4 is the name of the CPP flags variable AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], [ AC_MSG_CHECKING([Setting up $2, $3 and $4]) @@ -17,12 +21,16 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], # 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" + # It's not clear if $3 flags will be given to gcc or ld, + # and they accept different flags, so for now do nothing + # $3="$$3 -march=i686 -m32" $4="$$4 -march=i686 -m32" ;; x86_64-apple-darwin) $2="$$2 -m64" - $3="$$3 -m64" + # It's not clear if $3 flags will be given to gcc or ld, + # and they accept different flags, so for now do nothing + # $3="$$3 -m64" $4="$$4 -m64" ;; esac @@ -31,7 +39,9 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], i386-apple-darwin|x86_64-apple-darwin) # We support back to OS X 10.5 $2="$$2 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" - $3="$$3 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" + # It's not clear if $3 flags will be given to gcc or ld, + # and they accept different flags, so for now do nothing + # $3="$$3 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" $4="$$4 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" ;; esac |