CONFIG: update version information for llvm

This commit is contained in:
mark
2017-04-24 09:45:48 +02:00
parent d2da5b440e
commit c291d5742d
2 changed files with 11 additions and 7 deletions

View File

@ -352,6 +352,7 @@ The minimum CMake requirements for building various components.
3.3 ParaView-5.2.0
3.3 ParaView-5.3.0
3.4.3 llvm-3.9.1
3.4.3 llvm-4.0.0
3.5 ParaView-5.1.0
@ -384,8 +385,8 @@ The minimum gcc/g++ requirements for building various components.
[link clang]: http://llvm.org/releases/3.7.1/cfe-3.7.1.src.tar.xz
[link llvm]: http://llvm.org/releases/3.7.1/llvm-3.7.1.src.tar.xz
[newer clang]: http://llvm.org/releases/3.9.1/cfe-3.9.1.src.tar.xz
[newer llvm]: http://llvm.org/releases/3.9.1/llvm-3.9.1.src.tar.xz
[newer clang]: http://llvm.org/releases/4.0.0/cfe-4.0.0.src.tar.xz
[newer llvm]: http://llvm.org/releases/4.0.0/llvm-4.0.0.src.tar.xz
<!-- parallel -->

View File

@ -32,15 +32,15 @@
# - Ensure that you always use matching versions between llvm and clang.
# - LLVM components such as clang reside in the LLVM tools/ subdirectory
#
# For example, when building from tar files (version 3.8.0)
# For example, when building from tar files (version 4.0.0)
#
# 1) Unpack LLVM:
# tar -xJvf llvm-3.8.0.src.tar.xz
# mv llvm-3.8.0.src llvm-3.8.0
# tar -xJf llvm-4.0.0.src.tar.xz
# mv llvm-4.0.0.src llvm-4.0.0
#
# 2) Unpack Clang (also know as cfe):
# tar -xJvf cfe-3.8.0.src.tar.xz
# mv cfe-3.8.0.src llvm-3.8.0/tools/clang
# tar -xJf cfe-4.0.0.src.tar.xz
# mv cfe-4.0.0.src llvm-4.0.0/tools/clang
#
# ----------------------------------------------
# NO USER-CONFIGURABLE SETTINGS WITHIN THIS FILE
@ -101,6 +101,9 @@ do
llvm-[0-9]* | llvm-svn*)
llvmPACKAGE="${1%%/}"
;;
[1-9]*)
llvmPACKAGE="llvm-${1%%/}"
;;
*)
die "unknown option/argument: '$1'"
;;