File tree Expand file tree Collapse file tree 2 files changed +1
-32
lines changed Expand file tree Collapse file tree 2 files changed +1
-32
lines changed Original file line number Diff line number Diff line change @@ -1028,37 +1028,6 @@ if [ -n "$CFG_ENABLE_CLANG" ]
10281028then
10291029 case " $CC " in
10301030 (' ' |* clang)
1031- CFG_CLANG_REPORTED_VERSION=$( $CFG_CC --version | grep version)
1032-
1033- if echo $CFG_CLANG_REPORTED_VERSION | grep -q " (based on LLVM " ; then
1034- CFG_CLANG_VERSION=$( echo $CFG_CLANG_REPORTED_VERSION | sed ' s/.*(based on LLVM \(.*\))/\1/' )
1035- elif echo $CFG_CLANG_REPORTED_VERSION | grep -q " Apple LLVM" ; then
1036- CFG_OSX_CLANG_VERSION=$( echo $CFG_CLANG_REPORTED_VERSION | sed ' s/.*version \(.*\) .*/\1/' )
1037- else
1038- CFG_CLANG_VERSION=$( echo $CFG_CLANG_REPORTED_VERSION | sed ' s/.*version \(.*\) .*/\1/' )
1039- fi
1040-
1041- if [ -n " $CFG_OSX_CLANG_VERSION " ]
1042- then
1043- case $CFG_OSX_CLANG_VERSION in
1044- (7.0* | 7.1* | 7.2* | 7.3* )
1045- step_msg " found ok version of APPLE CLANG: $CFG_OSX_CLANG_VERSION "
1046- ;;
1047- (* )
1048- err " bad APPLE CLANG version: $CFG_OSX_CLANG_VERSION , need >=7.0"
1049- ;;
1050- esac
1051- else
1052- case $CFG_CLANG_VERSION in
1053- (3.2* | 3.3* | 3.4* | 3.5* | 3.6* | 3.7* | 3.8* | 3.9* )
1054- step_msg " found ok version of CLANG: $CFG_CLANG_VERSION "
1055- ;;
1056- (* )
1057- err " bad CLANG version: $CFG_CLANG_VERSION , need >=3.0svn"
1058- ;;
1059- esac
1060- fi
1061-
10621031 if [ -z " $CC " ]
10631032 then
10641033 CFG_CC=" clang"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ CFG_RELEASE_NUM=1.10.0
1818# An optional number to put after the label, e.g. '.2' -> '-beta.2'
1919# NB Make sure it starts with a dot to conform to semver pre-release
2020# versions (section 9)
21- CFG_PRERELEASE_VERSION =.2
21+ CFG_PRERELEASE_VERSION =.3
2222
2323# Append a version-dependent hash to each library, so we can install different
2424# versions in the same place
You can’t perform that action at this time.
0 commit comments