diff options
author | vanhauser-thc <vh@thc.org> | 2023-05-21 13:04:17 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-05-21 13:04:17 +0200 |
commit | 9a6c0ec0c0af42d33e4350ee2958b58fef1c39dd (patch) | |
tree | 37acba3de2e77ca4a2fa6be15f51c449031ca7f0 /custom_mutators | |
parent | 53a869b757287e8bebdfcbc96b8abe1729955171 (diff) | |
download | afl++-9a6c0ec0c0af42d33e4350ee2958b58fef1c39dd.tar.gz |
make AFL_CUSTOM_INFO overridable
Diffstat (limited to 'custom_mutators')
-rw-r--r-- | custom_mutators/symqemu/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom_mutators/symqemu/Makefile b/custom_mutators/symqemu/Makefile index 3361ab0f..958aec19 100644 --- a/custom_mutators/symqemu/Makefile +++ b/custom_mutators/symqemu/Makefile @@ -8,7 +8,7 @@ all: symqemu-mutator.so CFLAGS += -O3 -funroll-loops symqemu-mutator.so: symqemu.c - $(CC) $(CFLAGS) $(CPPFLAGS) -g -I../../include -shared -fPIC -o symqemu-mutator.so symqemu.c + $(CC) -g $(CFLAGS) $(CPPFLAGS) -g -I../../include -shared -fPIC -o symqemu-mutator.so symqemu.c clean: rm -f symqemu-mutator.so *.o *~ core |