diff options
| author | Doug Goldstein <cardoe@cardoe.com> | 2016-03-24 13:11:08 -0500 |
|---|---|---|
| committer | Doug Goldstein <cardoe@cardoe.com> | 2016-03-24 13:11:08 -0500 |
| commit | ed2824792698c11437b58e5480da1c1dc3d54510 (patch) | |
| tree | 0de1a14f2c690c47a0ad6b1bd77ecba70cb390cc | |
| parent | dc1f6831eb0d0e5cca16395f14b7406ff85c4c3d (diff) | |
| download | rust-ed2824792698c11437b58e5480da1c1dc3d54510.tar.gz rust-ed2824792698c11437b58e5480da1c1dc3d54510.zip | |
configure: update required LLVM version
Rust 1.7.0 and newer appears to require LLVM 3.6.0 or newer when building against a version that's out of the tree with the --llvm-root flag. Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index 9a0143a3532..2700a7f6fe0 100755 --- a/configure +++ b/configure @@ -969,11 +969,11 @@ then LLVM_VERSION=$($LLVM_CONFIG --version) case $LLVM_VERSION in - (3.[5-8]*) + (3.[6-8]*) msg "found ok version of LLVM: $LLVM_VERSION" ;; (*) - err "bad LLVM version: $LLVM_VERSION, need >=3.5" + err "bad LLVM version: $LLVM_VERSION, need >=3.6" ;; esac fi |
