diff options
author | hexcoder- <heiko@hexco.de> | 2024-11-09 22:31:07 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2024-11-09 22:31:07 +0100 |
commit | f39cf57eac13f859fcf8c082b038ee6254bc0da9 (patch) | |
tree | b07e7e44cdceac332fa7a3e0f0451aa23322a2cc /GNUmakefile.llvm | |
parent | e62999c95f3e796c8f6ff8beab36799a661c755c (diff) | |
download | afl++-f39cf57eac13f859fcf8c082b038ee6254bc0da9.tar.gz |
enhance backward compatibility and portability
Diffstat (limited to 'GNUmakefile.llvm')
-rw-r--r-- | GNUmakefile.llvm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm index 367c437f..6a551492 100644 --- a/GNUmakefile.llvm +++ b/GNUmakefile.llvm @@ -69,7 +69,7 @@ endif LLVM_STDCXX := gnu++11 LLVM_LTO := 0 -LLVM_UNSUPPORTED := $(shell echo "$(LLVMVER)" | grep -E -q '^[0-2]\.|^3\.[0-8]\.' && echo 1 || echo 0) +LLVM_UNSUPPORTED := $(shell echo "$(LLVMVER)" | grep -E -q '^[0-2]\.|^3\.[0-7]\.' && echo 1 || echo 0) # Uncomment to see the values assigned above # $(foreach var,LLVM_CONFIG LLVMVER LLVM_MAJOR LLVM_MINOR LLVM_TOO_NEW LLVM_TOO_OLD LLVM_TOO_NEW_DEFAULT LLVM_TOO_OLD_DEFAULT LLVM_NEW_API LLVM_NEWER_API LLVM_13_OK LLVM_HAVE_LTO LLVM_BINDIR LLVM_LIBDIR LLVM_STDCXX LLVM_APPLE_XCODE LLVM_LTO LLVM_UNSUPPORTED,$(warning $(var) = $($(var)))) |