diff options
author | hexcoder- <heiko@hexco.de> | 2020-01-30 21:50:57 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-01-30 21:50:57 +0100 |
commit | b050c1158398dd07e25a6cd65234da84e5656fa6 (patch) | |
tree | f0708e5226fd03f9b0cd5715c4805c287cb55ede | |
parent | ceed66930ef15922cd25e70a4770eaa31309e0ce (diff) | |
download | afl++-b050c1158398dd07e25a6cd65234da84e5656fa6.tar.gz |
for partial functionality ignore the LLVMInsTrim build result
-rw-r--r-- | llvm_mode/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/Makefile b/llvm_mode/Makefile index 50b1d48c..5f65b55e 100644 --- a/llvm_mode/Makefile +++ b/llvm_mode/Makefile @@ -36,7 +36,7 @@ else endif LLVMVER = $(shell $(LLVM_CONFIG) --version 2>/dev/null ) -LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^3\.[0-3]|^1[2-9]' && echo 1 || echo 0 ) +LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^3\.[0-7]|^1[2-9]' && echo 1 || echo 0 ) LLVM_NEW_API = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^1[0-9]' && echo 1 || echo 0 ) LLVM_MAJOR = $(shell $(LLVM_CONFIG) --version 2>/dev/null | sed 's/\..*//') LLVM_BINDIR = $(shell $(LLVM_CONFIG) --bindir 2>/dev/null) |