diff options
author | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2008-02-21 22:44:49 +0000 |
---|---|---|
committer | Manuel M T Chakravarty <chak@cse.unsw.edu.au> | 2008-02-21 22:44:49 +0000 |
commit | 5b846fa36eee0f96c4c47128706d0131f8bb4113 (patch) | |
tree | 1991038fe55b93d063958dfe8fe230b1911f2a28 /rts/Makefile | |
parent | 7350aaa60aaf63074202f24208497e2d64ddffb2 (diff) | |
download | haskell-5b846fa36eee0f96c4c47128706d0131f8bb4113.tar.gz |
Mac OS X deployment target: piping opts through Makefiles
Diffstat (limited to 'rts/Makefile')
-rw-r--r-- | rts/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rts/Makefile b/rts/Makefile index db1c31e069..d88a82308b 100644 --- a/rts/Makefile +++ b/rts/Makefile @@ -177,6 +177,11 @@ LIB_LD_OPTS = -L$(shell $(GHC_PKG_INPLACE) field base library-dirs | sed -e 's/l endif endif +# Mac OS X: make sure we compile for the right OS version +SRC_CC_OPTS += $(MACOSX_DEPLOYMENT_CC_OPTS) +SRC_HC_OPTS += $(addprefix -optc, $(MACOSX_DEPLOYMENT_CC_OPTS)) +LIB_LD_OPTS += $(addprefix -optl, $(MACOSX_DEPLOYMENT_LD_OPTS)) + # XXX DQ is now the same on all platforms, so get rid of it DQ = \" |