Changeset 26523 in vbox
- Timestamp:
- Feb 15, 2010 2:18:13 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r26458 r26523 2169 2169 endif 2170 2170 TEMPLATE_VBoxRc_LIBS = \ 2171 $(PATH_SDK_W2K3DDKX86_LIB)/int64.lib 2171 $(PATH_SDK_W2K3DDKX86_LIB)/int64.lib \ 2172 $(PATH_LIB)/RuntimeRCStub$(VBOX_SUFF_LIB) 2172 2173 TEMPLATE_VBoxRc_POST_CMDS = $(VBOX_SIGN_IMAGE_CMDS) 2173 2174 endif # pe … … 2287 2288 TEMPLATE_VBoxR0_CFLAGS = $(TEMPLATE_VBoxR0_CXXFLAGS) 2288 2289 TEMPLATE_VBoxR0_LDFLAGS = -Driver -Subsystem:NATIVE -Incremental:NO -Align:64 -MapInfo:Exports -NoD $(VBOX_VCC_WERR) 2290 TEMPLATE_VBoxR0_LIBS = \ 2291 $(PATH_LIB)/RuntimeR0Stub$(VBOX_SUFF_LIB) 2289 2292 TEMPLATE_VBoxR0_LIBS.x86 = \ 2290 2293 $(PATH_SDK_W2K3DDKX86_LIB)/int64.lib -
trunk/src/VBox/Devices/Makefile.kmk
r26473 r26523 616 616 endif 617 617 618 ifeq ($(VBOX_LDR_FMT32),pe)619 VBoxDDGC_LDFLAGS = -Entry:vgaMMIOWrite620 endif621 618 if1of ($(VBOX_LDR_FMT32), pe lx) 622 619 VBoxDDGC_LIBS = \ … … 717 714 endif 718 715 719 ifeq ($(VBOX_LDR_FMT32),pe)720 VBoxDDR0_LDFLAGS = -Entry:vgaMMIOWrite721 endif722 716 if1of ($(VBOX_LDR_FMT), pe lx) 723 717 VBoxDDR0_LIBS = $(PATH_LIB)/VMMR0Imp$(VBOX_SUFF_LIB) … … 736 730 VBoxDD2GC_SOURCES = \ 737 731 PC/DevAPIC.cpp 738 ifeq ($(VBOX_LDR_FMT32),pe)739 VBoxDD2GC_LDFLAGS = -Entry:apicMMIOWrite740 endif741 732 if1of ($(VBOX_LDR_FMT32), pe lx) 742 733 VBoxDD2GC_LIBS = \ … … 756 747 VBoxDD2R0_SOURCES = \ 757 748 PC/DevAPIC.cpp 758 ifeq ($(VBOX_LDR_FMT),pe)759 VBoxDD2R0_LDFLAGS = -Entry:apicMMIOWrite760 endif761 749 if1of ($(VBOX_LDR_FMT), pe lx) 762 750 VBoxDD2R0_LIBS = $(PATH_LIB)/VMMR0Imp$(VBOX_SUFF_LIB) -
trunk/src/VBox/Runtime/Makefile.kmk
r26520 r26523 58 58 59 59 BLDPROGS += uniread 60 LIBRARIES += RuntimeR3 RuntimeR0 Runtime EFCPP RuntimeR3NoCRTGCC60 LIBRARIES += RuntimeR3 RuntimeR0 RuntimeR0Stub RuntimeEFCPP RuntimeR3NoCRTGCC 61 61 ifdef VBOX_WITH_RAW_MODE 62 LIBRARIES += RuntimeRC 62 LIBRARIES += RuntimeRC RuntimeRCStub 63 63 endif 64 64 ifdef VBOX_WITH_VBOXDRV … … 1109 1109 1110 1110 # 1111 # RuntimeR0 - Ring 0 library for VMMR0.1111 # RuntimeR0 - Ring-0 library for VMMR0. 1112 1112 # 1113 1113 RuntimeR0_TEMPLATE = VBoxR0 … … 1202 1202 1203 1203 # 1204 # RuntimeR0Drv - Ring0 library for host drivers. 1204 # RuntimeR0Stub - Ring-0 context startup stub for Windows. 1205 # 1206 RuntimeR0Stub_TEMPLATE = VBoxR0 1207 RuntimeR0Stub_SOURCES.win = \ 1208 nt/NtProcessStartup-stub.cpp 1209 1210 1211 # 1212 # RuntimeR0Drv - Ring-0 library for host drivers. 1205 1213 # 1206 1214 RuntimeR0Drv_TEMPLATE = VBOXR0DRV … … 1639 1647 common/math/gcc/xordi3.c 1640 1648 endif 1649 1650 1651 # 1652 # RuntimeRCStub - Raw-mode context startup stub for Windows. 1653 # 1654 RuntimeRCStub_TEMPLATE = VBoxRc 1655 RuntimeRCStub_SOURCES.win = \ 1656 nt/NtProcessStartup-stub.cpp 1657 1658 1641 1659 endif # VBOX_WITH_RAW_MODE 1642 1660 -
trunk/src/VBox/VMM/Makefile.kmk
r26282 r26523 364 364 endif 365 365 366 ifeq ($(VBOX_LDR_FMT32),pe)367 VMMGC_LDFLAGS = -Entry:VMMGCEntry368 endif369 370 366 VMMGC_SOURCES = \ 371 367 VMMGC/VMMGC0.asm \ … … 466 462 VMMR0_DEFS.win.amd64 = VBOX_WITH_KERNEL_USING_XMM 467 463 468 ifeq ($(VBOX_LDR_FMT),pe)469 VMMR0_LDFLAGS = -Entry:VMMR0EntryEx470 endif471 464 ifeq ($(VBOX_LDR_FMT),elf) 472 465 VMMR0_LDFLAGS = -e VMMR0EntryEx
Note:
See TracChangeset
for help on using the changeset viewer.