File: add-support-for-hppa.patch

package info (click to toggle)
tup 0.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,068 kB
  • sloc: ansic: 256,651; sh: 19,101; perl: 184; python: 67; lisp: 63; makefile: 56
file content (12 lines) | stat: -rw-r--r-- 456 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
diff -up ./src/tup/platform.c.org ./src/tup/platform.c
--- ./src/tup/platform.c.org	2023-02-04 22:10:17.296503537 +0000
+++ ./src/tup/platform.c	2023-02-04 22:11:02.672937681 +0000
@@ -66,6 +66,8 @@ const char *tup_arch = "arm";
 const char *tup_arch = "loongarch64";
 #elif __s390x__
 const char *tup_arch = "s390x";
+#elif __hppa__
+const char *tup_arch = "hppa";
 #else
 #error Unsupported cpu architecture. Please add support in tup/platform.c
 #endif