https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=2138e8040baf931b666458396df9d3d153d92b39

commit 2138e8040baf931b666458396df9d3d153d92b39
Author:     Radek Bartoň <radek.bar...@microsoft.com>
AuthorDate: Thu Jun 5 11:44:23 2025 +0200
Commit:     Corinna Vinschen <cori...@vinschen.de>
CommitDate: Wed Jun 18 16:10:12 2025 +0200

    Cygwin: configure: allow configuring winsup for AArch64
    
    Signed-off-by: Radek Bartoň <radek.bar...@microsoft.com>

Diff:
---
 winsup/configure.ac | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/winsup/configure.ac b/winsup/configure.ac
index 9b9b59dbcb57..18adf3d97b3c 100644
--- a/winsup/configure.ac
+++ b/winsup/configure.ac
@@ -69,12 +69,14 @@ DLL_ENTRY="dll_entry"
 
 case "$target_cpu" in
    x86_64)     ;;
+   aarch64)    ;;
    *)          AC_MSG_ERROR([Invalid target processor "$target_cpu"]) ;;
 esac
 
 AC_SUBST(DLL_ENTRY)
 
 AM_CONDITIONAL(TARGET_X86_64, [test $target_cpu = "x86_64"])
+AM_CONDITIONAL(TARGET_AARCH64, [test $target_cpu = "aarch64"])
 
 AC_ARG_ENABLE(doc,
              [AS_HELP_STRING([--disable-doc], [do not build documentation])],,

Reply via email to