From: Marco Costalba Date: Sat, 20 Oct 2012 08:07:27 +0000 (-0700) Subject: Merge pull request #33 from daylen/master X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=c11edd3b0b43f24decc4d003472669042ae073e4;hp=739d23f2a3251df4f664195aed74b8b26ea966c2 Merge pull request #33 from daylen/master Further improve OS X compatibility Change the minimum supported version from 10.6 to 10.0 No functional change. --- diff --git a/src/Makefile b/src/Makefile index ef5f3088..ee4374d8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -250,7 +250,7 @@ ifeq ($(comp),clang) endif ifeq ($(os),osx) - CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.6 + CXXFLAGS += -arch $(arch) -mmacosx-version-min=10.0 endif ### 3.3 General linker settings @@ -265,7 +265,7 @@ ifneq ($(comp),mingw) endif ifeq ($(os),osx) - LDFLAGS += -arch $(arch) -mmacosx-version-min=10.6 + LDFLAGS += -arch $(arch) -mmacosx-version-min=10.0 endif ### 3.4 Debugging