<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/bafb66e16d5ed7e0b3b70b1f1caf82a5b3068463">https://github.com/macports/macports-ports/commit/bafb66e16d5ed7e0b3b70b1f1caf82a5b3068463</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 bafb66e  clang-7.0: fix build on darwin 14 and less
</span>bafb66e is described below

<span style='display:block; white-space:pre;color:#808000;'>commit bafb66e16d5ed7e0b3b70b1f1caf82a5b3068463
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Sun Sep 30 10:14:25 2018 -0700

<span style='display:block; white-space:pre;color:#404040;'>    clang-7.0: fix build on darwin 14 and less
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    XRAY currently does not build on these systesm due to the
</span><span style='display:block; white-space:pre;color:#404040;'>    issues mentioned in the Portfile
</span><span style='display:block; white-space:pre;color:#404040;'>    closes: https://trac.macports.org/ticket/57130
</span>---
 lang/llvm-7.0/Portfile | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/llvm-7.0/Portfile b/lang/llvm-7.0/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index b511a3b..ff74f12 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/llvm-7.0/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/llvm-7.0/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -268,11 +268,18 @@ if {${subport} eq "llvm-${llvm_version}"} {
</span>         # libfuzzer uses TLS, so disable it on Snow Leopard and earlier
        configure.args-append \
            -DCOMPILER_RT_BUILD_LIBFUZZER=OFF
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        # XRAY uses TLS, so disable it on Snow Leopard and earlier
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    if {${os.major} <= 14} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # XRAY uses TLS, MAP_ANONYMOUS, and clock_gettime, so disable it
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # on systems that don't currently support these features
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # see https://trac.macports.org/ticket/57130
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # https://bugs.llvm.org/show_bug.cgi?id=38959
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        # https://bugs.llvm.org/show_bug.cgi?id=38958
</span>   configure.args-append \
            -DCOMPILER_RT_BUILD_XRAY=OFF
     }
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> } elseif {${subport} eq "lldb-${llvm_version}"} {
     #select.group        lldb
     #select.file         ${filespath}/mp-${subport}
</pre><pre style='margin:0'>

</pre>