diff options
| author | Fabian Deutsch <fabian.deutsch@gmx.de> | 2013-03-26 20:59:13 +0100 |
|---|---|---|
| committer | Fabian Deutsch <fabian.deutsch@gmx.de> | 2013-03-26 20:59:13 +0100 |
| commit | 07f8ce706334fcf199edb0182beeff8de0da3c3a (patch) | |
| tree | a834245a54ff5d869ece6a5fe07127149cbb3909 | |
| parent | 3bbcac322669cff3abde5be937cc4ec3860f3985 (diff) | |
| download | rust-07f8ce706334fcf199edb0182beeff8de0da3c3a.tar.gz rust-07f8ce706334fcf199edb0182beeff8de0da3c3a.zip | |
configure: Accept llvm-3.2
Previously the build system only checked for llvm-3.1 - 2.8. Now also 3.2 and 3.2svn is accepted. Signed-off-by: Fabian Deutsch <fabian.deutsch@gmx.de>
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 1d0afbea804..4f7cb97883d 100755 --- a/configure +++ b/configure @@ -497,7 +497,7 @@ then LLVM_VERSION=$($LLVM_CONFIG --version) case $LLVM_VERSION in - (3.1svn|3.1|3.0svn|3.0) + (3.2svn|3.2|3.1svn|3.1|3.0svn|3.0) msg "found ok version of LLVM: $LLVM_VERSION" ;; (*) |
