1 | # $Id: Makefile.kmk 100254 2023-06-23 08:49:13Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Some hacks to allow syntax and prerequisite include checking of headers.
|
---|
4 | # This makefile doesn't and shouldn't build successfully.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox base platform packages, as
|
---|
11 | # available from https://www.virtualbox.org.
|
---|
12 | #
|
---|
13 | # This program is free software; you can redistribute it and/or
|
---|
14 | # modify it under the terms of the GNU General Public License
|
---|
15 | # as published by the Free Software Foundation, in version 3 of the
|
---|
16 | # License.
|
---|
17 | #
|
---|
18 | # This program is distributed in the hope that it will be useful, but
|
---|
19 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
21 | # General Public License for more details.
|
---|
22 | #
|
---|
23 | # You should have received a copy of the GNU General Public License
|
---|
24 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
25 | #
|
---|
26 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
27 | #
|
---|
28 |
|
---|
29 | SUB_DEPTH = ..
|
---|
30 | include $(KBUILD_PATH)/subheader.kmk
|
---|
31 |
|
---|
32 | LIBRARIES += SyntaxVBoxIncludeR3 SyntaxVBoxIncludeR0
|
---|
33 |
|
---|
34 | # Omit headers that are using C++ features and upsets gcc.
|
---|
35 | VBOX_HDRS_CPP_FEATURES := \
|
---|
36 | VBox/vmm/hm.h \
|
---|
37 | VBox/vmm/hm_vmx.h \
|
---|
38 | VBox/vmm/pdmaudioinline.h \
|
---|
39 | VBox/vmm/pdmaudiohostenuminline.h \
|
---|
40 | VBox/HostServices/GuestControlSvc.h \
|
---|
41 | VBox/HostServices/DragAndDropSvc.h \
|
---|
42 | VBox/HostServices/Service.h \
|
---|
43 | VBox/GuestHost/GuestControl.h \
|
---|
44 | VBox/GuestHost/DragAndDrop.h \
|
---|
45 | VBox/GuestHost/SharedClipboard-transfers.h \
|
---|
46 | VBox/dbus.h \
|
---|
47 | VBox/xrandr.h \
|
---|
48 | VBox/VBoxCrHgsmi.h \
|
---|
49 | VBox/VBoxGuestLibSharedFoldersInline.h \
|
---|
50 | VBox/VBoxPktDmp.h \
|
---|
51 | VBox/VBoxUhgsmi.h \
|
---|
52 | iprt/cpp/%
|
---|
53 |
|
---|
54 | # Omit headers that are C++ and ring-3.
|
---|
55 | VBOX_HDRS_R3_CPP := \
|
---|
56 | VBox/dbggui.h \
|
---|
57 | VBox/settings.h \
|
---|
58 | VBox/com/Guid.h \
|
---|
59 | VBox/vmm/vmmr3vtable.h \
|
---|
60 | iprt/cpp/% \
|
---|
61 | VBox/com/% \
|
---|
62 | $(subst $(PATH_SUB_CURRENT)/,,$(wildcard $(PATH_SUB_CURRENT)/iprt/*_cpp.h))
|
---|
63 |
|
---|
64 | # Ring-3 only headers.
|
---|
65 | VBOX_HDRS_R3_ONLY := \
|
---|
66 | VBox/vrdpapi.h \
|
---|
67 | VBox/vrdpusb.h \
|
---|
68 | VBox/VBoxHDD.h \
|
---|
69 | VBox/VBoxHDD-Plugin.h \
|
---|
70 | VBox/VBoxCrHgsmi.h \
|
---|
71 | VBox/VBoxUhgsmi.h \
|
---|
72 | VBox/VBoxNetCfg-win.h \
|
---|
73 | VBox/VBoxDrvCfg-win.h \
|
---|
74 | VBox/dbus.h \
|
---|
75 | VBox/xrandr.h \
|
---|
76 | $(if-expr "$(KBUILD_TARGET)" == "win",VBox/usblib.h,) \
|
---|
77 | VBox/usblib-win.h \
|
---|
78 | VBox/vd.h \
|
---|
79 | VBox/vd-cache-backend.h \
|
---|
80 | VBox/vd-ifs.h \
|
---|
81 | VBox/vd-ifs-internal.h \
|
---|
82 | VBox/vd-image-backend.h \
|
---|
83 | VBox/vd-plugin.h \
|
---|
84 | VBox/vd-filter-backend.h \
|
---|
85 | VBox/vddbg.h \
|
---|
86 | VBox/vmm/uvm.h \
|
---|
87 | VBox/vmm/dbgfflowtrace.h \
|
---|
88 | VBox/vscsi.h \
|
---|
89 | VBox/ExtPack/% \
|
---|
90 | VBox/GuestHost/SharedClipboard-transfers.h \
|
---|
91 | VBox/GuestHost/SharedClipboard-win.h \
|
---|
92 | VBox/GuestHost/SharedClipboard-x11.h \
|
---|
93 | VBox/GuestHost/DragAndDrop.h \
|
---|
94 | VBox/HostServices/Service.h \
|
---|
95 | VBox/HostServices/TstHGCMMock.h \
|
---|
96 | VBox/HostServices/TstHGCMMockUtils.h \
|
---|
97 | iprt/win/% \
|
---|
98 | iprt/alloca.h \
|
---|
99 | iprt/tcp.h \
|
---|
100 | iprt/localipc.h \
|
---|
101 | iprt/linux/sysfs.h \
|
---|
102 | iprt/socket.h \
|
---|
103 | iprt/udp.h \
|
---|
104 | iprt/fuzz.h \
|
---|
105 | iprt/linux/symvers.h
|
---|
106 |
|
---|
107 | # Ring-0 driver only headers.
|
---|
108 | VBOX_HDRS_R0DRV_ONLY := \
|
---|
109 | VBox/VBoxGuestLibSharedFolders.h \
|
---|
110 | VBox/VBoxGuestLibSharedFoldersInline.h \
|
---|
111 | iprt/linux/version.h
|
---|
112 |
|
---|
113 | # GCC only headers.
|
---|
114 | VBOX_HDRS_GCC_ONLY := \
|
---|
115 | iprt/nocrt/fenv.h \
|
---|
116 | iprt/nocrt/math.h
|
---|
117 |
|
---|
118 | # Headers to omit all together.
|
---|
119 | VBOX_HDRS_OMIT := \
|
---|
120 | VBox/HostServices/glext.h \
|
---|
121 | VBox/HostServices/glxext.h \
|
---|
122 | VBox/HostServices/wglext.h \
|
---|
123 | $(if-expr "$(KBUILD_TARGET)" != "linux", \
|
---|
124 | VBox/GuestHost/SharedClipboard-x11.h \
|
---|
125 | ,) \
|
---|
126 | $(if-expr "$(KBUILD_TARGET)" != "solaris", \
|
---|
127 | VBox/usblib-solaris.h \
|
---|
128 | ,) \
|
---|
129 | VBox/VDEPlug.h \
|
---|
130 | VBox/VDEPlugSymDefs.h \
|
---|
131 | VBox/VBoxNetCmn-win.h \
|
---|
132 | $(if-expr "$(KBUILD_TARGET)" != "win", \
|
---|
133 | VBox/com/microatl.h \
|
---|
134 | VBox/GuestHost/SharedClipboard-win.h \
|
---|
135 | VBox/usblib-win.h \
|
---|
136 | VBox/VBoxDrvCfg-win.h \
|
---|
137 | VBox/VBoxNetCfg-win.h \
|
---|
138 | iprt/sanitized/intrin.h \
|
---|
139 | ,$(VBOX_HDRS_GCC_ONLY)) \
|
---|
140 | \
|
---|
141 | VBox/dbus-calls.h \
|
---|
142 | VBox/xrandr-calls.h \
|
---|
143 | VBox/VBoxKeyboard.h \
|
---|
144 | VBox/vmm/pdmpcidevint.h \
|
---|
145 | VBox/vmm/vmmr3vtable-def.h \
|
---|
146 | VBox/vmm/cpumctx-x86-amd64.h \
|
---|
147 | VBox/vmm/cpumctx-armv8.h \
|
---|
148 | VBox/vmm/cpum-x86-amd64.h \
|
---|
149 | VBox/vmm/cpum-armv8.h \
|
---|
150 | VBox/vmm/iem-x86-amd64.h \
|
---|
151 | VBox/vmm/iem-armv8.h \
|
---|
152 | iprt/runtime-loader.h \
|
---|
153 | iprt/mangling.h \
|
---|
154 | $(subst $(PATH_SUB_CURRENT)/,,$(wildcard $(PATH_SUB_CURRENT)/iprt/asm*watcom*.h)) \
|
---|
155 | iprt/asn1-generator% \
|
---|
156 | iprt/win/% \
|
---|
157 | iprt/nt/% \
|
---|
158 | \
|
---|
159 | $(foreach os,$(filter-out $(KBUILD_TARGET),$(KBUILD_OSES)),iprt/$(os)/% VBox/$(os)/%) \
|
---|
160 | $(foreach arch,$(KBUILD_ARCHES),iprt/nocrt/$(arch)/%)
|
---|
161 |
|
---|
162 | # AMD64 only headers.
|
---|
163 | ifneq ($(KBUILD_TARGET_ARCH),amd64)
|
---|
164 | VBOX_HDRS_OMIT += \
|
---|
165 | VBox/vmm/cpumctx.h \
|
---|
166 | VBox/vmm/cpumctx-v1_6.h \
|
---|
167 | VBox/vmm/dbgfcorefmt.h
|
---|
168 | endif
|
---|
169 | # ARM only headers.
|
---|
170 | ifn1of ($(KBUILD_TARGET_ARCH), arm32 arm64)
|
---|
171 | VBOX_HDRS_OMIT += \
|
---|
172 | iprt/asm-arm.h \
|
---|
173 | iprt/asmdefs-arm.h
|
---|
174 | endif
|
---|
175 |
|
---|
176 |
|
---|
177 | # We omit a few headers which have platform specific issues or are templates.
|
---|
178 | VBOX_HDRS_ALL := $(filter-out $(VBOX_HDRS_OMIT), \
|
---|
179 | $(subst $(PATH_SUB_CURRENT)/,,$(wildcard \
|
---|
180 | $(PATH_SUB_CURRENT)/VBox/*.h \
|
---|
181 | $(PATH_SUB_CURRENT)/VBox/*/*.h \
|
---|
182 | $(PATH_SUB_CURRENT)/iprt/*.h \
|
---|
183 | $(PATH_SUB_CURRENT)/iprt/*/*.h \
|
---|
184 | )))
|
---|
185 |
|
---|
186 | # ring-3, ring-0 and raw-mode context specific exclusions.
|
---|
187 | VBOX_HDRS_ALL_R3 := $(filter-out $(VBOX_HDRS_R0DRV_ONLY), $(VBOX_HDRS_ALL))
|
---|
188 | if "$(intersects $(KBUILD_TARGET_ARCH),$(VBOX_SUPPORTED_HOST_ARCHS))" == ""
|
---|
189 | ifeq ($(KBUILD_TARGET),win)
|
---|
190 | VBOX_HDRS_ALL_R3 := $(filter-out VBox/com/VirtualBox.h VBox/com/listeners.h VBox/settings.h,$(VBOX_HDRS_ALL_R3))
|
---|
191 | else
|
---|
192 | VBOX_HDRS_ALL_R3 := $(filter-out VBox/com/% VBox/settings.h,$(VBOX_HDRS_ALL_R3))
|
---|
193 | endif
|
---|
194 | endif
|
---|
195 | VBOX_HDRS_ALL_R3_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES) $(VBOX_HDRS_R3_CPP), $(VBOX_HDRS_ALL_R3))
|
---|
196 | VBOX_HDRS_ALL_R0 := $(filter-out $(VBOX_HDRS_R3_CPP) $(VBOX_HDRS_R3_ONLY) $(VBOX_HDRS_R0DRV_ONLY), $(VBOX_HDRS_ALL))
|
---|
197 | VBOX_HDRS_ALL_R0_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES), $(VBOX_HDRS_ALL_R0))
|
---|
198 | VBOX_HDRS_ALL_R0DRV := $(filter-out $(VBOX_HDRS_R3_CPP) $(VBOX_HDRS_R3_ONLY), $(VBOX_HDRS_ALL))
|
---|
199 | VBOX_HDRS_ALL_R0DRV_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES), $(VBOX_HDRS_ALL_R0DRV))
|
---|
200 | VBOX_HDRS_ALL_RC := $(filter-out \
|
---|
201 | VBox/VBoxGuestLib.h \
|
---|
202 | VBox/vmm/gvm.h \
|
---|
203 | iprt/thread.h \
|
---|
204 | iprt/mem.h \
|
---|
205 | iprt/memsafer.h \
|
---|
206 | iprt/alloc.h \
|
---|
207 | iprt/vector.h \
|
---|
208 | $(VBOX_HDRS_R3_CPP) \
|
---|
209 | $(VBOX_HDRS_R3_ONLY) \
|
---|
210 | $(VBOX_HDRS_R0DRV_ONLY) \
|
---|
211 | , $(VBOX_HDRS_ALL))
|
---|
212 | VBOX_HDRS_ALL_RC_C := $(filter-out $(VBOX_HDRS_CPP_FEATURES), $(VBOX_HDRS_ALL_RC))
|
---|
213 | #$(error $(subst $(SP),$(NLTAB),$(strip $(sort $(VBOX_HDRS_ALL_RC_C)))))
|
---|
214 |
|
---|
215 | if1of ($(KBUILD_TARGET_ARCH), $(VBOX_SUPPORTED_HOST_ARCHS))
|
---|
216 | SyntaxVBoxIncludeR3_TEMPLATE = VBoxMainExe
|
---|
217 | SyntaxVBoxIncludeR3_DEFS = VBOX_WITH_HGCM
|
---|
218 | else
|
---|
219 | SyntaxVBoxIncludeR3_TEMPLATE = VBoxR3Exe
|
---|
220 | SyntaxVBoxIncludeR3_SDKS.win = ReorderCompilerIncs $(VBOX_WINPSDK) $(VBOX_WINDDK)
|
---|
221 | endif
|
---|
222 | SyntaxVBoxIncludeR3_DEFS += USING_VMM_COMMON_DEFS
|
---|
223 | SyntaxVBoxIncludeR3_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
|
---|
224 | SyntaxVBoxIncludeR3_SOURCES := \
|
---|
225 | $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_R3_C)))) \
|
---|
226 | $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_R3))))
|
---|
227 | SyntaxVBoxIncludeR3_CLEAN = $(SyntaxVBoxIncludeR3_SOURCES)
|
---|
228 | #$(error $(subst $(SP),$(NLTAB),$(strip $(sort $(SyntaxVBoxIncludeR3_SOURCES)))))
|
---|
229 |
|
---|
230 | SyntaxVBoxIncludeR0_TEMPLATE = VBoxR0
|
---|
231 | SyntaxVBoxIncludeR0_DEFS = VBOX_WITH_HGCM USING_VMM_COMMON_DEFS
|
---|
232 | SyntaxVBoxIncludeR0_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
|
---|
233 | SyntaxVBoxIncludeR0_SOURCES := \
|
---|
234 | $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_R0_C)))) \
|
---|
235 | $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_R0))))
|
---|
236 | SyntaxVBoxIncludeR0_CLEAN = $(SyntaxVBoxIncludeR0_SOURCES)
|
---|
237 |
|
---|
238 | if1of ($(KBUILD_TARGET), darwin os2 solaris win)
|
---|
239 | LIBRARIES += SyntaxVBoxIncludeR0Drv
|
---|
240 | SyntaxVBoxIncludeR0Drv_TEMPLATE = VBoxR0DrvLib
|
---|
241 | SyntaxVBoxIncludeR0Drv_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK_INCS)
|
---|
242 | SyntaxVBoxIncludeR0Drv_DEFS = VBOX_WITH_HGCM USING_VMM_COMMON_DEFS
|
---|
243 | SyntaxVBoxIncludeR0Drv_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
|
---|
244 | SyntaxVBoxIncludeR0Drv_SOURCES := \
|
---|
245 | $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_R0DRV_C)))) \
|
---|
246 | $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_R0DRV))))
|
---|
247 | SyntaxVBoxIncludeR0Drv_CLEAN = $(SyntaxVBoxIncludeR0Drv_SOURCES)
|
---|
248 | endif
|
---|
249 |
|
---|
250 | ifdef VBOX_WITH_RAW_MODE
|
---|
251 | LIBRARIES += SyntaxVBoxIncludeRC
|
---|
252 | SyntaxVBoxIncludeRC_TEMPLATE = VBoxRc
|
---|
253 | SyntaxVBoxIncludeRC_DEFS = VBOX_WITH_HGCM USING_VMM_COMMON_DEFS
|
---|
254 | SyntaxVBoxIncludeRC_CDEFS = IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS
|
---|
255 | SyntaxVBoxIncludeRC_SOURCES := \
|
---|
256 | $(addprefix $(PATH_OBJ)/include/c/, $(addsuffix .c, $(basename $(VBOX_HDRS_ALL_RC_C)))) \
|
---|
257 | $(addprefix $(PATH_OBJ)/include/cpp/,$(addsuffix .cpp,$(basename $(VBOX_HDRS_ALL_RC))))
|
---|
258 | SyntaxVBoxIncludeRC_CLEAN = $(SyntaxVBoxIncludeRC_SOURCES)
|
---|
259 | endif
|
---|
260 |
|
---|
261 |
|
---|
262 | # Headers that must only be included once.
|
---|
263 | VBOX_HDRS_ONLY_ONCE := \
|
---|
264 | iprt/bldprog-strtab-template.cpp.h
|
---|
265 |
|
---|
266 |
|
---|
267 | # Generate the files we compile.
|
---|
268 | define def_hdr
|
---|
269 | $(eval functioname := $(translate $(basename $(hdr)),-./,___))
|
---|
270 |
|
---|
271 | $$(PATH_OBJ)/include/c/$(basename $(hdr)).c: | $$$$(dir $$$$@)
|
---|
272 | $(QUIET)$$(APPEND) -t -n $$@ \
|
---|
273 | '#include <$(hdr)>' \
|
---|
274 | $(if-expr $(intersects $(hdr),$(VBOX_HDRS_ONLY_ONCE)),, '#include <$(hdr)>') \
|
---|
275 | 'extern int $(functioname)_c(void);' \
|
---|
276 | 'int $(functioname)_c(void) { return 0;}'
|
---|
277 |
|
---|
278 | $$(PATH_OBJ)/include/cpp/$(basename $(hdr)).cpp: | $$$$(dir $$$$@)
|
---|
279 | $(QUIET)$$(APPEND) -t -n $$@ \
|
---|
280 | '#include <$(hdr)>' \
|
---|
281 | $(if-expr $(intersects $(hdr),$(VBOX_HDRS_ONLY_ONCE)),, '#include <$(hdr)>') \
|
---|
282 | 'extern int $(functioname)_cpp(void);' \
|
---|
283 | 'int $(functioname)_cpp(void) { return 0;}'
|
---|
284 |
|
---|
285 | endef
|
---|
286 |
|
---|
287 | $(foreach hdr,$(VBOX_HDRS_ALL), $(eval $(def_hdr)))
|
---|
288 |
|
---|
289 | # Tell kBuild to generate rules for making the directories for the generated files.
|
---|
290 | VBOX_HDR_DIRS := $(sort $(dir $(VBOX_HDRS_ALL)))
|
---|
291 | BLDDIRS += $(addprefix $(PATH_OBJ)/include/c/,$(VBOX_HDR_DIRS)) $(addprefix $(PATH_OBJ)/include/cpp/,$(VBOX_HDR_DIRS))
|
---|
292 |
|
---|
293 |
|
---|
294 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|