qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [6293] Fix building on PPC64


From: malc
Subject: [Qemu-devel] [6293] Fix building on PPC64
Date: Wed, 14 Jan 2009 10:14:32 +0000

Revision: 6293
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6293
Author:   malc
Date:     2009-01-14 10:14:31 +0000 (Wed, 14 Jan 2009)

Log Message:
-----------
Fix building on PPC64

HOST_PPC alone can't be a substitute for __powerpc__ which is defined
for both 32 and 64bit PPCs, so go with HOST_PPC || HOST_PPC64 instead.

Reported by C. W. Betts

Modified Paths:
--------------
    trunk/cache-utils.c
    trunk/cache-utils.h

Modified: trunk/cache-utils.c
===================================================================
--- trunk/cache-utils.c 2009-01-13 23:12:34 UTC (rev 6292)
+++ trunk/cache-utils.c 2009-01-14 10:14:31 UTC (rev 6293)
@@ -1,6 +1,6 @@
 #include "cache-utils.h"
 
-#ifdef HOST_PPC
+#if defined HOST_PPC || defined HOST_PPC64
 struct qemu_cache_conf qemu_cache_conf = {
     .dcache_bsize = 16,
     .icache_bsize = 16
@@ -68,4 +68,4 @@
 }
 #endif
 
-#endif /* HOST_PPC */
+#endif /* HOST_PPC || HOST_PPC64  */

Modified: trunk/cache-utils.h
===================================================================
--- trunk/cache-utils.h 2009-01-13 23:12:34 UTC (rev 6292)
+++ trunk/cache-utils.h 2009-01-14 10:14:31 UTC (rev 6293)
@@ -3,7 +3,7 @@
 
 #include "config-host.h"
 
-#ifdef HOST_PPC
+#if defined HOST_PPC || defined HOST_PPC64
 struct qemu_cache_conf {
     unsigned long dcache_bsize;
     unsigned long icache_bsize;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]