File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,14 @@ all : $(APPS) direwolf.desktop direwolf.conf
12
12
@echo " "
13
13
14
14
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
16
23
17
24
LDFLAGS := -lm -lpthread -lrt
18
25
91
98
# 245
92
99
# 75 -01
93
100
# 72 -02
94
- # 71 -03
101
+ # 71 -03
95
102
# 73 -O3 -march=native
96
103
# 42 -O3 -ffast-math
97
104
# 42 -Ofast (note below)
Original file line number Diff line number Diff line change 71
71
72
72
#CC := $(DARWIN_CC) -m64 $(SYS_LIBS) $(SYS_MIN)
73
73
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
+
75
80
# $(info $$CC is [${CC}])
76
81
77
82
#
You can’t perform that action at this time.
0 commit comments