[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [patch] get parts of darwin-user compiling again
From: |
C . W . Betts |
Subject: |
[Qemu-devel] [patch] get parts of darwin-user compiling again |
Date: |
Sun, 26 Oct 2008 16:05:27 -0600 |
this patch makes it so that some parts of the darwin-user compiles.
Inspiration taken from both the BSD and Linux usermode emulation:
Index: darwin-user/qemu.h
===================================================================
--- darwin-user/qemu.h (revision 5544)
+++ darwin-user/qemu.h (working copy)
@@ -6,6 +6,26 @@
#include "cpu.h"
+#ifdef TARGET_ABI32
+typedef uint32_t abi_ulong;
+typedef int32_t abi_long;
+#define TARGET_ABI_FMT_lx "%08x"
+#define TARGET_ABI_FMT_ld "%d"
+#define TARGET_ABI_FMT_lu "%u"
+#define TARGET_ABI_BITS 32
+#else
+typedef target_ulong abi_ulong;
+typedef target_long abi_long;
+#define TARGET_ABI_FMT_lx TARGET_FMT_lx
+#define TARGET_ABI_FMT_ld TARGET_FMT_ld
+#define TARGET_ABI_FMT_lu TARGET_FMT_lu
+#define TARGET_ABI_BITS TARGET_LONG_BITS
+/* for consistency, define ABI32 too */
+#if TARGET_ABI_BITS == 32
+#define TARGET_ABI32 1
+#endif
+#endif
+
#include "thunk.h"
#include "gdbstub.h"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-devel] [patch] get parts of darwin-user compiling again,
C . W . Betts <=