Changeset 2422 in vbox for trunk/src/recompiler/InnoTek
- Timestamp:
- Apr 30, 2007 12:03:47 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20831
- Location:
- trunk/src/recompiler/InnoTek
- Files:
-
- 1 deleted
- 3 edited
- 5 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/InnoTek/Makefile.kmk
r1 r2422 18 18 DEPTH = ../../.. 19 19 include $(PATH_KBUILD)/up.kmk 20 -
trunk/src/recompiler/InnoTek/config-host.h
r1 r2422 1 /* $Id$ */ 1 2 /** @file 2 3 * Innotek Host Config - Maintained by hand … … 19 20 */ 20 21 21 #define HOST_I386 1 22 #ifdef __WIN32__ 23 # define CONFIG_WIN32 1 24 #elif defined(__OS2__) 25 # define CONFIG_OS2 26 #elif defined(__DARWIN__) 27 # define CONFIG_DARWIN 22 23 #if defined(__amd64__) || defined(HOST_X86_64) /* latter, for dyngen on win64. */ 24 # define HOST_X86_64 1 25 # define HOST_LONG_BITS 64 28 26 #else 29 # define HAVE_BYTESWAP_H 1 27 # define HOST_I386 1 28 # define HOST_LONG_BITS 32 29 # ifdef __WIN32__ 30 # define CONFIG_WIN32 1 31 # elif defined(__OS2__) 32 # define CONFIG_OS2 33 # elif defined(__DARWIN__) 34 # define CONFIG_DARWIN 35 # elif defined(__FREEBSD__) || defined(__NETBSD__) || defined(__OPENBSD__) 36 /*# define CONFIG_BSD*/ 37 # elif defined(__SOLARIS__) 38 /*# define CONFIG_SUN*/ 39 # elif !defined(IPRT_NO_CRT) 40 # define HAVE_BYTESWAP_H 1 41 # endif 30 42 #endif 31 #define CONFIG_SOFTMMU 1 43 #define QEMU_VERSION "0.8.1" 44 #define CONFIG_UNAME_RELEASE "" 45 #define CONFIG_QEMU_SHAREDIR "." 32 46 33 #define CONFIG_SDL 134 #define CONFIG_SLIRP 135 36 #ifdef __LINUX__37 #define CONFIG_GDBSTUB 138 #endif39 /* #define HAVE_GPROF 1 */40 /* #define CONFIG_STATIC 1 */41 #define QEMU_VERSION "0.6.1"42 #define CONFIG_QEMU_SHAREDIR "." -
trunk/src/recompiler/InnoTek/config.h
r1 r2422 1 /* $Id$ */ 1 2 /** @file 2 3 * Innotek Config - Maintained by hand … … 24 25 #define TARGET_I386 1 25 26 #define CONFIG_SOFTMMU 1 27
Note:
See TracChangeset
for help on using the changeset viewer.