aboutsummaryrefslogtreecommitdiff
path: root/arch_init.h
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-08-14 22:17:36 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2012-08-15 13:26:03 -0500
commit76b64a7aa84965ee9c7594058a43b00c2a14c72e (patch)
treeee5e9b954e92ace0090d47aa811c76129da8e34f /arch_init.h
parentd1186a33efa74c91b01e1b5d9918c61d109f1b54 (diff)
win32: provide separate macros for weak decls and definitions
mingw32 seems to want the declaration to also carry the weak attribute. Strangely, gcc on Linux absolutely does not want the declaration to be marked as weak. This may not be the right fix, but it seems to do the trick. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'arch_init.h')
-rw-r--r--arch_init.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch_init.h b/arch_init.h
index 547f93cd1d..d9c572aee8 100644
--- a/arch_init.h
+++ b/arch_init.h
@@ -1,6 +1,8 @@
#ifndef QEMU_ARCH_INIT_H
#define QEMU_ARCH_INIT_H
+#include "qmp-commands.h"
+
enum {
QEMU_ARCH_ALL = -1,
QEMU_ARCH_ALPHA = 1,
@@ -32,4 +34,6 @@ int tcg_available(void);
int kvm_available(void);
int xen_available(void);
+CpuDefinitionInfoList GCC_WEAK_DECL *arch_query_cpu_definitions(Error **errp);
+
#endif