diff options
| author | van Hauser <vh@thc.org> | 2023-08-09 14:33:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-09 14:33:23 +0000 |
| commit | 7f3b0a9503f90b86e8c196c6b405f0a4c8a7babc (patch) | |
| tree | 6774e014c7560c29d6ab93c83857cfab7ff9c3ba /GNUmakefile | |
| parent | d9cadb2e7db1d1c208cd40299f0e5c4f6364aa2c (diff) | |
| parent | 2c376f899456f3c9ecd010832e5be87c59e8c947 (diff) | |
| download | afl++-7f3b0a9503f90b86e8c196c6b405f0a4c8a7babc.tar.gz | |
Merge pull request #1829 from devnexen/fix_build_fuzzqueen
afl-fuzz-redqueen.c fix build, also forgotten math lib for ilog* calls
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index f6b76a6c..88816e85 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -255,17 +255,17 @@ endif ifneq "$(findstring FreeBSD, $(SYS))" "" override CFLAGS += -pthread - override LDFLAGS += -lpthread + override LDFLAGS += -lpthread -lm endif ifneq "$(findstring NetBSD, $(SYS))" "" override CFLAGS += -pthread - override LDFLAGS += -lpthread + override LDFLAGS += -lpthread -lm endif ifneq "$(findstring OpenBSD, $(SYS))" "" override CFLAGS += -pthread - override LDFLAGS += -lpthread + override LDFLAGS += -lpthread -lm endif COMM_HDR = include/alloc-inl.h include/config.h include/debug.h include/types.h |
