From: malc <av1474@comtv.ru>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6293] Fix building on PPC64
Date: Wed, 14 Jan 2009 10:14:32 +0000 [thread overview]
Message-ID: <E1LN2lc-0007Rd-8S@cvs.savannah.gnu.org> (raw)
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 other threads:[~2009-01-14 10:14 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LN2lc-0007Rd-8S@cvs.savannah.gnu.org \
--to=av1474@comtv.ru \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).