diff options
| author | van Hauser <vh@thc.org> | 2020-07-21 13:15:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 13:15:59 +0200 |
| commit | b6e65f98827470745d7df5cf1e38b506b9e839b0 (patch) | |
| tree | 602abd8c1a1929aebda3f80665ffe02b435fdd00 /GNUmakefile | |
| parent | fc5cfc6cb309b072a45b991be117c17396e46a89 (diff) | |
| parent | c2b04bdf6c596f5d220f27caead20d09452ed42d (diff) | |
| download | afl++-b6e65f98827470745d7df5cf1e38b506b9e839b0.tar.gz | |
Merge pull request #461 from AFLplusplus/new_splicing
New splicing
Diffstat (limited to 'GNUmakefile')
| -rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 748cd73c..f44ef95e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -65,7 +65,7 @@ endif ifeq "$(shell uname)" "SunOS" CFLAGS_OPT += -Wno-format-truncation - LDFLAGS=-lkstat + LDFLAGS=-lkstat -lrt endif ifdef STATIC @@ -196,7 +196,7 @@ else endif ifneq "$(filter Linux GNU%,$(shell uname))" "" - LDFLAGS += -ldl + LDFLAGS += -ldl -lrt endif ifneq "$(findstring FreeBSD, $(shell uname))" "" @@ -254,13 +254,13 @@ ifeq "$(shell echo '$(HASH)include <sys/ipc.h>@$(HASH)include <sys/shm.h>@int ma else SHMAT_OK=0 override CFLAGS+=-DUSEMMAP=1 - LDFLAGS += -Wno-deprecated-declarations -lrt + LDFLAGS += -Wno-deprecated-declarations endif ifdef TEST_MMAP SHMAT_OK=0 override CFLAGS += -DUSEMMAP=1 - LDFLAGS += -Wno-deprecated-declarations -lrt + LDFLAGS += -Wno-deprecated-declarations endif all: test_x86 test_shm test_python ready $(PROGS) afl-as test_build all_done |
