projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
739d23f
)
Further improve compatibility when compiling on OS X
author
Daylen Yang
<services@daylenyang.com>
Tue, 16 Oct 2012 07:13:16 +0000 (
00:13
-0700)
committer
Daylen Yang
<services@daylenyang.com>
Tue, 16 Oct 2012 07:13:16 +0000 (
00:13
-0700)
Change the minimum supported version from 10.6 to 10.0
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index
ef5f308
..
ee4374d
100644
(file)
--- 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