Skip to content

Commit ed95ad1

Browse files
committed
Fix build on Mac OS X
For some users -stack_size,0x4000 does not work, so revert for now. osX 10.6.8 gcc version 4.7.3 (MacPorts gcc47 4.7.3_2) g++: error: unrecognized command line option '-stack_size,0x4000' make[2]: *** [stockfish] Error 1 make[1]: *** [gcc-profile-make] Error 2 make: *** [profile-build] Error 2 No functional change.
1 parent c65d67f commit ed95ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ ifneq ($(comp),mingw)
273273
endif
274274

275275
ifeq ($(os),osx)
276-
LDFLAGS += -arch $(arch) -mmacosx-version-min=10.0 -stack_size,0x4000
276+
LDFLAGS += -arch $(arch) -mmacosx-version-min=10.0
277277
endif
278278

279279
### 3.4 Debugging

0 commit comments

Comments
 (0)