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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/02db4e7a363141c67f384f1f29db50fb2f70e53e">https://github.com/macports/macports-ports/commit/02db4e7a363141c67f384f1f29db50fb2f70e53e</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 02db4e7a363 openssl3: blacklist Xcode clang < 1001; enable parallel builds - Fix build failures related to AVX-512 instruction set: Fixes: https://trac.macports.org/ticket/63622 - Parallel builds discussed via the following ticket: See: https://trac.macports.org/ticket/46719
</span>02db4e7a363 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 02db4e7a363141c67f384f1f29db50fb2f70e53e
</span>Author: Christopher Nielsen <mascguy@github.com>
AuthorDate: Wed Oct 13 15:35:02 2021 -0400

<span style='display:block; white-space:pre;color:#404040;'>    openssl3: blacklist Xcode clang < 1001; enable parallel builds
</span><span style='display:block; white-space:pre;color:#404040;'>    - Fix build failures related to AVX-512 instruction set:
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes: https://trac.macports.org/ticket/63622
</span><span style='display:block; white-space:pre;color:#404040;'>    - Parallel builds discussed via the following ticket:
</span><span style='display:block; white-space:pre;color:#404040;'>    See: https://trac.macports.org/ticket/46719
</span>---
 devel/openssl3/Portfile | 25 ++++++++++++++++++++++---
 1 file changed, 22 insertions(+), 3 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/openssl3/Portfile b/devel/openssl3/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index d6c2d406875..fce1d6fda4d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/openssl3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/openssl3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,6 +1,7 @@
</span> # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
 
 PortSystem          1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup           compiler_blacklist_versions 1.0
</span> PortGroup           muniversal 1.0
 
 set major_v         3
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -60,6 +61,27 @@ if {${os.platform} eq "darwin" && ${os.major} < 11} {
</span> set my_name         openssl-${major_v}
 set my_prefix       ${prefix}/libexec/${name}
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+#-----------------------------------------------------------------------------------------
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Fix compilation errors related to AVX-512 instruction set, occurring with Xcode Clang.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+# Ticket: https://trac.macports.org/ticket/63622
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#   crypto/bn/libcrypto-lib-rsaz-avx512.o crypto/bn/rsaz-avx512.s
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#   crypto/bn/rsaz-avx512.s:36:2: error: instruction requires: AVX-512 ISA AVX-512 VL ISA
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    vpxord %ymm0,%ymm0,%ymm0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    ^
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#   crypto/bn/rsaz-avx512.s:37:2: error: instruction requires: AVX-512 ISA AVX-512 VL ISA
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    vmovdqa64 %ymm0,%ymm1
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    ^
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#   crypto/bn/rsaz-avx512.s:38:2: error: instruction requires: AVX-512 ISA AVX-512 VL ISA
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    vmovdqa64 %ymm0,%ymm16
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    ^
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#   crypto/bn/rsaz-avx512.s:39:2: error: instruction requires: AVX-512 ISA AVX-512 VL ISA
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    vmovdqa64 %ymm0,%ymm17
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#    ^
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+#-----------------------------------------------------------------------------------------
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+compiler.blacklist-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                    {clang < 1001}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> configure.ccache    no
 configure.perl      /usr/bin/perl
 configure.cmd       ./Configure
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -110,9 +132,6 @@ if {(!${universal_possible} || ![variant_isset universal])
</span> }
 configure.universal_args-delete --disable-dependency-tracking
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-# Parallel builds don't quite work (#46719).
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-use_parallel_build  no
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-
</span> test.run            yes
 
 pre-destroot {
</pre><pre style='margin:0'>

</pre>