<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c53ce8cf0b09adfb215e60b75ad34411f9cc1904">https://github.com/macports/macports-ports/commit/c53ce8cf0b09adfb215e60b75ad34411f9cc1904</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new c53ce8cf0b0 clang compilers: Do not always allow clang-19 on macOS15
</span>c53ce8cf0b0 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit c53ce8cf0b09adfb215e60b75ad34411f9cc1904
</span>Author: Chris Jones <jonesc@macports.org>
AuthorDate: Thu Sep 19 10:58:26 2024 +0100
<span style='display:block; white-space:pre;color:#404040;'> clang compilers: Do not always allow clang-19 on macOS15
</span>---
_resources/port1.0/compilers/clang_compilers.tcl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/compilers/clang_compilers.tcl b/_resources/port1.0/compilers/clang_compilers.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index 74366e95fe2..2e27bc569a2 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/compilers/clang_compilers.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/compilers/clang_compilers.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -18,11 +18,11 @@ if {${os.major} >= 11 || ${os.platform} ne "darwin"} {
</span> # https://github.com/macports/macports-ports/pull/21051
# https://trac.macports.org/ticket/68640
if {${os.major} >= 22 || ${os.platform} ne "darwin"} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>- # Always allow clang-18+ on macOS15+ due to issues with clang-17 and older
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- # https://trac.macports.org/ticket/70779
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- if { ${os.platform} ne "darwin" || ${os.major} >= 24 || ${compiler.cxx_standard} >= 2017 } {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ if { ${os.platform} ne "darwin" || ${compiler.cxx_standard} >= 2017 } {
</span> lappend compilers macports-clang-19
}
<span style='display:block; white-space:pre;background:#e0ffe0;'>+ # Always allow clang-18 on macOS15+ due to issues with clang-17 and older
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # https://trac.macports.org/ticket/70779
</span> if { ${os.platform} ne "darwin" || ${os.major} >= 24 || ${compiler.cxx_standard} >= 2014 } {
lappend compilers macports-clang-18
}
</pre><pre style='margin:0'>
</pre>