On 16 October 2016 at 01:20, Tobias Droste wrote:
> -if test -n "${LLVM_VERSION_MAJOR}"; then
> +if test "$LLVM_VERSION_MINOR" -lt 10; then
> LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}"
> else
> -LLVM_VERSION_INT=`echo $LLVM_VER
Consolidate the required LLVM versions at the top where the other
versions for dependencies are listed.
This also tries to get the patch version from the LLVM headers.
It defaults to 0 if it does not find it.
This is good enough since the patch version is in the header since
3.6.0 and the only dri