diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-12 15:54:30 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-12 15:54:30 +0000 |
commit | a051edba53ee8a2c99ddc13109e35c9e8cb68236 (patch) | |
tree | 336f3db96d74fe6e6ef350650f5c015a6c185554 /packages | |
parent | d626bc9b8cc6b9130dfc40ceb3ff3cf5d0b1b57f (diff) |
make 64-bit builds on 10.6 compatible with 10.5 using -mmacosx-version-min=10.5
svn path=/trunk/; revision=15575
Diffstat (limited to 'packages')
-rw-r--r-- | packages/darwin_app/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index 0f73d072..634ce04b 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -38,7 +38,7 @@ TARGET_PLATFORM := $(shell uname -p) ifeq ($(TARGET_PLATFORM),i386) # if on 10.6/Intel, then build as 64-bit with core2 as minimum CPU ifeq ($(shell uname -r | sed 's|\([0-9][0-9]*\)\.[0-9][0-9]*\.[0-9][0-9]*|\1|'), 10) - OPT_CFLAGS += -march=core2 -msse3 -mssse3 -mfpmath=sse + OPT_CFLAGS += -march=core2 -msse3 -mssse3 -mfpmath=sse -mmacosx-version-min=10.5 else OPT_CFLAGS += -march=pentium4 -msse3 -mfpmath=sse endif |