Changeset 106643 in vbox for trunk/src/VBox
- Timestamp:
- Oct 24, 2024 6:31:48 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/win/Makefile.kmk
r106061 r106643 65 65 VBoxUSB_DEFS := IN_RT_R0 IN_SUP_R0 VBOX_DBG_LOG_NAME=\"USBDev\" 66 66 endif 67 VBoxUSB_LDFLAGS.x86 = -Entry:DriverEntry@8 68 VBoxUSB_LDFLAGS.amd64 = -Entry:DriverEntry 67 VBoxUSB_LDFLAGS.x86 := -Entry:DriverEntry@8 68 VBoxUSB_LDFLAGS.amd64 := -Entry:DriverEntry 69 VBoxUSB_LDFLAGS.arm64 := -Entry:DriverEntry 69 70 VBoxUSB_SOURCES = \ 70 71 dev/VBoxUsbDev.cpp \ … … 80 81 $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \ 81 82 $(usbd_1_TARGET) 83 VBoxUSB_LIBS.arm64 = \ 84 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/BufferOverflowFastFailK.lib 82 85 83 86 # … … 97 100 VBoxUSBMon_DEFS += VBOX_DBG_LOG_NAME=\"USBMon\" 98 101 endif 99 VBoxUSBMon_LDFLAGS.x86 = -Entry:DriverEntry@8 100 VBoxUSBMon_LDFLAGS.amd64 = -Entry:DriverEntry 102 if1of ($(KBUILD_TYPE), debug) 103 VBoxUSBMon_DEFS += LOG_ENABLED VBOX_USB_WITH_VERBOSE_LOGGING 104 endif 101 105 ifdef VBOX_USBMON_WITH_FILTER_AUTOAPPLY 102 106 VBoxUSBMon_DEFS += VBOX_USBMON_WITH_FILTER_AUTOAPPLY 103 107 endif 108 VBoxUSBMon_LDFLAGS.x86 := -Entry:DriverEntry@8 109 VBoxUSBMon_LDFLAGS.amd64 := -Entry:DriverEntry 110 VBoxUSBMon_LDFLAGS.arm64 := -Entry:DriverEntry 104 111 VBoxUSBMon_SOURCES = \ 105 112 mon/VBoxUsbMon.cpp \ … … 116 123 $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \ 117 124 $(usbd_1_TARGET) 118 if1of ($(KBUILD_TYPE), debug) 119 VBoxUSBMon_DEFS += LOG_ENABLED VBOX_USB_WITH_VERBOSE_LOGGING 120 endif 125 VBoxUSBMon_LIBS.arm64 = \ 126 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/BufferOverflowFastFailK.lib 121 127 122 128 #
Note:
See TracChangeset
for help on using the changeset viewer.