From eed11c607bc303b5f4071da697c456d67e2665a5 Mon Sep 17 00:00:00 2001 From: lvgenggeng Date: Mon, 17 Feb 2025 15:28:57 +0800 Subject: [PATCH] add sw_64 support Signed-off-by: lvgenggeng --- automake.spec | 5 ++++- config.guess | 3 +++ config.sub | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/automake.spec b/automake.spec index 8cae34b..70e1427 100644 --- a/automake.spec +++ b/automake.spec @@ -4,7 +4,7 @@ Name: automake Version: 1.17 -Release: 1 +Release: 2 Summary: A tool for automatically generating Makefile.in files License: GPLv2+ and GFDL-1.3-only and Public Domain and MIT URL: http://www.gnu.org/software/automake/ @@ -69,6 +69,9 @@ fi %{_mandir}/man1/* %changelog +* Mon Feb 17 2025 lvgenggeng 1.17-2 +- add sw_64 support + * Mon Jul 15 2024 fuanan - 1.17-1 - update version to 1.17 diff --git a/config.guess b/config.guess index f6d217a..816de19 100644 --- a/config.guess +++ b/config.guess @@ -1184,6 +1184,9 @@ EOF sparc:Linux:*:* | sparc64:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; + sw_64*:Linux:*:*) + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; tile*:Linux:*:*) GUESS=$UNAME_MACHINE-unknown-linux-$LIBC ;; diff --git a/config.sub b/config.sub index 2c6a07a..ae5dffd 100644 --- a/config.sub +++ b/config.sub @@ -1247,6 +1247,7 @@ case $cpu-$vendor in | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \ | spu \ + | sw_64 \ | tahoe \ | thumbv7* \ | tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \ -- Gitee