diff options
author | van Hauser <vh@thc.org> | 2019-12-15 21:39:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-15 21:39:55 +0100 |
commit | c3423d81d02184129b427ca0fc8cd5082ee40167 (patch) | |
tree | 411f5ccf0439ecb3033cf4c4c23331970ab43625 /llvm_mode | |
parent | bc6c5d6be22bd20965a254401ffab75fbd69d140 (diff) | |
parent | 0db7b39e622a63c5d98b074d6d2c960fe127563d (diff) | |
download | afl++-c3423d81d02184129b427ca0fc8cd5082ee40167.tar.gz |
Merge pull request #140 from devnexen/llvm_mode_no_apple_build_fix
Concealing the no build test to apple devices.
Diffstat (limited to 'llvm_mode')
-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 2548416e..c2afd597 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 '^[12]|^3\.0|^1[0-9]' && echo 1 || echo 0 ) +LLVM_UNSUPPORTED = $(shell $(LLVM_CONFIG) --version 2>/dev/null | egrep -q '^3\.0|^1[1-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) |