about summary refs log tree commit diff
path: root/GNUmakefile.llvm
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-11-02 17:41:54 +0100
committervan Hauser <vh@thc.org>2020-11-02 17:41:54 +0100
commiteab60a084cd22bc2f3d5356f79337f6c94b86340 (patch)
tree2c8b6ebc99e3ef78b8467935e4a1fc690c76fc39 /GNUmakefile.llvm
parent050354a9deeece1249f3f5a8172328b4523c5b7f (diff)
downloadafl++-eab60a084cd22bc2f3d5356f79337f6c94b86340.tar.gz
do not fail for llvm < 10
Diffstat (limited to 'GNUmakefile.llvm')
-rw-r--r--GNUmakefile.llvm2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm
index 9a3871a5..b021e6cf 100644
--- a/GNUmakefile.llvm
+++ b/GNUmakefile.llvm
@@ -384,7 +384,7 @@ endif
 	$(CXX) $(CLANG_CPPFL) -DLLVMInsTrim_EXPORTS -fno-rtti -fPIC -std=$(LLVM_STDCXX) -shared $< -o $@ $(CLANG_LFL) instrumentation/afl-llvm-common.o
 
 ./SanitizerCoveragePCGUARD.so: instrumentation/SanitizerCoveragePCGUARD.so.cc instrumentation/afl-llvm-common.o | test_deps
-	$(CXX) $(CLANG_CPPFL) -fno-rtti -fPIC -std=$(LLVM_STDCXX) -shared $< -o $@ $(CLANG_LFL) instrumentation/afl-llvm-common.o
+	-$(CXX) $(CLANG_CPPFL) -fno-rtti -fPIC -std=$(LLVM_STDCXX) -shared $< -o $@ $(CLANG_LFL) instrumentation/afl-llvm-common.o
 
 ./afl-llvm-lto-instrumentlist.so: instrumentation/afl-llvm-lto-instrumentlist.so.cc instrumentation/afl-llvm-common.o
 ifeq "$(LLVM_LTO)" "1"