- Timestamp:
- May 11, 2008 6:53:32 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30741
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/Makefile.kmk
r8760 r8761 4 4 # 5 5 # Cross building of the additions is generally done by remote building 6 # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting BUILD_TARGET6 # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting KBUILD_TARGET 7 7 # to the desired target. 8 8 # … … 13 13 # Building the linux additions as part of the l4 build is ok because 14 14 # l4 is built on a linux platform. This is why we have to check if 15 # BUILD_TARGET is l4 or linux in some places, though most of the magic15 # KBUILD_TARGET is l4 or linux in some places, though most of the magic 16 16 # is done in the templates (Config.kmk). 17 17 # -
trunk/src/VBox/Installer/linux/Makefile.kmk
r8760 r8761 188 188 $(QUIET)$(SED) -e "s;_VERSION_;${VBOX_VERSION_STRING};g" \ 189 189 -e "s;_BUILD_;$(shell date);g" \ 190 -e "s;_ARCH_;${ BUILD_TARGET_ARCH};g" \190 -e "s;_ARCH_;${KBUILD_TARGET_ARCH};g" \ 191 191 < install.sh > $(PATH_TARGET)/install/install.sh 192 192 $(QUIET)chmod 0744 $(PATH_TARGET)/install/install.sh -
trunk/src/VBox/Runtime/Makefile.kmk
r8760 r8761 535 535 # 536 536 # RuntimeGuestR3 - Guest Additions Runtime (static). 537 # (The BUILD_PLATFORMinheritance here is for l4 cross building the linux537 # (The KBUILD_HOST inheritance here is for l4 cross building the linux 538 538 # additions, while .x86 is for cross building x86 while targeting amd64.) 539 539 # … … 541 541 RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win) 542 542 RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS)) 543 RuntimeGuestR3_DEFS.$(KBUILD_TARGET) 543 RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET)) 544 544 RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST)) 545 545 RuntimeGuestR3_INCS := $(RuntimeR3_INCS) 546 RuntimeGuestR3_INCS.$(KBUILD_TARGET) 547 RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))546 RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET)) 547 RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST)) 548 548 RuntimeGuestR3_SOURCES := $(filter-out \ 549 549 common/time/timesupref.cpp \ … … 556 556 VBox/logbackdoor.cpp 557 557 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET)) 558 RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))559 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) 560 RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))558 RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST)) 559 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)) 560 RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH)) 561 561 RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).x86) 562 RuntimeGuestR3_SOURCES.$(KBUILD_HOST).x86 := $(RuntimeR3_SOURCES.$(KBUILD_HOST).x86)562 RuntimeGuestR3_SOURCES.$(KBUILD_HOST).x86 := $(RuntimeR3_SOURCES.$(KBUILD_HOST).x86) 563 563 564 564
Note:
See TracChangeset
for help on using the changeset viewer.