diff options
author | hexcoder- <heiko@hexco.de> | 2020-11-05 21:11:31 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-11-05 21:11:31 +0100 |
commit | 61fe059ba2d1cd0106c0ffa4eaf1896c7912e275 (patch) | |
tree | 4b71ca327fa2a3634687f6d810d13e005acb0a84 | |
parent | 6abe4d124ec23d3ab9fc5f7bec4ffa1c0a1eba22 (diff) | |
download | afl++-61fe059ba2d1cd0106c0ffa4eaf1896c7912e275.tar.gz |
ignore build error (unsupported platform), so top level 'make tests' can be run
-rw-r--r-- | examples/aflpp_driver/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/aflpp_driver/GNUmakefile b/examples/aflpp_driver/GNUmakefile index 57e74be7..c1a087d7 100644 --- a/examples/aflpp_driver/GNUmakefile +++ b/examples/aflpp_driver/GNUmakefile @@ -12,7 +12,7 @@ CFLAGS := -O3 -funroll-loops -g all: libAFLDriver.a libAFLQemuDriver.a aflpp_qemu_driver_hook.so aflpp_driver.o: aflpp_driver.c - $(LLVM_BINDIR)clang -I. -I../../include $(CFLAGS) -c aflpp_driver.c + -$(LLVM_BINDIR)clang -I. -I../../include $(CFLAGS) -c aflpp_driver.c libAFLDriver.a: aflpp_driver.o ar ru libAFLDriver.a aflpp_driver.o |