Skip to content

Commit

Permalink
Merge commit 'refs/pull/341/head' of github.com:tpoechtrager/osxcross
Browse files Browse the repository at this point in the history
compiler_rt: Switch Clang 14 version to release/14.x since it's stable tpoechtrager#341
  • Loading branch information
Nick Ma committed May 14, 2022
2 parents 41a39cb + d546138 commit c02342a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build_compiler_rt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c02342a

Please sign in to comment.