mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Further improve compatibility when compiling on OS X
Change the minimum supported version from 10.6 to 10.0
This commit is contained in:
parent
739d23f2a3
commit
f0298862f5
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue