Hi,
File cpus.c seems to be missing sigbus_reraise() on non-Linux platforms.
The following patch fixes building qemu on Solaris 11 Express (SPARC).
Regards
Palle
Signed-off-by: Palle Lyckegaard <pa...@lyckegaard.dk>
---
cpus.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/cpus.c b/cpus.c
index 077729c..02ba1be 100644
--- a/cpus.c
+++ b/cpus.c
@@ -250,6 +250,11 @@ static void qemu_init_sigbus(void)
static void qemu_init_sigbus(void)
{
}
+
+static void sigbus_reraise(void)
+{
+}
+
#endif /* !CONFIG_LINUX */
#ifndef _WIN32
--
1.5.6.5