<pre style='margin:0'>
Michael Dickens (michaelld) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/0bed15084ccb414de717b29a731c8003a9b0886c">https://github.com/macports/macports-ports/commit/0bed15084ccb414de717b29a731c8003a9b0886c</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 0bed150 OpenBLAS: block compilers that do not support thread-local storage
</span>0bed150 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 0bed15084ccb414de717b29a731c8003a9b0886c
</span>Author: Michael Dickens <michaelld@macports.org>
AuthorDate: Wed Feb 13 13:50:25 2019 -0500
<span style='display:block; white-space:pre;color:#404040;'> OpenBLAS: block compilers that do not support thread-local storage
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> This feature is checked for by OpenBLAS, so we require the compiler to support it.
</span>---
math/OpenBLAS/Portfile | 6 ++++++
1 file changed, 6 insertions(+)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/math/OpenBLAS/Portfile b/math/OpenBLAS/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index b7ecafc..1ee6358 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/math/OpenBLAS/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/math/OpenBLAS/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,6 +4,7 @@ PortSystem 1.0
</span> PortGroup github 1.0
PortGroup muniversal 1.0
PortGroup compilers 1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup compiler_blacklist_versions 1.0
</span>
name OpenBLAS
categories math science
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -17,6 +18,11 @@ platforms darwin
</span> # for the user processor
archive_sites
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# block compilers that do not support thread-local storage. it would
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# be better to use the cxx11 1.1 PG, but it conflicts with the
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# compilers 1.0 PG & so just block compilers instead.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.blacklist-append cc {*gcc-3*} {*gcc-4.[0-7]} {clang < 800.0.38}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> subport OpenBLAS-devel {}
if {[string first "-devel" $subport] > 0} {
</pre><pre style='margin:0'>
</pre>