Allow use on high-end Power systems.
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Sat, 13 Jun 2009 04:59:14 +0000 (00:59 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Sat, 13 Jun 2009 04:59:14 +0000 (00:59 -0400)
Power systems self-identify as ppc64 rather than powerpc.  Add the
corresponding logic to the Makefile.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Makefile
Makefile64

index a67e5865debc941978c94559ae66890f0404a21d..e03d50936d4b9ce81dd6077f5deef02ba70767c1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,9 @@ endif
 ifeq ("${HOSTTYPE}","powerpc")
 ARCHTYPE=ppc
 endif
+ifeq ("${HOSTTYPE}","ppc64")
+ARCHTYPE=ppc
+endif
 
 #debug
 #CFLAGS=-Wall -g
index ab583be25ec0cd130fe725e41d652bfa345046fc..8d75cf389bc484a43f8769dcc416930b191bbf5b 100644 (file)
@@ -11,6 +11,9 @@ endif
 ifeq ("${HOSTTYPE}","powerpc")
 ARCHTYPE=ppc
 endif
+ifeq ("${HOSTTYPE}","ppc64")
+ARCHTYPE=ppc
+endif
 
 #debug
 #CFLAGS=-m64 -Wall -g
This page took 0.025092 seconds and 4 git commands to generate.