qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [6292] Do not rely on __powerpc__ being defined as a feature test macro
@ 2009-01-13 23:12 malc
       [not found] ` <40789D00-0F5D-4BA5-91D9-582FE3052E2A@hotmail.com>
  0 siblings, 1 reply; 2+ messages in thread
From: malc @ 2009-01-13 23:12 UTC (permalink / raw)
  To: qemu-devel

Revision: 6292
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6292
Author:   malc
Date:     2009-01-13 23:12:34 +0000 (Tue, 13 Jan 2009)

Log Message:
-----------
Do not rely on __powerpc__ being defined as a feature test macro

__powerpc__ is not defined on AIX and Darwin, Makefile.target adds
it to CPPFLAGS for target specific code which cache-utils are not.

Since there's not common definition which can safely be used on all
platforms use HOST_PPC provided by config-host.h

The problem was originally 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 21:09:18 UTC (rev 6291)
+++ trunk/cache-utils.c	2009-01-13 23:12:34 UTC (rev 6292)
@@ -1,6 +1,6 @@
 #include "cache-utils.h"
 
-#ifdef __powerpc__
+#ifdef HOST_PPC
 struct qemu_cache_conf qemu_cache_conf = {
     .dcache_bsize = 16,
     .icache_bsize = 16
@@ -68,4 +68,4 @@
 }
 #endif
 
-#endif /* __powerpc__ */
+#endif /* HOST_PPC */

Modified: trunk/cache-utils.h
===================================================================
--- trunk/cache-utils.h	2009-01-13 21:09:18 UTC (rev 6291)
+++ trunk/cache-utils.h	2009-01-13 23:12:34 UTC (rev 6292)
@@ -1,7 +1,9 @@
 #ifndef QEMU_CACHE_UTILS_H
 #define QEMU_CACHE_UTILS_H
 
-#ifdef __powerpc__
+#include "config-host.h"
+
+#ifdef HOST_PPC
 struct qemu_cache_conf {
     unsigned long dcache_bsize;
     unsigned long icache_bsize;

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-01-14  6:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13 23:12 [Qemu-devel] [6292] Do not rely on __powerpc__ being defined as a feature test macro malc
     [not found] ` <40789D00-0F5D-4BA5-91D9-582FE3052E2A@hotmail.com>
2009-01-14  6:22   ` C.W. Betts

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).