Changeset 8174 in vbox
- Timestamp:
- Apr 18, 2008 7:26:36 PM (16 years ago)
- Location:
- trunk/src/recompiler
- Files:
-
- 4 edited
- 1 moved
-
Makefile.kmk (modified) (9 diffs)
-
Sun (moved) (moved from trunk/src/recompiler/InnoTek )
-
Sun/crt/stdio.h (modified) (1 diff, 1 prop)
-
VBoxRecompiler.c (modified) (1 diff)
-
target-i386/op.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Makefile.kmk
r8155 r8174 88 88 dyngen_CFLAGS += -Wno-missing-prototypes -Wno-missing-declarations 89 89 dyngen_INCS := \ 90 InnoTek\90 Sun \ 91 91 target-i386 \ 92 92 fpu \ … … 102 102 103 103 $(REM_MOD)_INCS = \ 104 InnoTek\105 InnoTek/crt\104 Sun \ 105 Sun/crt\ 106 106 target-i386 \ 107 107 fpu \ … … 121 121 target-i386/translate.c 122 122 $(REM_MOD)_SOURCES.debug = \ 123 InnoTek/testmath.c123 Sun/testmath.c 124 124 ifeq ($(filter-out win os2,$(BUILD_TARGET)),) 125 125 $(REM_MOD)_SOURCES += target-i386/op.c … … 147 147 # This doesn't fit in IPRT because it requires GAS and is LGPL. 148 148 $(REM_MOD)_SOURCES += \ 149 InnoTek/e_powl-$(BUILD_TARGET_ARCH).S149 Sun/e_powl-$(BUILD_TARGET_ARCH).S 150 150 151 151 ifeq ($(REM_MOD),VBoxREM) … … 258 258 testmath_LDFLAGS = -g 259 259 testmath_DEFS = MATHTEST_STANDALONE 260 testmath_SOURCES = InnoTek/testmath.c260 testmath_SOURCES = Sun/testmath.c 261 261 #testmath_SOURCES += $(PATH_LIB)/RuntimeR3NoCRTGCC$(VBOX_SUFF_LIB) 262 262 … … 298 298 VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib 299 299 300 $(PATH_TARGET)/VBoxREMImp.c: VBoxREM.def InnoTek/deftoimp.sed Makefile.kmk | $(call DIRDEP,$(PATH_TARGET))300 $(PATH_TARGET)/VBoxREMImp.c: VBoxREM.def Sun/deftoimp.sed Makefile.kmk | $(call DIRDEP,$(PATH_TARGET)) 301 301 $(call MSG_GENERATE,,$@) 302 302 $(QUIET)$(MKDIR) -p $(PATH_TARGET) … … 307 307 $(QUIET)$(APPEND) $@.tmp '#endif' 308 308 $(QUIET)$(APPEND) $@.tmp '' 309 $(QUIET)$(SED) -f InnoTek/deftoimp.sed VBoxREM.def >> $@.tmp309 $(QUIET)$(SED) -f Sun/deftoimp.sed VBoxREM.def >> $@.tmp 310 310 $(QUIET)$(MV) -f $@.tmp $@ 311 311 … … 391 391 $(PATH_$(REM_MOD))/op.S: \ 392 392 target-i386/op.c \ 393 InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S \394 InnoTek/op-validate.sed \395 InnoTek/op-darwin.sed \396 InnoTek/op-undefined.lst \393 Sun/staged-op-elf-$(BUILD_TARGET_ARCH).S \ 394 Sun/op-validate.sed \ 395 Sun/op-darwin.sed \ 396 Sun/op-undefined.lst \ 397 397 Makefile.kmk \ 398 398 $(comp-cmds COMPILE_OP_CMDS,COMPILE_OP_CMDS_PREV,FORCE) \ … … 411 411 else \ 412 412 $(ECHO_EXT) "Using staged op.S [gcc v$${major_ver}.$${minor_ver}.$${bugfix_ver}]" && \ 413 $(CP_EXT) -f InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S $@.tmp; \413 $(CP_EXT) -f Sun/staged-op-elf-$(BUILD_TARGET_ARCH).S $@.tmp; \ 414 414 fi 415 415 else 416 $(CP) InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S $@.tmp417 endif 418 $(SED) -f InnoTek/op-validate.sed $@.tmp416 $(CP) Sun/staged-op-elf-$(BUILD_TARGET_ARCH).S $@.tmp 417 endif 418 $(SED) -f Sun/op-validate.sed $@.tmp 419 419 ifeq ($(BUILD_TARGET),darwin) 420 $(SED) -f InnoTek/op-darwin.sed $@.tmp > $@.tmp2421 $(SED) -e 's/^\(.*\)$$/#define \1 _\1/' InnoTek/op-undefined.lst > $@.tmp420 $(SED) -f Sun/op-darwin.sed $@.tmp > $@.tmp2 421 $(SED) -e 's/^\(.*\)$$/#define \1 _\1/' Sun/op-undefined.lst > $@.tmp 422 422 $(CAT_EXT) $@.tmp2 >> $@.tmp 423 423 endif -
trunk/src/recompiler/Sun/crt/stdio.h
-
Property svn:eol-style
set to
native
r8155 r8174 20 20 */ 21 21 22 #ifndef ___ InnoTek_stdio_h23 #define ___ InnoTek_stdio_h22 #ifndef ___Sun_stdio_h 23 #define ___Sun_stdio_h 24 24 25 25 #ifndef LOG_GROUP -
Property svn:eol-style
set to
-
trunk/src/recompiler/VBoxRecompiler.c
r8155 r8174 212 212 /* Instantiate the structure signatures. */ 213 213 #define REM_STRUCT_OP 0 214 #include " InnoTek/structs.h"214 #include "Sun/structs.h" 215 215 216 216 -
trunk/src/recompiler/target-i386/op.c
r6726 r8174 2582 2582 /* Instantiate the structure signatures. */ 2583 2583 # define REM_STRUCT_OP 1 2584 # include "../ InnoTek/structs.h"2585 #endif 2586 2584 # include "../Sun/structs.h" 2585 #endif 2586
Note:
See TracChangeset
for help on using the changeset viewer.

