diff options
author | Joachim Hyrathon <hyrathon@163.com> | 2024-02-27 15:34:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 15:34:42 +0800 |
commit | 8fcd404352a0bcf1084c518e779fe042c61d2b9e (patch) | |
tree | 9be24a0eb361b08c890f908cbf92106e51f5910f | |
parent | 775861ea94d00672c9e868db329073afd699b994 (diff) | |
download | afl++-8fcd404352a0bcf1084c518e779fe042c61d2b9e.tar.gz |
Update GNUmakefile
The linker flags lacks a -ldl so the dlopen series of func symbols can't be found
-rw-r--r-- | utils/afl_network_proxy/GNUmakefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/afl_network_proxy/GNUmakefile b/utils/afl_network_proxy/GNUmakefile index 7c8c22ff..47d9a7d3 100644 --- a/utils/afl_network_proxy/GNUmakefile +++ b/utils/afl_network_proxy/GNUmakefile @@ -10,6 +10,7 @@ PROGRAMS = afl-network-client afl-network-server HASH=\# CFLAGS += -Wno-pointer-sign +LDFLAGS += -ldl ifdef STATIC CFLAGS += -static |