* [Qemu-devel] [6293] Fix building on PPC64
@ 2009-01-14 10:14 malc
0 siblings, 0 replies; only message in thread
From: malc @ 2009-01-14 10:14 UTC (permalink / raw)
To: qemu-devel
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;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-01-14 10:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-14 10:14 [Qemu-devel] [6293] Fix building on PPC64 malc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).