From 12abddb06b681f5c1cb389074b5a35d3e260698f Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Mon, 6 Jun 2016 01:25:11 +0300 Subject: [PATCH] Require LLVM 3.7 We are using getMCTargetInfo which is 3.7+ --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index b7053c5c54f..7e3f86b8e1e 100755 --- a/configure +++ b/configure @@ -987,11 +987,11 @@ then LLVM_VERSION=$($LLVM_CONFIG --version) case $LLVM_VERSION in - (3.[6-8]*) + (3.[7-8]*) msg "found ok version of LLVM: $LLVM_VERSION" ;; (*) - err "bad LLVM version: $LLVM_VERSION, need >=3.6" + err "bad LLVM version: $LLVM_VERSION, need >=3.7" ;; esac fi