diff options
author | van Hauser <vh@thc.org> | 2020-05-06 15:57:38 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-06 15:57:38 +0200 |
commit | 8cdf767bf589e3f709fda1d580b5899f046ae070 (patch) | |
tree | 72666bcd3c8bea9e4eef9f4c90dd1510491cfe5a | |
parent | e910882e320f33f4413ba9c2dff537f885276bb5 (diff) | |
download | afl++-8cdf767bf589e3f709fda1d580b5899f046ae070.tar.gz |
doc update
-rw-r--r-- | examples/afl_untracer/Makefile | 2 | ||||
-rw-r--r-- | examples/afl_untracer/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/afl_untracer/Makefile b/examples/afl_untracer/Makefile index ad67e8bc..14a09b41 100644 --- a/examples/afl_untracer/Makefile +++ b/examples/afl_untracer/Makefile @@ -7,7 +7,7 @@ endif all: afl-untracer libtestinstr.so afl-untracer: afl-untracer.c - $(CC) $(OPT) -I../../include -g -o afl-untracer afl-untracer.c -ldl -pthread + $(CC) $(OPT) -I../../include -g -o afl-untracer afl-untracer.c -ldl libtestinstr.so: libtestinstr.c $(CC) -g -O0 -fPIC -o libtestinstr.so -shared libtestinstr.c diff --git a/examples/afl_untracer/README.md b/examples/afl_untracer/README.md index 8e24c2a4..0bd788f3 100644 --- a/examples/afl_untracer/README.md +++ b/examples/afl_untracer/README.md @@ -3,7 +3,7 @@ afl-untracer is an example skeleton file which can easily be used to fuzz a closed source library. -It requires less memory than qemu_mode however it is way +It requires less memory and is x3-5 faster than qemu_mode however it is way more course grained and does not provide interesting features like compcov or cmplog. |