build_compiler_rt: Support Clang 9.0

This commit is contained in:
Thomas Pöchtrager 2019-09-14 11:33:37 +02:00
parent bec05f4602
commit 6d98ef2979

View File

@ -48,8 +48,9 @@ case $CLANG_VERSION in
6.0* ) BRANCH=release_60; USE_CMAKE=1; ;;
7.* ) BRANCH=release_70; USE_CMAKE=1; ;;
8.* ) BRANCH=release_80; USE_CMAKE=1; ;;
9.* ) BRANCH=master; USE_CMAKE=1; ;;
* ) echo "Unsupported Clang version, must be >= 3.2 and <= 9.0" 1>&2; exit 1;
9.* ) BRANCH=release_90; USE_CMAKE=1; ;;
10.* ) BRANCH=master; USE_CMAKE=1; ;;
* ) echo "Unsupported Clang version, must be >= 3.2 and <= 10.0" 1>&2; exit 1;
esac
if [ $(osxcross-cmp $CLANG_VERSION ">=" 3.5) -eq 1 ]; then