summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2024-04-04 17:56:35 +0200
committerDirk Engling <erdgeist@erdgeist.org>2024-04-04 17:56:35 +0200
commit308e91a2fa45ad3714fbd39e6cacde464b0280a8 (patch)
treece7b971630f0e25c6a24e9b595cae8045e19aa82
parent9f615bbebfd9c5a896ddc7cace680ec45d2c2501 (diff)
-pthread needs to be in CFLAGS
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3f32b1c..535b72b 100644
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ FEATURES+=-DWANT_FULLSCRAPE
49OPTS_debug=-D_DEBUG -g -ggdb # -pg -fprofile-arcs -ftest-coverage 49OPTS_debug=-D_DEBUG -g -ggdb # -pg -fprofile-arcs -ftest-coverage
50OPTS_production=-O3 50OPTS_production=-O3
51 51
52CFLAGS+=-I$(LIBOWFAT_HEADERS) -Wall -pipe -Wextra #-ansi -pedantic 52CFLAGS+=-I$(LIBOWFAT_HEADERS) -Wall -pipe -pthread -Wextra #-ansi -pedantic
53LDFLAGS+=-L$(LIBOWFAT_LIBRARY) -lowfat -pthread -lz 53LDFLAGS+=-L$(LIBOWFAT_LIBRARY) -lowfat -pthread -lz
54#LDFLAGS+=-lbsd 54#LDFLAGS+=-lbsd
55 55