- Timestamp:
- Apr 30, 2007 12:46:49 PM (18 years ago)
- Location:
- trunk/src/recompiler
- Files:
-
- 1 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Makefile.kmk
r2422 r2427 214 214 target-i386/op.c_CFLAGS = -O2 -fno-strict-aliasing -fomit-frame-pointer -falign-functions=0 -fno-reorder-blocks -fno-optimize-sibling-calls 215 215 target-i386/op.c_CFLAGS.x86 = -fno-gcse -fno-instrument-functions -mpreferred-stack-boundary=2 216 target-i386/op.c_CFLAGS.darwin.x86 = -m128bit-long-double -mpreferred-stack-boundary=4 ## @todo This means we can't use staged/op-elf-x86.s...216 target-i386/op.c_CFLAGS.darwin.x86 = -m128bit-long-double -mpreferred-stack-boundary=4 217 217 target-i386/helper.c_CFLAGS.x86 = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-gcse 218 218 cpu-exec.c_CFLAGS.x86 = -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-gcse … … 283 283 VBoxREMImp_LDFLAGS.l4 = -T$(L4_LIBDIR)/../main_rel.ld -nostdlib 284 284 285 $(PATH_TARGET)/VBoxREMImp.c: VBoxREM.def deftoimp.sed | $(call DIRDEP,$(PATH_TARGET))285 $(PATH_TARGET)/VBoxREMImp.c: VBoxREM.def InnoTek/deftoimp.sed | $(call DIRDEP,$(PATH_TARGET)) 286 286 $(MKDIR) -p $(PATH_TARGET) 287 $(SED) -f deftoimp.sed VBoxREM.def > [email protected]287 $(SED) -f InnoTek/deftoimp.sed VBoxREM.def > [email protected] 288 288 $(MV) -f [email protected] $@ 289 289 … … 369 369 $(PATH_$(REM_MOD))/op.S: \ 370 370 target-i386/op.c \ 371 staged/op-elf-$(BUILD_TARGET_ARCH).S \372 op-validate.sed \373 op-darwin.sed \374 op-undefined.lst \371 InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S \ 372 InnoTek/op-validate.sed \ 373 InnoTek/op-darwin.sed \ 374 InnoTek/op-undefined.lst \ 375 375 Makefile.kmk \ 376 376 $(comp-cmds COMPILE_OP_CMDS,COMPILE_OP_CMDS_PREV,FORCE) \ … … 389 389 else \ 390 390 $(ECHO_EXT) "Using staged op.S [gcc v$${major_ver}.$${minor_ver}.$${bugfix_ver}]" && \ 391 $(CP_EXT) -f staged/op-elf-$(BUILD_TARGET_ARCH).S [email protected]; \391 $(CP_EXT) -f InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S [email protected]; \ 392 392 fi 393 393 else 394 $(CP) staged/op-elf-$(BUILD_TARGET_ARCH).S [email protected]395 endif 396 $(SED) -f op-validate.sed [email protected]394 $(CP) InnoTek/staged-op-elf-$(BUILD_TARGET_ARCH).S [email protected] 395 endif 396 $(SED) -f InnoTek/op-validate.sed [email protected] 397 397 ifeq ($(BUILD_TARGET),darwin) 398 $(SED) -f op-darwin.sed [email protected] > [email protected]399 $(SED) -e 's/^\(.*\)$$/#define \1 _\1/' op-undefined.lst > [email protected]398 $(SED) -f InnoTek/op-darwin.sed [email protected] > [email protected] 399 $(SED) -e 's/^\(.*\)$$/#define \1 _\1/' InnoTek/op-undefined.lst > [email protected] 400 400 $(CAT_EXT) [email protected] >> [email protected] 401 401 endif
Note:
See TracChangeset
for help on using the changeset viewer.