File tree 2 files changed +1
-32
lines changed
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" ]
1028
1028
then
1029
1029
case " $CC " in
1030
1030
(' ' |* 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
-
1062
1031
if [ -z " $CC " ]
1063
1032
then
1064
1033
CFG_CC=" clang"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ CFG_RELEASE_NUM=1.10.0
18
18
# An optional number to put after the label, e.g. '.2' -> '-beta.2'
19
19
# NB Make sure it starts with a dot to conform to semver pre-release
20
20
# versions (section 9)
21
- CFG_PRERELEASE_VERSION =.2
21
+ CFG_PRERELEASE_VERSION =.3
22
22
23
23
# Append a version-dependent hash to each library, so we can install different
24
24
# versions in the same place
You can’t perform that action at this time.
0 commit comments