Skip to content

Commit 20f9e15

Browse files
committed
Merge branch 'macOS' of git://github.com/jedahan/direwolf into jedahan-macOS
2 parents 79df808 + e0fcdb8 commit 20f9e15

File tree

2 files changed

+17
-8
lines changed

2 files changed

+17
-8
lines changed

Makefile.macosx

+16-8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
# 3. Removed fsk_fast_filter.h from atest receipe, clang compiler was having
2525
# a hissy fit. Not check with GCC.
2626

27+
# Where should we install it?
28+
# Looks for libraries and includes, default is Homebrew
29+
INSTALLDIR := /usr/local
30+
31+
# To use Macports, uncomment this line
32+
#INSTALLDIR := /opt/local
33+
2734
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
2835

2936
all : $(APPS) direwolf.conf
@@ -44,7 +51,7 @@ ifeq (${DARWIN_CC},)
4451
DARWIN_CC := $(shell which gcc)
4552
EXTRA_CFLAGS :=
4653
else
47-
EXTRA_CFLAGS := -fvectorize -fslp-vectorize -fslp-vectorize-aggressive -pthread
54+
EXTRA_CFLAGS := -fvectorize -fslp-vectorize -pthread
4855
endif
4956

5057
# Change as required in support of the available libraries
@@ -74,8 +81,9 @@ CFLAGS += -D_BSD_SOURCE
7481
# get much better results by telling it we have at least a Pentium 3
7582
# which hass the SSE instructions.
7683

77-
CFLAGS += -march=core2 -msse4.1 -std=gnu99
84+
#CFLAGS += -march=core2 -msse4.1 -std=gnu99
7885
#CFLAGS += -march=pentium3 -sse
86+
CFLAGS += -march=native
7987

8088

8189
# Add -ffastmath in only if compiler version recognizes it.
@@ -90,19 +98,19 @@ endif
9098
# Use PortAudio Library
9199

92100
# Force static linking of portaudio if the static library is available.
93-
PA_LIB_STATIC := $(shell find /opt/local/lib -maxdepth 1 -type f -name "libportaudio.a")
101+
PA_LIB_STATIC := $(shell find $(INSTALLDIR)/lib -maxdepth 1 -type f -name "libportaudio.a")
94102
#$(info $$PA_LIB_STATIC is [${PA_LIB_STATIC}])
95103
ifeq (${PA_LIB_STATIC},)
96-
LDLIBS += -L/opt/local/lib -lportaudio
104+
LDLIBS += -L$(INSTALLDIR)/lib -lportaudio
97105
else
98-
LDLIBS += /opt/local/lib/libportaudio.a
106+
LDLIBS += $(INSTALLDIR)/lib/libportaudio.a
99107
endif
100108

101109
# Include libraries portaudio requires.
102110
LDLIBS += -framework CoreAudio -framework AudioUnit -framework AudioToolbox
103111
LDLIBS += -framework Foundation -framework CoreServices
104112

105-
CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
113+
CFLAGS += -DUSE_PORTAUDIO -I$(INSTALLDIR)/include
106114

107115
# Uncomment following lines to enable GPS interface & tracker function.
108116
# Not available for MacOSX (as far as I know).
@@ -111,12 +119,12 @@ CFLAGS += -DUSE_PORTAUDIO -I/opt/local/include
111119
# Well never mind, issue with Macports with 64bit libs ;-( leave the check in
112120
# until (if ever) Macports fixes the issue.
113121

114-
#GPS_HEADER := $(shell find /opt/local/include -maxdepth 1 -type f -name "gps.h")
122+
#GPS_HEADER := $(shell find $(INSTALLDIR)/include -maxdepth 1 -type f -name "gps.h")
115123
#ifeq (${GPS_HEADER},)
116124
#GPS_OBJS :=
117125
#else
118126
#CFLAGS += -DENABLE_GPSD
119-
#LDLIBS += -L/opt/local/lib -lgps -lgpsd
127+
#LDLIBS += -L$(INSTALLDIR)/lib -lgps -lgpsd
120128
#GPS_OBJS := dwgps.o dwgpsnmea.o dwgpsd.o
121129
#endif
122130

search_sdks.sh

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ if [ ! -z "$selected_sdk" ]; then
8585

8686
# Remove the "u" if 10.4u Universal SDK is used.
8787
min_str="${min_str%%u}"
88+
min_str="${min_str:-10.14}"
8889

8990
system_sdk="-isystem ${selected_sdk} -mmacosx-version-min=${min_str}"
9091
else

0 commit comments

Comments
 (0)