Changeset 13649 in vbox
- Timestamp:
- Oct 29, 2008 12:27:45 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 38586
- Location:
- trunk
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r13632 r13649 1144 1144 LIB_VMM = $(PATH_BIN)/VBoxVMM.so 1145 1145 LIB_VMMGC = $(PATH_BIN)/VMMGC.gc 1146 LIB_REM = $(PATH_BIN)/VBoxREMImp.so 1146 ifdef VBOX_WITH_NEW_RECOMPILER 1147 LIB_REM = $(PATH_BIN)/VBoxREM.so 1148 else 1149 LIB_REM = $(PATH_BIN)/VBoxREMImp.so 1150 endif 1147 1151 LIB_XPCOM = $(PATH_BIN)/VBoxXPCOM.so 1148 1152 LIB_DDU = $(PATH_BIN)/VBoxDDU.so -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/md/_solaris64.cfg
r5300 r13649 52 52 #define PR_ALIGN_OF_INT64 8 53 53 #define PR_ALIGN_OF_DOUBLE 8 54 #elif defined(__x86_64) 54 #elif defined(__x86_64) || defined(__AMD64) 55 55 #define IS_LITTLE_ENDIAN 1 56 56 #undef IS_BIG_ENDIAN -
trunk/src/recompiler_new/Makefile.kmk
r13384 r13649 25 25 26 26 REM_MOD += VBoxREM 27 DLLS += VBoxREM 27 #DLLS += VBoxREM 28 IMPORT_LIBS += VBoxREM 28 29 29 30 DEFS += VBOX_WITH_NEW_RECOMPILER … … 106 107 $(REM_MOD)_LDFLAGS.solaris = -mimpure-text 107 108 108 $(REM_MOD)_LIBS = \109 #$(REM_MOD)_LIBS = \ 109 110 $(LIB_VMM) \ 110 $(LIB_RUNTIME)111 $(LIB_RUNTIME) 111 112 112 113 113 114 if1of ($(KBUILD_TARGET), linux darwin solaris) 114 $(REM_MOD)_DEFS.solaris +=115 115 # Extra flags for these source modules. 116 116 target-i386/op-helper.c_CFLAGS.x86 = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-gcse … … 133 133 134 134 include $(KBUILD_PATH)/subfooter.kmk 135 136 importlib: $(LIB_REM) -
trunk/src/recompiler_new/dyngen-exec.h
r13504 r13649 30 30 #define __DYNGEN_EXEC_H__ 31 31 32 #ifndef VBOX 32 33 /* prevent Solaris from trying to typedef FILE in gcc's 33 34 include/floatingpoint.h which will conflict with the … … 36 37 #define _FILEDEFED 37 38 #endif 39 #endif /* !VBOX */ 38 40 39 41 /* NOTE: standard headers should be used with special care at this
Note:
See TracChangeset
for help on using the changeset viewer.