Merge pull request #341 from akien-mga/compiler_rt-fix-clang-14-target-branch

compiler_rt: Switch Clang 14 version to release/14.x since it's stable
This commit is contained in:
Thomas Pöchtrager 2022-06-06 15:40:08 +02:00 committed by GitHub
commit 9643e9a05e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,9 @@ case $CLANG_VERSION in
11.* ) BRANCH=release/11.x; USE_CMAKE=1; ;;
12.* ) BRANCH=release/12.x; USE_CMAKE=1; ;;
13.* ) BRANCH=release/13.x; USE_CMAKE=1; ;;
14.* ) BRANCH=main; USE_CMAKE=1; ;;
* ) echo "Unsupported Clang version, must be >= 3.2 and <= 14.0" 1>&2; exit 1;
14.* ) BRANCH=release/14.x; USE_CMAKE=1; ;;
15.* ) BRANCH=main; USE_CMAKE=1; ;;
* ) echo "Unsupported Clang version, must be >= 3.2 and <= 15.0" 1>&2; exit 1;
esac
if [ $(osxcross-cmp $CLANG_VERSION ">=" 3.5) -eq 1 ]; then