We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef01d47 commit 7cb9967Copy full SHA for 7cb9967
1 file changed
eng/common/native/init-compiler.sh
@@ -50,8 +50,8 @@ if [[ -z "$CLR_CC" ]]; then
50
# Set default versions
51
if [[ -z "$majorVersion" ]]; then
52
# note: gcc (all versions) and clang versions higher than 6 do not have minor version in file name, if it is zero.
53
- if [[ "$compiler" == "clang" ]]; then versions=( 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5 )
54
- elif [[ "$compiler" == "gcc" ]]; then versions=( 11 10 9 8 7 6 5 4.9 ); fi
+ if [[ "$compiler" == "clang" ]]; then versions=( 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5 )
+ elif [[ "$compiler" == "gcc" ]]; then versions=( 12 11 10 9 8 7 6 5 4.9 ); fi
55
56
for version in "${versions[@]}"; do
57
parts=(${version//./ })
0 commit comments