Skip to content

Commit 40047e9

Browse files
committed
Fix segmentation fault when -p command line option used.
We need to define a couple more symbols for glibc >= 2.24. Complete details: #62 modified: Makefile.linux modified: Makefile.macosx
1 parent 01857c1 commit 40047e9

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

Makefile.linux

+9-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@ all : $(APPS) direwolf.desktop direwolf.conf
1212
@echo " "
1313

1414
CC := gcc
15-
CFLAGS := -O3 -pthread -Igeotranz
15+
16+
# _XOPEN_SOURCE=600 and _DEFAULT_SOURCE=1 are needed for glibc >= 2.24.
17+
# Explanation here: https://github.com/wb2osz/direwolf/issues/62
18+
19+
# There are a few source files where it had been necessary to define __USE_XOPEN2KXSI,
20+
# __USE_XOPEN, or _POSIX_C_SOURCE. Doesn't seem to be needed after adding this.
21+
22+
CFLAGS := -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1
1623

1724
LDFLAGS := -lm -lpthread -lrt
1825

@@ -91,7 +98,7 @@ endif
9198
# 245
9299
# 75 -01
93100
# 72 -02
94-
# 71 -03
101+
# 71 -03
95102
# 73 -O3 -march=native
96103
# 42 -O3 -ffast-math
97104
# 42 -Ofast (note below)

Makefile.macosx

+6-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,12 @@ endif
7171

7272
#CC := $(DARWIN_CC) -m64 $(SYS_LIBS) $(SYS_MIN)
7373
CC := $(DARWIN_CC) -m32 $(SYS_LIBS) $(SYS_MIN)
74-
CFLAGS := -Os -pthread -Igeotranz $(EXTRA_CFLAGS)
74+
75+
# _XOPEN_SOURCE=600 and _DEFAULT_SOURCE=1 are needed for glibc >= 2.24.
76+
# Explanation here: https://github.com/wb2osz/direwolf/issues/62
77+
78+
CFLAGS := -Os -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 $(EXTRA_CFLAGS)
79+
7580
# $(info $$CC is [${CC}])
7681

7782
#

0 commit comments

Comments
 (0)