File: 64-bit.patch

package info (click to toggle)
cctools 1%3A7.15.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 40,008 kB
  • sloc: ansic: 117,215; python: 30,569; cpp: 20,301; sh: 13,834; perl: 4,056; xml: 3,688; makefile: 1,502
file content (26 lines) | stat: -rw-r--r-- 730 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
@@ -70,6 +70,9 @@
 	POWER\ MACINTOSH)
 	BUILD_CPU=POWERPC
 	;;
+        PPC64LE)
+	BUILD_CPU=PPC64
+	;;   
 esac
 
 if [ "$BUILD_CPU" = X86_64 -a "$BUILD_SYS" = LINUX -a "$CONDA_BUILD_CROSS_COMPILATION" != 1 ]
@@ -480,7 +483,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