Changeset 106987 in vbox for trunk/Makefile.kmk
- Timestamp:
- Nov 13, 2024 2:47:57 PM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.kmk
r106919 r106987 348 348 # 349 349 if defined(VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER) \ 350 && ( !defined(VBOX_WITH_COMBINED_PACKAGE) \ 351 || "$(KBUILD_TARGET_ARCH)" == "amd64" ) 350 && (!defined(VBOX_WITH_COMBINED_PACKAGE) || "$(KBUILD_TARGET_ARCH)" == "amd64") 352 351 INSTALLS += buildserver-additions 353 352 buildserver-additions_INST = $(INST_ADDITIONS_ISO) … … 1087 1086 # Combined package build (windows only). 1088 1087 # 1089 # The combined package is created by the x86 environment, so we do the amd641088 # The combined package is created by the amd64 environment, so we do the arm64 1090 1089 # packaging in the build phase since it's just a few very slow jobs. We hold 1091 # back the x86build until the amd64 packaging starts, to try encourage1090 # back the amd64 build until the amd64 packaging starts, to try encourage 1092 1091 # parallel execution. 1093 1092 # 1094 1093 # Note! VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER=1 is required because the additions 1095 # packing must be done in amd64 mode as it picks files from the x86build.1094 # packing must be done in amd64 mode as it picks files from the arm64 build. 1096 1095 # 1097 1096 … … 1103 1102 combined-package-fetch: 1104 1103 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 1105 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH= x861104 + $(KMK) -C tools $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=arm64 1106 1105 1107 1106 combined-package-build-amd64: 1108 1107 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 1109 1108 1110 combined-package-build-a md64-packing: combined-package-build-amd641111 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd641112 1113 combined-package-build- x86: combined-package-build-amd641114 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=x861115 1116 combined-package-build: combined-package-build-a md64-packing combined-package-build-x861109 combined-package-build-arm64: 1110 + $(KMK) docs all $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=arm64 1111 1112 combined-package-build-arm64-packing: combined-package-build-arm64 1113 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=arm64 1114 1115 combined-package-build: combined-package-build-arm64-packing combined-package-build-amd64 1117 1116 1118 1117 combined-package-packing: 1119 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH= x861118 + $(KMK) packing $(VBOX_COMBINED_PACKAGE_DEFS) KBUILD_TARGET_ARCH=amd64 1120 1119 1121 1120
Note:
See TracChangeset
for help on using the changeset viewer.