<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/33cb6fc4379ccdc7e0a86f6823e1e3168d5b792e">https://github.com/macports/macports-ports/commit/33cb6fc4379ccdc7e0a86f6823e1e3168d5b792e</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 33cb6fc4379 clang compilers: Allow back clang-14 on macOS15+
</span>33cb6fc4379 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 33cb6fc4379ccdc7e0a86f6823e1e3168d5b792e
</span>Author: Chris Jones <jonesc@macports.org>
AuthorDate: Fri Sep 27 19:25:26 2024 +0100

<span style='display:block; white-space:pre;color:#404040;'>    clang compilers: Allow back clang-14 on macOS15+
</span>---
 _resources/port1.0/compilers/clang_compilers.tcl | 19 +++++++------------
 _resources/port1.0/group/compilers-1.0.tcl       |  4 ++--
 2 files changed, 9 insertions(+), 14 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 c4925da8cd8..a7cd983f4a1 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;'>@@ -32,18 +32,13 @@ if {${os.major} >= 11 || ${os.platform} ne "darwin"} {
</span> if { ${os.major} >= 10 || ${os.platform} ne "darwin"} {
     # On Darwin10 only use selection here if c++20+ required
     if { ${os.platform} ne "darwin" || ${os.major} >= 11 || ${compiler.cxx_standard} >= 2020 } {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        # These are allowed still on macOS15+
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        lappend compilers macports-clang-16 macports-clang-15
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        if { ${os.major} < 24 || ${os.platform} ne "darwin"} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            # Still have some issues on macOS15+ so disallow as 'official' fallbacks
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            lappend compilers macports-clang-14
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            if {${os.major} < 23 || ${os.platform} ne "darwin"} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                # https://trac.macports.org/ticket/68257
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                # Versions of clang older than clang-14 probably have build issues on
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                # macOS14+. Until resolved do not append to fallback list.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                # Unlikely they will ever really be needed here though.
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                lappend compilers macports-clang-13 macports-clang-12
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-            }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        lappend compilers macports-clang-16 macports-clang-15 macports-clang-14
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        if {${os.major} < 23 || ${os.platform} ne "darwin"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # https://trac.macports.org/ticket/68257
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # Versions of clang older than clang-14 probably have build issues on
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # macOS14+. Until resolved do not append to fallback list.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            # Unlikely they will ever really be needed here though.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            lappend compilers macports-clang-13 macports-clang-12
</span>         }
     }
 }
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/_resources/port1.0/group/compilers-1.0.tcl b/_resources/port1.0/group/compilers-1.0.tcl
</span><span style='display:block; white-space:pre;color:#808080;'>index eb1423e3a56..ee85618f2ca 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/_resources/port1.0/group/compilers-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/_resources/port1.0/group/compilers-1.0.tcl
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -193,11 +193,11 @@ if { ${os.major} >= 9 || ${os.platform} ne "darwin" } {
</span>     if { ${os.major} <= 23 || ${os.platform} ne "darwin"} {
         lappend clang_versions 11
         if { ${os.major} >= 11 || ${os.platform} ne "darwin"} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-            lappend clang_versions 12 13 14
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+            lappend clang_versions 12 13
</span>         }
     }
     if { ${os.major} >= 11 || ${os.platform} ne "darwin"} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        lappend clang_versions 15 16 17 18 19
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        lappend clang_versions 14 15 16 17 18 19
</span>     }
     if { ${os.major} >= 14 } {
         lappend clang_versions devel
</pre><pre style='margin:0'>

</pre>