diff options
author | hexcoder- <heiko@hexco.de> | 2019-09-28 12:38:22 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2019-09-28 12:38:22 +0200 |
commit | 1e93146b494f9d6cf41db2f5e3da31a9a2e035bd (patch) | |
tree | f1cb43344b0cd7bbcd0a70daf550f494972f6792 | |
parent | 36fea4ba7b4723fe5247a2726b7fefe04f53b668 (diff) | |
download | afl++-1e93146b494f9d6cf41db2f5e3da31a9a2e035bd.tar.gz |
ignore error code on 'make llvm_mode', it might not be installed
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 42c6d737..a978fb65 100644 --- a/Makefile +++ b/Makefile @@ -250,7 +250,7 @@ binary-only: all cd unicorn_mode && sh ./build_unicorn_support.sh source-only: all - $(MAKE) -C llvm_mode + -$(MAKE) -C llvm_mode $(MAKE) -C libdislocator $(MAKE) -C libtokencap |