<pre style='margin:0'>
Renee Otten (reneeotten) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/597266ae76464bb6070076d31e18c3f71f5b58a2">https://github.com/macports/macports-ports/commit/597266ae76464bb6070076d31e18c3f71f5b58a2</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 597266ae764 kokkos-devel: do not use aligned allocation on macOS <10.13 with Clang
</span>597266ae764 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 597266ae76464bb6070076d31e18c3f71f5b58a2
</span>Author: aeiouaeiouaeiouaeiouaeiouaeiou <aeioudev@outlook.com>
AuthorDate: Thu Jul 18 03:15:38 2024 +0300
<span style='display:block; white-space:pre;color:#404040;'> kokkos-devel: do not use aligned allocation on macOS <10.13 with Clang
</span>---
devel/kokkos/Portfile | 8 ++++++++
1 file changed, 8 insertions(+)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/kokkos/Portfile b/devel/kokkos/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 77257bbe8f0..b24d931aeb7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/kokkos/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/kokkos/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -27,6 +27,14 @@ subport kokkos-devel {
</span> size 2450033
github.tarball_from archive
github.livecheck.branch develop
<span style='display:block; white-space:pre;background:#e0ffe0;'>+ # Kokkos_HostSpace.cpp:79:11: error: aligned allocation function
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # of type 'void *(std::size_t, std::align_val_t, const std::nothrow_t &)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # noexcept' is only available on macOS 10.13 or newer
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ if {${os.platform} eq "darwin" && ${os.major} < 17} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ if {${configure.cxx_stdlib} eq "libc++"} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ configure.cxxflags-append -fno-aligned-allocation
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ }
</span> }
compiler.cxx_standard 2017
</pre><pre style='margin:0'>
</pre>