X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=aclocal.m4;h=f5ae279eb812fb0f67b19e16ea3482ed7abc99b4;hb=4d8c7c976104d2e39a1183967ec0f254a0fc0a47;hp=1ca1ec6869b042ca16a76ba6150a782836187dbb;hpb=b56d78783390e922c4bc8106f04729de01749e01;p=ghc-hetmet.git diff --git a/aclocal.m4 b/aclocal.m4 index 1ca1ec6..f5ae279 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -9,6 +9,7 @@ # Set the C and LD flags for a given platform AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], [ + AC_MSG_CHECKING([Setting up $2, $3 and $4]) case $$1 in i386-apple-darwin) # By default, gcc on OS X will generate SSE @@ -17,10 +18,21 @@ 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 -march=i686 -m32" ;; x86_64-apple-darwin) $2="$$2 -m64" $3="$$3 -m64" + $4="$$4 -m64" + ;; + esac + + case $$1 in + 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" + $4="$$4 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" ;; esac @@ -32,6 +44,7 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], $2="$$2 -fno-stack-protector" fi rm -f conftest.c conftest.o + AC_MSG_RESULT([done]) ])