From: Ian Lynagh Date: Sun, 16 Jan 2011 15:12:30 +0000 (+0000) Subject: It's not clear if LDFLAGS flags will be given to gcc or ld, X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=2a1db1613dfa6b7cb982daa98987aee2c4eb12b1 It's not clear if LDFLAGS flags will be given to gcc or ld, and they accept different flags, so for now do nothing --- diff --git a/aclocal.m4 b/aclocal.m4 index f5ae279..e6410d7 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