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

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/ac93252ebbf0ca0712fb6ac528aadd8991937c19">https://github.com/macports/macports-ports/commit/ac93252ebbf0ca0712fb6ac528aadd8991937c19</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 ac93252ebbf mips-elf-gcc: map arm64->aarch64 for configure
</span>ac93252ebbf is described below

<span style='display:block; white-space:pre;color:#808000;'>commit ac93252ebbf0ca0712fb6ac528aadd8991937c19
</span>Author: Joshua Root <jmr@macports.org>
AuthorDate: Wed Mar 29 18:38:43 2023 +1100

<span style='display:block; white-space:pre;color:#404040;'>    mips-elf-gcc: map arm64->aarch64 for configure
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Fixes: https://trac.macports.org/ticket/67162
</span>---
 cross/mips-elf-gcc/Portfile | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/cross/mips-elf-gcc/Portfile b/cross/mips-elf-gcc/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 7675acd39ad..c60e9ef7302 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/cross/mips-elf-gcc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/cross/mips-elf-gcc/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -12,7 +12,6 @@ description       gcc cross-compilers for mips-elf, with newlib runtime library.
</span> long_description  gnu compilers collection (including c++, fortran and objc) for \
                                        mips-elf, with newlib runtime library.
 homepage                       https://gcc.gnu.org/
<span style='display:block; white-space:pre;background:#ffe0e0;'>-platforms               darwin
</span> categories        cross devel
 license                GPL-2+
 maintainers            nomaintainer
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -90,13 +89,9 @@ configure.cxx_archflags
</span> configure.objc_archflags
 configure.ld_archflags
 platform darwin {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        if {${build_arch} eq "i386"} {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-           configure.args-append --build=i686-apple-${os.platform}${os.version} \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                     --host=i686-apple-${os.platform}${os.version}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-   } else {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-           configure.args-append --build=${build_arch}-apple-${os.platform}${os.version} \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                                                     --host=${build_arch}-apple-${os.platform}${os.version}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-   }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    set arch_for_configure [string map {arm64 aarch64 i386 i686} ${configure.build_arch}]
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.args-append --build=${arch_for_configure}-apple-${os.platform}${os.version} \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                          --host=${arch_for_configure}-apple-${os.platform}${os.version}
</span> }
 
 build.dir       ${workpath}/build
</pre><pre style='margin:0'>

</pre>