Changeset 83944 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Apr 23, 2020 10:43:42 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137496
- Location:
- trunk/src/VBox/ValidationKit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/Config.kmk
r82985 r83944 110 110 # 111 111 # Template for building ring-3 programs for the Validation Kit. 112 # These programs can run on the host and may take advantage of the support 113 # driver when installed. 114 # 115 TEMPLATE_VBoxValidationKitR3Host = VBox Validation Kit ring-3 program, mainly host. 116 TEMPLATE_VBoxValidationKitR3Host_EXTENDS = VBoxValidationKitR3Base 117 TEMPLATE_VBoxValidationKitR3Host_EXTENDS_BY = appending 118 TEMPLATE_VBoxValidationKitR3Host_INST = $(INST_VALIDATIONKIT)$(KBUILD_TARGET)/$(KBUILD_TARGET_ARCH)/ 119 TEMPLATE_VBoxValidationKitR3Host_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL 120 TEMPLATE_VBoxValidationKitR3Host_DEFS = IN_RT_R3 IN_SUP_R3 121 TEMPLATE_VBoxValidationKitR3Host_LIBS.darwin = iconv 122 TEMPLATE_VBoxValidationKitR3Host_LIBS.freebsd = iconv 123 TEMPLATE_VBoxValidationKitR3Host_LIBS = \ 124 $(PATH_STAGE_LIB)/RuntimeR3$(VBOX_SUFF_LIB) \ 112 # When these programs run on the host they may take advantage of the 113 # support driver if installed. 114 # 115 TEMPLATE_VBoxValidationKitR3SupDrv = VBox Validation Kit ring-3 program, mainly host. 116 TEMPLATE_VBoxValidationKitR3SupDrv_EXTENDS = VBoxValidationKitR3 117 TEMPLATE_VBoxValidationKitR3SupDrv_EXTENDS_BY = appending 118 TEMPLATE_VBoxValidationKitR3SupDrv_DEFS = IN_SUP_R3 119 TEMPLATE_VBoxValidationKitR3SupDrv_LIBS = \ 125 120 $(PATH_STAGE_LIB)/SUPR3Static$(VBOX_SUFF_LIB) \ 126 121 $(PATH_STAGE_LIB)/RuntimeR3$(VBOX_SUFF_LIB) 127 ifeq ($(KBUILD_TARGET),solaris)128 TEMPLATE_VBoxValidationKitR3Host_LIBS += \129 kstat \130 nsl \131 contract132 if1of ($(KBUILD_TARGET_ARCH), amd64 x86)133 TEMPLATE_VBoxValidationKitR3Host_LIBS += \134 smbios135 endif136 endif137 122 138 123 # -
trunk/src/VBox/ValidationKit/utils/misc/Makefile.kmk
r82968 r83944 29 29 30 30 PROGRAMS += LoadGenerator 31 LoadGenerator_TEMPLATE = VBoxValidationKitR3 Host31 LoadGenerator_TEMPLATE = VBoxValidationKitR3SupDrv 32 32 LoadGenerator_SOURCES = loadgenerator.cpp 33 33
Note:
See TracChangeset
for help on using the changeset viewer.