diff options
| author | hexcoder- <heiko@hexco.de> | 2020-05-15 01:55:33 +0200 |
|---|---|---|
| committer | hexcoder- <heiko@hexco.de> | 2020-05-15 01:55:33 +0200 |
| commit | 182b8a4582c6935507cb8514df09bf2676a78447 (patch) | |
| tree | 95450e277eeaf6e34204538fcfc49e44eb372c03 /llvm_mode/GNUmakefile | |
| parent | 97bddc8cfa5920cd4926a69c09db27c55d70be08 (diff) | |
| download | afl++-182b8a4582c6935507cb8514df09bf2676a78447.tar.gz | |
llvm_mode: lower llvm version reqs to 3.4 (LLInsTrim will not be
available)
Diffstat (limited to 'llvm_mode/GNUmakefile')
| -rw-r--r-- | llvm_mode/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_mode/GNUmakefile b/llvm_mode/GNUmakefile index ab14e545..01c83787 100644 --- a/llvm_mode/GNUmakefile +++ b/llvm_mode/GNUmakefile @@ -39,7 +39,7 @@ else endif LLVMVER = $(shell $(LLVM_CONFIG) --version 2>/dev/null | sed 's/git//' ) -LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^3\.[0-7]|^1[2-9]' && echo 1 || echo 0 ) +LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^3\.[0-3]|^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) |
