Skip to content

Commit

Permalink
Set max clang vresion to 14 on macos gt/eq 11 lt 22
Browse files Browse the repository at this point in the history
 The version was already limited to 16 due to ticket :
 https://trac.macports.org/ticket/68640
 On macos 10.13.6 the same error occurs as from use of clang version 15
 see ticket :
 https://trac.macports.org/ticket/69603
 Also as of use of clang 15 other build issues appear.
 see ticket:
 https://trac.macports.org/ticket/69594
 By setting the clang version to 14 all problems are gone.

 On branch master
 Changes to be committed:
	modified:   _resources/port1.0/compilers/clang_compilers.tcl
  • Loading branch information
Christophe Van Reusel committed Mar 29, 2024
1 parent be234fd commit 310a49b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _resources/port1.0/compilers/clang_compilers.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ if {${os.major} >= 11 || ${os.platform} ne "darwin"} {
lappend compilers macports-clang-17
}
}
lappend compilers macports-clang-16 \
macports-clang-15 \
macports-clang-14
lappend compilers macports-clang-14 \
macports-clang-13 \
macports-clang-12
if {${os.major} < 23 || ${os.platform} ne "darwin"} {
# https://trac.macports.org/ticket/68257
# Versions of clang older than clang-14 probably have build issues on
Expand Down

0 comments on commit 310a49b

Please sign in to comment.