Skip to content

Commit a72ac96

Browse files
authored
Merge pull request #34589 from alexcrichton/beta-next
Backport #34383 and bump the beta version
2 parents 77c9c08 + 6e326e5 commit a72ac96

File tree

2 files changed

+1
-32
lines changed

2 files changed

+1
-32
lines changed

configure

-31
Original file line numberDiff line numberDiff line change
@@ -1028,37 +1028,6 @@ if [ -n "$CFG_ENABLE_CLANG" ]
10281028
then
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"

mk/main.mk

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)