From f0298862f5ca7c5b050f1a377e62adcffbeb6a99 Mon Sep 17 00:00:00 2001 From: Daylen Yang Date: Tue, 16 Oct 2012 00:13:16 -0700 Subject: [PATCH] Further improve compatibility when compiling on OS X Change the minimum supported version from 10.6 to 10.0 --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.2