40 lines
1.0 KiB
Diff
40 lines
1.0 KiB
Diff
|
|
From 462a9ad554509e47f0f38c0aad6e19c9d4f83da6 Mon Sep 17 00:00:00 2001
|
||
|
|
From: mahailiang <mahailiang@uniontech.com>
|
||
|
|
Date: Tue, 3 Dec 2024 15:23:06 +0800
|
||
|
|
Subject: [PATCH] add sw_64 support
|
||
|
|
|
||
|
|
---
|
||
|
|
build/config.guess | 3 +++
|
||
|
|
build/config.sub | 1 +
|
||
|
|
2 files changed, 4 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/build/config.guess b/build/config.guess
|
||
|
|
index 354a8ccd..2a062362 100644
|
||
|
|
--- a/build/config.guess
|
||
|
|
+++ b/build/config.guess
|
||
|
|
@@ -1149,6 +1149,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/build/config.sub b/build/config.sub
|
||
|
|
index 9865d6ea..9245db77 100644
|
||
|
|
--- a/build/config.sub
|
||
|
|
+++ b/build/config.sub
|
||
|
|
@@ -1268,6 +1268,7 @@ case $cpu-$vendor in
|
||
|
|
| sparclite \
|
||
|
|
| sparcv8 | sparcv9 | sparcv9b | sparcv9v | sv1 | sx* \
|
||
|
|
| spu \
|
||
|
|
+ | sw_64 \
|
||
|
|
| tahoe \
|
||
|
|
| thumbv7* \
|
||
|
|
| tic30 | tic4x | tic54x | tic55x | tic6x | tic80 \
|
||
|
|
--
|
||
|
|
2.20.1
|
||
|
|
|