VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/Makefile-footer.gmk@ 95411

Last change on this file since 95411 was 95411, checked in by vboxsync, 2 years ago

Linux host and guest drivers: fix clang warnings, bugref:10247.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 4.4 KB
Line 
1# $Id: Makefile-footer.gmk 95411 2022-06-28 18:50:10Z vboxsync $
2## @file
3# VirtualBox Guest Additions kernel module Makefile, common parts.
4#
5# See Makefile-header.gmk for details of how to use this.
6#
7
8#
9# Copyright (C) 2006-2022 Oracle Corporation
10#
11# This file is part of VirtualBox Open Source Edition (OSE), as
12# available from http://www.virtualbox.org. This file is free software;
13# you can redistribute it and/or modify it under the terms of the GNU
14# General Public License (GPL) as published by the Free Software
15# Foundation, in version 2 as it comes in the "COPYING" file of the
16# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
17# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
18#
19
20VBOXMOD_0_TARGET = $(VBOXMOD_NAME)
21
22KBUILD_VERBOSE ?= 1 # Variable belongs to our kBuild, not the linux one.
23VBOX_LNX_VERBOSE = $(if $(KBUILD_VERBOSE),1,)
24
25#
26# Compiler options
27#
28VBOXMOD_0_KFLAGS := -D__KERNEL__ -DMODULE -DRT_WITHOUT_PRAGMA_ONCE $(addprefix -D,$(VBOXMOD_DEFS))
29ifeq ($(VBOX_KBUILD_TARGET_ARCH),amd64)
30VBOXMOD_0_KFLAGS += -DRT_ARCH_AMD64
31else
32VBOXMOD_0_KFLAGS += -DRT_ARCH_X86
33endif
34
35ifeq ($(VBOX_KBUILD_TYPE),debug)
36# The -Wno-array-bounds is because of a bug in gcc 4.something, see
37# https://sourceware.org/bugzilla/show_bug.cgi?id=10001
38 VBOXMOD_0_KFLAGS += -DDEBUG -DDEBUG_$(subst $(subst _, ,_),_,$(USERNAME)) -DDEBUG_USERNAME=$(subst $(subst _, ,_),_,$(USERNAME))
39 ifeq ($(shell expr $(KERN_VER) : '[23]\.'),0)
40 VBOXMOD_0_KFLAGS += -Werror -Wall -Wno-array-bounds
41 # Disable this for DEBUG clang builds. There are parts of kernel which will use __builtin_frame_address with argument > 0.
42 ifneq ($(LLVM),)
43 VBOXMOD_0_KFLAGS += -Wno-frame-address
44 endif
45 endif
46endif
47
48ifeq ($(VBOX_KERN_GROKS_EXTMOD),)
49#
50# Pre 2.6.6
51#
52# Note: While pre 2.6.6 kernels could also do "proper" builds from kbuild, the
53# make script needed to support it was somewhat different from 2.6. Since this
54# script works and pre-2.6.6 is not a moving target we will not try do do things
55# the "proper" way.
56#
57VBOXMOD_EXT := o
58
59 ifeq ($(VBOX_KBUILD_TARGET_ARCH),amd64)
60VBOXMOD_0_KFLAGS += -mcmodel=kernel
61 endif
62 ifeq ($(KERN_VERSION),24)
63VBOXMOD_0_KFLAGS += -DVBOX_LINUX_2_4
64 endif
65
66CFLAGS := -O2 $(VBOXMOD_CFLAGS) $(addprefix -I,$(KERN_INCL) $(VBOXMOD_INCL)) $(VBOXMOD_0_KFLAGS) $(KDEBUG)
67
68# 2.4 Module linking
69$(VBOXMOD_0_TARGET).$(VBOXMOD_EXT): $(VBOXMOD_OBJS)
70 $(LD) -o $@ -r $(VBOXMOD_OBJS)
71
72all: $(VBOXMOD_0_TARGET)
73$(VBOXMOD_0_TARGET): $(VBOXMOD_0_TARGET).$(VBOXMOD_EXT)
74
75install: $(VBOXMOD_0_TARGET)
76 @mkdir -p $(MODULE_DIR); \
77 install -m 0644 -o root -g root $(VBOXMOD_0_TARGET).$(VBOXMOD_EXT) $(MODULE_DIR); \
78 PATH="$(PATH):/bin:/sbin" depmod -a; sync
79
80clean:
81 for f in $(sort $(dir $(VBOXMOD_OBJS))); do rm -f $$f/*.o $$f/.*.cmd $$f/.*.flags; done
82 rm -rf .$(VBOXMOD_NAME)* .tmp_ver* $(VBOXMOD_NAME).* Modules.symvers modules.order
83
84.PHONY: all $(VBOXMOD_0_TARGET) install clean
85
86else # VBOX_KERN_GROKS_EXTMOD
87#
88# 2.6.6 and later
89#
90VBOXMOD_EXT := ko
91
92# build defs
93EXTRA_CFLAGS += $(VBOXMOD_CFLAGS) $(addprefix -I,$(KERN_INCL) $(VBOXMOD_INCL)) $(VBOXMOD_0_KFLAGS) $(KDEBUG)
94$(VBOXMOD_0_TARGET)-y := $(VBOXMOD_OBJS)
95obj-m += $(VBOXMOD_0_TARGET).o
96
97# Trigger parallel make job.
98 ifndef VBOX_NOJOBS
99JOBS := $(shell (getconf _NPROCESSORS_ONLN || grep -Ec '^processor|^CPU[0-9]' /proc/cpuinfo) 2>/dev/null)
100 ifeq ($(JOBS),0)
101 override JOBS := 1
102 endif
103 else
104JOBS :=
105 endif
106
107VBOX_SUBDIR_VAR=$(if $(VBOX_KERN_GROKS_SUBDIRS),SUBDIRS,M)
108
109# OL/UEK: CONFIG_MODULE_SIG= disables module signing for external modules.
110# Ubuntu 18.04.3: CONFIG_MODULE_SIG_ALL= disables signing of all modules.
111# We disable signing because we don't have any private key and want to leave
112# the key handling and secure boot config to the user.
113 ifndef VBOX_ALLOW_MODULE_SIGNING
114VBOX_DISABLE_SIGN=CONFIG_MODULE_SIG= CONFIG_MODULE_SIG_ALL=
115 endif
116
117# rules:
118all: $(VBOXMOD_0_TARGET)
119
120$(VBOXMOD_0_TARGET):
121 $(MAKE) V=$(VBOX_LNX_VERBOSE) $(VBOX_DISABLE_SIGN) -C $(KERN_DIR) $(VBOX_SUBDIR_VAR)=$(CURDIR) SRCROOT=$(CURDIR) $(if $(JOBS),-j$(JOBS),) modules
122
123install: $(VBOXMOD_0_TARGET)
124 $(MAKE) V=$(VBOX_LNX_VERBOSE) $(VBOX_DISABLE_SIGN) -C $(KERN_DIR) $(VBOX_SUBDIR_VAR)=$(CURDIR) SRCROOT=$(CURDIR) INSTALL_MOD_PATH=$(INSTALL_MOD_PATH) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) modules_install
125
126modules_install: install
127
128clean:
129 $(MAKE) V=$(VBOX_LNX_VERBOSE) $(VBOX_DISABLE_SIGN) -C $(KERN_DIR) $(VBOX_SUBDIR_VAR)=$(CURDIR) SRCROOT=$(CURDIR) clean
130
131.PHONY: all $(VBOXMOD_0_TARGET) install modules_install clean
132endif # VBOX_KERN_GROKS_EXTMOD
133
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette