Changeset 77397 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Feb 20, 2019 6:17:14 PM (6 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile-footer.gmk
r77390 r77397 36 36 VBOX_INCL := $(addprefix -I,$(KERN_INCL) $(EXTRA_INCL)) $(MOD_INCL) 37 37 38 KFLAGS := -D__KERNEL__ -DMODULE -DRT_WITHOUT_PRAGMA_ONCE $(MOD_DEFS) 38 KFLAGS := -D__KERNEL__ -DMODULE -DRT_WITHOUT_PRAGMA_ONCE $(addprefix -D,$(MOD_DEFS)) 39 ifeq ($(BUILD_TARGET_ARCH),amd64) 40 KFLAGS += -DRT_ARCH_AMD64 41 else 42 KFLAGS += -DRT_ARCH_X86 43 endif 44 39 45 ifeq ($(BUILD_TYPE),debug) 40 46 # The -Wno-array-bounds is because of a bug in gcc 4.something, see -
trunk/src/VBox/Installer/linux/Makefile-header.gmk
r77390 r77397 27 27 # follows: 28 28 # 29 # # Linux kbuild sets this to our source directory if we are called from 30 # # there 29 # # Linux kbuild sets this to our source directory if we are called from there 31 30 # obj ?= $(CURDIR) 32 31 # include $(obj)/Makefile-header.gmk
Note:
See TracChangeset
for help on using the changeset viewer.