X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=aclocal.m4;h=09ef225166c12b3fea06eb871da85dc3a22ff392;hb=8287e2325f56a6ce7f855f4aeb1e975f64717720;hp=4701bc93541992a5e2dc3cddfe99d0c991a0515a;hpb=c0eb9d997653da4357873829990cc338475bca39;p=ghc-hetmet.git diff --git a/aclocal.m4 b/aclocal.m4 index 4701bc9..09ef225 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -6,10 +6,15 @@ # 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 CC flags variable +# $3 is the name of the linker flags variable when linking with gcc +# $4 is the name of the linker flags variable when linking with ld +# $5 is the name of the CPP flags variable AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], [ - AC_MSG_CHECKING([Setting up $2 and $3]) + 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 @@ -18,10 +23,14 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], # back to generic i686 compatibility. Trac #2983. $2="$$2 -march=i686 -m32" $3="$$3 -march=i686 -m32" + $4="$$4 -arch i386" + $5="$$5 -march=i686 -m32" ;; x86_64-apple-darwin) $2="$$2 -m64" $3="$$3 -m64" + $4="$$4 -arch x86_64" + $5="$$5 -m64" ;; esac @@ -30,6 +39,8 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], # 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" + $4="$$4 -macosx_version_min 10.5" + $5="$$5 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" ;; esac