[go: up one dir, main page]

File: 64-bit.patch

package info (click to toggle)
cctools 9.9-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 44,624 kB
  • sloc: ansic: 192,539; python: 20,827; cpp: 20,199; sh: 11,719; perl: 4,106; xml: 3,688; makefile: 1,224
file content (26 lines) | stat: -rw-r--r-- 664 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Detect more 64-bit systems
Author: Alastair McKinstry <mckinstry@debian.org>
Forwarded: no
Last-Updated: 2018-06-12

--- a/configure
+++ b/configure
@@ -69,6 +69,9 @@
 	POWER\ MACINTOSH)
 	BUILD_CPU=POWERPC
 	;;
+        PPC64LE)
+	BUILD_CPU=PPC64
+	;;   
 esac
 
 include_package_apps="apps"
@@ -474,7 +477,7 @@
 
 if [ "$globus_flavor" = auto ]
 then
-	if [ $BUILD_CPU = X86_64 -o $BUILD_CPU = AMD64 ]
+	if [ $BUILD_CPU = X86_64 -o $BUILD_CPU = AMD64 -o $BUILD_CPU = MIPS64 -o $BUILD_CPU = ARM64 -o $BUILD_CPU = PPC64 -o $BUILD_CPU = RISVCV64 -o $BUILD_CPU = SPARC64 -o $BUILD_CPU = ALPHA -o $BUILD_CPU = IA64 ]
 	then
 		globus_flavor=gcc64
 	else