Skip to content

Commit 49ea703

Browse files
committed
Makefile tweaks
Uses the changes from pull request #71 by schuyler from the main direwolf repo
1 parent 09a984a commit 49ea703

File tree

1 file changed

+5
-22
lines changed

1 file changed

+5
-22
lines changed

Makefile.macosx

+5-22
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,6 @@ all : $(APPS) direwolf.conf
3636

3737
SYS_LIBS :=
3838
SYS_MIN :=
39-
#SDK := $(shell find /Developer -maxdepth 1 -type d -name "SDKs")
40-
#$(info $$SDK = ${SDK})
41-
#ifeq (${SDK},/Developer/SDKs)
42-
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.8.sdk")
43-
# ifeq (${SDK},/Developer/SDKs/MacOSX10.8.sdk)
44-
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.8.sdk
45-
# SYS_MIN := -mmacosx-version-min=10.8
46-
# else
47-
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.9.sdk")
48-
# ifeq (${SDK},/Developer/SDKs/MacOSX10.9.sdk)
49-
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.9.sdk
50-
# SYS_MIN := -mmacosx-version-min=10.9
51-
# else
52-
# SDK := $(shell find /Developer/SDKs -maxdepth 1 -type d -name "MacOSX10.10.sdk")
53-
# ifeq (${SDK},/Developer/SDKs/MacOSX10.10.sdk)
54-
# SYS_LIBS := -isystem /Developer/SDKs/MacOSX10.10.sdk
55-
# SYS_MIN := -mmacosx-version-min=10.10
56-
# endif
57-
# endif
58-
# endif
59-
#endif
6039

6140
SYS_LIBS := $(shell ./search_sdks.sh)
6241
EXTRA_CFLAGS :=
@@ -70,8 +49,12 @@ endif
7049

7150
# Change as required in support of the available libraries
7251

73-
#CC := $(DARWIN_CC) -m64 $(SYS_LIBS) $(SYS_MIN)
52+
UNAME_M := $(shell uname -m)
53+
ifeq (${UNAME_M},x86_64)
54+
CC := $(DARWIN_CC) -m64 $(SYS_LIBS) $(SYS_MIN)
55+
else
7456
CC := $(DARWIN_CC) -m32 $(SYS_LIBS) $(SYS_MIN)
57+
endif
7558

7659
# _XOPEN_SOURCE=600 and _DEFAULT_SOURCE=1 are needed for glibc >= 2.24.
7760
# Explanation here: https://github.com/wb2osz/direwolf/issues/62

0 commit comments

Comments
 (0)