Skip to content

Commit 91839bc

Browse files
committed
Do not overwrite existing CFLAGS and LDFLAGS.
#38
1 parent 02dbfca commit 91839bc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile.linux

+6-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,18 @@ CC := gcc
2626
# There are a few source files where it had been necessary to define __USE_XOPEN2KXSI,
2727
# __USE_XOPEN, or _POSIX_C_SOURCE. Doesn't seem to be needed after adding this.
2828

29-
CFLAGS := -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall
29+
# The first assignment to CFLAGS and LDFLAGS uses +=, rather than :=, so
30+
# we will inherit options already set in build environment.
31+
# Explanation - https://github.com/wb2osz/direwolf/pull/38
32+
33+
CFLAGS += -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall
3034

3135
# That was fine for a recent Ubuntu and Raspbian Jessie.
3236
# However, Raspbian wheezy was then missing declaration for strsep and definition of fd_set.
3337

3438
CFLAGS += -D_BSD_SOURCE
3539

36-
LDFLAGS := -lm -lpthread -lrt
40+
LDFLAGS += -lm -lpthread -lrt
3741

3842

3943

0 commit comments

Comments
 (0)