VirtualBox

source: vbox/trunk/src/VBox/Runtime/Makefile.kmk@ 98417

Last change on this file since 98417 was 98409, checked in by vboxsync, 22 months ago

IPRT/*.kmk: Automatic scm cleanups. bugref:10348

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 160.9 KB
Line 
1# $Id: Makefile.kmk 98409 2023-02-01 16:17:58Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT.
4#
5
6#
7# Copyright (C) 2006-2023 Oracle and/or its affiliates.
8#
9# This file is part of VirtualBox base platform packages, as
10# available from https://www.virtualbox.org.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License
14# as published by the Free Software Foundation, in version 3 of the
15# License.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, see <https://www.gnu.org/licenses>.
24#
25# The contents of this file may alternatively be used under the terms
26# of the Common Development and Distribution License Version 1.0
27# (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28# in the VirtualBox distribution, in which case the provisions of the
29# CDDL are applicable instead of those of the GPL.
30#
31# You may elect to license modified versions of this file under the
32# terms and conditions of either the GPL or the CDDL or both.
33#
34# SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35#
36
37SUB_DEPTH = ../../..
38include $(KBUILD_PATH)/subheader.kmk
39
40ifdef VBOX_ONLY_ADDITIONS
41 #
42 # Only build the additions, sort out the legacy names first.
43 #
44 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
45 LIBRARIES.win += RuntimeR3NoCrt
46 LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
47 ifdef VBOX_WITH_ADDITION_DRIVERS
48 LIBRARIES += RuntimeGuestR0
49 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
50 endif
51 ifndef VBOX_ONLY_ADDITIONS_WITHOUT_RTISOMAKER
52 LIBRARIES += RuntimeBldProg
53 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
54 endif
55
56else ifdef VBOX_ONLY_VALIDATIONKIT
57 #
58 # Only build the Validation Kit.
59 #
60 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeR3 RuntimeBldProg
61 ifdef VBOX_WITH_R0_MODULES
62 LIBRARIES += RuntimeR0
63 endif
64 LIBRARIES.solaris += RuntimeR0Stub
65 LIBRARIES.win += RuntimeR0Stub #RuntimeR3NoCrt
66 ifndef VBOX_WITH_NOCRT_STATIC
67 LIBRARIES.win.x86 += RuntimeR3VccTricks
68 endif
69 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
70 ifdef VBOX_WITH_VALIDATIONKIT_UNITTESTS_PACKING
71 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
72 endif
73else ifdef VBOX_ONLY_DOCS
74 #
75 # Build docs only - need just regular R3 runtime.
76 #
77 LIBRARIES += RuntimeR3 RuntimeBldProg
78 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
79
80else ifdef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
81 #
82 # Build extension packs using import libraries as much as possible (VBoxDTrace
83 # needs Ring-0 IPRT, though).
84 #
85 LIBRARIES += RuntimeBldProg
86 ifdef VBOX_WITH_R0_MODULES
87 LIBRARIES += RuntimeR0
88 endif
89 LIBRARIES.solaris += RuntimeR0Stub
90 LIBRARIES.win += RuntimeR0Stub
91 ifdef VBOX_WITH_RAW_MODE
92 LIBRARIES.win += RuntimeRCStub
93 endif
94 ifneq ($(VBOX_LIB_RUNTIME_STATIC),$(VBOX_LIB_RUNTIME_STATIC_NO_ASAN))
95 LIBRARIES += RuntimeR3NoAsan
96 else
97 LIBRARIES += RuntimeR3
98 endif
99 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
100
101else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_VALIDATIONKIT && !VBOX_ONLY_DOCS
102
103 #
104 # Normal build.
105 #
106 ifndef VBOX_ONLY_EXTPACKS
107 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
108 endif
109 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
110
111 BLDPROGS += uniread
112 LIBRARIES += RuntimeR3 RuntimeBldProg RuntimeEFCPP
113 ifdef VBOX_WITH_R0_MODULES
114 LIBRARIES += RuntimeR0
115 endif
116 LIBRARIES.solaris += RuntimeR0Stub
117 LIBRARIES.win += RuntimeR0Stub RuntimeR3NoCrt
118 LIBRARIES.win.amd64 += RuntimeR3-x86
119 ifdef VBOX_WITH_RAW_MODE
120 LIBRARIES += RuntimeRC
121 LIBRARIES.win += RuntimeRCStub
122 endif
123 ifdef VBOX_WITH_VBOXDRV
124 LIBRARIES += RuntimeR0Drv
125 endif
126 ifdef VBOX_WITH_ADDITIONS
127 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
128 LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
129 ifdef VBOX_WITH_ADDITION_DRIVERS
130 LIBRARIES += RuntimeGuestR0
131 endif
132 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
133 endif # VBOX_WITH_ADDITIONS
134 ifndef VBOX_WITH_NOCRT_STATIC
135 LIBRARIES.win.x86 += RuntimeR3VccTricks
136 endif
137 ifneq ($(VBOX_LIB_RUNTIME_STATIC),$(VBOX_LIB_RUNTIME_STATIC_NO_ASAN))
138 LIBRARIES += RuntimeR3NoAsan
139 endif
140 DLLS += VBoxRT
141 ifdef VBOX_WITH_32_ON_64_MAIN_API
142 DLLS += VBoxRT-x86
143 endif
144endif
145
146
147# Always build the ntdll import libraries on windows.
148LIBRARIES.win += RuntimeR3NtDll-x86
149if1of (amd64, $(KBUILD_TARGET_ARCH) $(KBUILD_HOST_ARCH))
150 LIBRARIES.win += RuntimeR3NtDll-amd64
151endif
152
153
154# Always build the import library.
155IMPORT_LIBS += VBoxRTImp
156
157
158# Where the generated stuff goes.
159IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
160BLDDIRS += $(IPRT_OUT_DIR)
161OTHER_CLEAN += \
162 $(IPRT_OUT_DIR)/errmsgdata.h \
163 $(IPRT_OUT_DIR)/errmsgwindata.h \
164 $(IPRT_OUT_DIR)/errmsgwindata-sorted.h \
165 $(IPRT_OUT_DIR)/errmsgwindata-sorted.h.ts \
166 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
167 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts \
168 $(IPRT_OUT_DIR)/odi2name.h \
169 $(IPRT_OUT_DIR)/odi2name.h.ts \
170 $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt \
171 $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt.dep \
172 $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
173
174
175#
176# Globals
177#
178VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
179
180
181#
182# Set the defines that buildconfig.cpp needs. Its used by several targets.
183#
184common/misc/buildconfig.cpp_DEFS = \
185 IPRT_BLDCFG_SCM_REV=$(VBOX_SVN_REV) \
186 IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \
187 IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \
188 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD)
189ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
190 common/misc/buildconfig.cpp_DEFS += \
191 IPRT_BLDCFG_VERSION_STRING="$(VBOX_VERSION_STRING)" \
192 IPRT_BLDCFG_TARGET="$(KBUILD_TARGET)" \
193 IPRT_BLDCFG_TARGET_ARCH="$(KBUILD_TARGET_ARCH)" \
194 IPRT_BLDCFG_TYPE="$(KBUILD_TYPE)"
195else
196 common/misc/buildconfig.cpp_DEFS += \
197 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \
198 IPRT_BLDCFG_TARGET=\"$(KBUILD_TARGET)\" \
199 IPRT_BLDCFG_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\" \
200 IPRT_BLDCFG_TYPE=\"$(KBUILD_TYPE)\"
201endif
202
203#
204# OID to C table conversion program.
205#
206BLDPROGS += oiddb2c
207oiddb2c_TEMPLATE = VBoxBldProg
208oiddb2c_SOURCES = common/asn1/oiddb2c.cpp
209
210common/asn1/asn1-dump.cpp_DEPS = $(IPRT_OUT_DIR)/oiddb.h
211common/asn1/asn1-dump.cpp_INCS = $(IPRT_OUT_DIR)
212OTHER_CLEAN += $(IPRT_OUT_DIR)/oiddb.h $(IPRT_OUT_DIR)/oiddb.h.ts
213
214$(IPRT_OUT_DIR)/oiddb.h.ts +| $(IPRT_OUT_DIR)/oiddb.h: \
215 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/oiddb.cfg \
216 $(VBOX_EXTRA_OID_CFG_FILES) \
217 $$(oiddb2c_1_TARGET) \
218 | $$(dir $$@)
219 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
220 $(QUIET)$(oiddb2c_1_TARGET) "$@" $(filter %.cfg,$^)
221 $(QUIET)$(CP) --changed -fv "$@" "$(IPRT_OUT_DIR)/oiddb.h"
222
223
224#
225# Unicode Specification reader used to regenerate unidata-*.cpp.
226#
227uniread_TEMPLATE = VBoxBldProg
228uniread_SOURCES = common/string/uniread.cpp
229uniread_INCS = include
230
231#
232# Win64 assembly sources.
233#
234RuntimeWin64ASM_SOURCES = \
235 win/amd64/ASMAtomicBitClear.asm \
236 win/amd64/ASMAtomicBitTestAndToggle.asm \
237 win/amd64/ASMAtomicBitToggle.asm \
238 win/amd64/ASMAtomicReadU64.asm \
239 win/amd64/ASMAtomicXchgU8.asm \
240 win/amd64/ASMGetCS.asm \
241 win/amd64/ASMGetDS.asm \
242 win/amd64/ASMGetES.asm \
243 common/asm/ASMGetFlags.asm \
244 win/amd64/ASMGetFS.asm \
245 win/amd64/ASMGetGS.asm \
246 win/amd64/ASMGetSS.asm \
247 win/amd64/ASMProbeReadByte.asm \
248 common/asm/ASMSetFlags.asm \
249 common/asm/ASMAddFlags.asm \
250 win/amd64/ASMGetDR0.asm \
251 win/amd64/ASMGetDR1.asm \
252 win/amd64/ASMGetDR2.asm \
253 win/amd64/ASMGetDR3.asm \
254 win/amd64/ASMGetDR6.asm \
255 win/amd64/ASMGetDR7.asm \
256 common/asm/ASMAtomicCmpXchgU8.asm \
257 common/asm/ASMAtomicCmpXchgU16.asm \
258 common/asm/ASMAtomicXchgU16.asm \
259 common/asm/ASMBitFirstClear.asm \
260 common/asm/ASMBitFirstSet.asm \
261 common/asm/ASMBitNextClear.asm \
262 common/asm/ASMBitNextSet.asm \
263 common/asm/ASMMultU32ByU32DivByU32.asm \
264 common/asm/ASMMultU64ByU32DivByU32.asm \
265 common/asm/ASMCpuId_Idx_ECX.asm \
266 common/asm/ASMNopPause.asm \
267 common/asm/ASMGetIDTR.asm \
268 common/asm/ASMGetIdtrLimit.asm \
269 common/asm/ASMSetIDTR.asm \
270 common/asm/ASMGetGDTR.asm \
271 common/asm/ASMSetGDTR.asm \
272 common/asm/ASMGetLDTR.asm \
273 common/asm/ASMGetSegAttr.asm \
274 common/asm/ASMGetFSBase.asm \
275 common/asm/ASMSetFSBase.asm \
276 common/asm/ASMGetGSBase.asm \
277 common/asm/ASMSetGSBase.asm \
278 common/asm/ASMGetTR.asm
279
280#
281# Win32 assembly sources.
282#
283RuntimeWin32ASM_SOURCES = \
284 common/asm/ASMAtomicCmpXchgU8.asm \
285 common/asm/ASMAtomicCmpXchgU16.asm \
286 common/asm/ASMAtomicXchgU16.asm \
287 common/asm/ASMMultU32ByU32DivByU32.asm \
288 common/asm/ASMMultU64ByU32DivByU32.asm \
289 common/asm/ASMCpuId_Idx_ECX.asm \
290 common/asm/ASMGetSegAttr.asm
291
292
293#
294# NoCRT sources (minus math stuff).
295#
296if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
297 RuntimeNoCrt_SOURCES = \
298 common/misc/setjmp.asm \
299 common/string/bzero.asm \
300 common/string/memchr.asm \
301 common/string/memcmp.asm \
302 common/string/memcpy.asm \
303 common/string/mempcpy.asm \
304 common/string/memmove.asm \
305 common/string/memset.asm \
306 common/string/strchr.asm \
307 common/string/strcpy.asm \
308 common/string/strncpy.asm \
309 common/string/strcmp.asm \
310 common/string/strlen.asm
311endif
312
313
314#
315# RuntimeBaseR3 - Commmon Base Runtime Target for Ring-3 executables.
316#
317# Note! This is not make itself, it's only used as a base target config to be
318# inherited from by RuntimeR3(.lib) and VBoxR3(.dll).
319#
320RuntimeBaseR3_TEMPLATE = VBoxR3Static
321RuntimeBaseR3_SDKS = VBoxLibXml2
322RuntimeBaseR3_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK)
323RuntimeBaseR3_DEFS = \
324 IN_RT_R3 \
325 LDR_WITH_NATIVE \
326 LDR_WITH_ELF32 \
327 LDR_WITH_LX \
328 LDR_WITH_MACHO \
329 LDR_WITH_PE \
330 RT_WITH_VBOX \
331 RT_NO_GIP \
332 RT_WITHOUT_NOCRT_WRAPPERS \
333 NOFILEID
334if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
335 RuntimeBaseR3_DEFS += \
336 IN_SUP_R3
337endif
338#RuntimeBaseR3_DEFS += RTMEM_WRAP_TO_EF_APIS
339ifdef IPRT_WITH_LZJB
340 RuntimeBaseR3_DEFS += RTZIP_USE_LZJB
341endif
342ifdef IPRT_WITH_LZO
343 RuntimeBaseR3_DEFS += RTZIP_USE_LZO
344endif
345ifn1of ($(KBUILD_TARGET), win)
346 RuntimeBaseR3_DEFS += RT_WITH_ICONV_CACHE
347endif
348ifdef IPRT_WITH_FUTEX_BASED_SEMS
349 RuntimeBaseR3_DEFS.linux += IPRT_WITH_FUTEX_BASED_SEMS
350endif
351ifdef IPRT_HTTP_WITH_WEBDAV
352 RuntimeBaseR3_DEFS += IPRT_HTTP_WITH_WEBDAV
353endif
354ifdef IPRT_WITHOUT_PAM
355 RuntimeBaseR3_DEFS += IPRT_WITHOUT_PAM
356endif
357RuntimeBaseR3_INCS = \
358 include \
359 $(SDK_VBoxZlib_INCS) \
360 $(SDK_VBoxLzf_INCS)
361
362# RuntimeBaseR3_INCS.solaris = \
363# /usr/include
364
365RuntimeBaseR3_SOURCES := \
366 common/alloc/alloc.cpp \
367 common/alloc/heapsimple.cpp \
368 common/alloc/heapoffset.cpp \
369 common/alloc/memcache.cpp \
370 common/alloc/memtracker.cpp \
371 common/asn1/asn1-basics.cpp \
372 common/asn1/asn1-cursor.cpp \
373 common/asn1/asn1-default-allocator.cpp \
374 common/asn1/asn1-efence-allocator.cpp \
375 common/asn1/asn1-safer-allocator.cpp \
376 common/asn1/asn1-dump.cpp \
377 common/asn1/asn1-encode.cpp \
378 common/asn1/asn1-ut-bitstring.cpp \
379 common/asn1/asn1-ut-bitstring-decode.cpp \
380 common/asn1/asn1-ut-boolean.cpp \
381 common/asn1/asn1-ut-boolean-decode.cpp \
382 common/asn1/asn1-ut-core.cpp \
383 common/asn1/asn1-ut-core-decode.cpp \
384 common/asn1/asn1-ut-dyntype.cpp \
385 common/asn1/asn1-ut-dyntype-decode.cpp \
386 common/asn1/asn1-ut-integer.cpp \
387 common/asn1/asn1-ut-integer-decode.cpp \
388 common/asn1/asn1-ut-null.cpp \
389 common/asn1/asn1-ut-null-decode.cpp \
390 common/asn1/asn1-ut-objid.cpp \
391 common/asn1/asn1-ut-objid-decode.cpp \
392 common/asn1/asn1-ut-octetstring.cpp \
393 common/asn1/asn1-ut-octetstring-decode.cpp \
394 common/asn1/asn1-ut-string.cpp \
395 common/asn1/asn1-ut-string-decode.cpp \
396 common/asn1/asn1-ut-time.cpp \
397 common/asn1/asn1-ut-time-decode.cpp \
398 common/checksum/adler32.cpp \
399 common/checksum/crc32.cpp \
400 common/checksum/crc32c.cpp \
401 common/checksum/crc64.cpp \
402 common/checksum/crc16ccitt.cpp \
403 common/checksum/alt-md2.cpp \
404 common/checksum/alt-md4.cpp \
405 common/checksum/alt-md5.cpp \
406 common/checksum/alt-sha1.cpp \
407 common/checksum/alt-sha256.cpp \
408 common/checksum/alt-sha512.cpp \
409 common/checksum/alt-sha3.cpp \
410 common/checksum/md2str.cpp \
411 common/checksum/md4str.cpp \
412 common/checksum/md5str.cpp \
413 common/checksum/ipv4.cpp \
414 common/checksum/ipv6.cpp \
415 common/checksum/manifest.cpp \
416 common/checksum/manifest2.cpp \
417 common/checksum/manifest3.cpp \
418 common/checksum/manifest-file.cpp \
419 common/checksum/RTSha1Digest.cpp \
420 common/checksum/RTSha256Digest.cpp \
421 common/checksum/sha1str.cpp \
422 common/checksum/sha224str.cpp \
423 common/checksum/sha256str.cpp \
424 common/checksum/sha384str.cpp \
425 common/checksum/sha512str.cpp \
426 common/checksum/sha512t224str.cpp \
427 common/checksum/sha512t256str.cpp \
428 common/crypto/cipher-openssl.cpp \
429 common/crypto/digest-core.cpp \
430 common/crypto/digest-builtin.cpp \
431 common/crypto/digest-vfs.cpp \
432 common/crypto/iprt-openssl.cpp \
433 common/crypto/key.cpp \
434 common/crypto/key-file.cpp \
435 common/crypto/key-openssl.cpp \
436 common/crypto/key-create-rsa-openssl.cpp \
437 common/crypto/rc4-openssl.cpp \
438 common/crypto/rsa-asn1-decoder.cpp \
439 common/crypto/rsa-core.cpp \
440 common/crypto/rsa-init.cpp \
441 common/crypto/rsa-sanity.cpp \
442 common/crypto/pemfile-read.cpp \
443 common/crypto/pemfile-write.cpp \
444 common/crypto/pkcs7-asn1-decoder.cpp \
445 common/crypto/pkcs7-core.cpp \
446 common/crypto/pkcs7-file.cpp \
447 common/crypto/pkcs7-init.cpp \
448 common/crypto/pkcs7-sanity.cpp \
449 common/crypto/pkcs7-sign.cpp \
450 common/crypto/pkcs7-verify.cpp \
451 common/crypto/pkix-sign.cpp \
452 common/crypto/pkix-signature-builtin.cpp \
453 common/crypto/pkix-signature-core.cpp \
454 common/crypto/pkix-signature-rsa.cpp \
455 common/crypto/pkix-util.cpp \
456 common/crypto/pkix-verify.cpp \
457 common/crypto/spc-asn1-decoder.cpp \
458 common/crypto/spc-core.cpp \
459 common/crypto/spc-init.cpp \
460 common/crypto/spc-sanity.cpp \
461 common/crypto/ssl-openssl.cpp \
462 common/crypto/x509-asn1-decoder.cpp \
463 common/crypto/x509-certpaths.cpp \
464 common/crypto/x509-core.cpp \
465 common/crypto/x509-file.cpp \
466 common/crypto/x509-init.cpp \
467 common/crypto/x509-sanity.cpp \
468 common/crypto/x509-verify.cpp \
469 common/crypto/taf-asn1-decoder.cpp \
470 common/crypto/taf-core.cpp \
471 common/crypto/taf-init.cpp \
472 common/crypto/taf-sanity.cpp \
473 common/crypto/tsp-asn1-decoder.cpp \
474 common/crypto/tsp-core.cpp \
475 common/crypto/tsp-init.cpp \
476 common/crypto/tsp-sanity.cpp \
477 common/crypto/store.cpp \
478 common/crypto/store-inmem.cpp \
479 common/crypto/store-cert-add-basic.cpp \
480 common/crypto/RTCrPkcs5Pbkdf2Hmac-openssl.cpp \
481 common/crypto/RTCrRandBytes-openssl.cpp \
482 common/crypto/RTCrStoreCertAddFromJavaKeyStore.cpp \
483 common/crypto/RTCrStoreCertAddWantedFromFishingExpedition.cpp \
484 common/crypto/RTCrStoreCertExportAsPem.cpp \
485 common/crypto/RTCrStoreCreateSnapshotOfUserAndSystemTrustedCAsAndCerts.cpp \
486 common/dbg/dbg.cpp \
487 common/dbg/dbgas.cpp \
488 common/dbg/dbgcfg.cpp \
489 common/dbg/dbgmod.cpp \
490 common/dbg/dbgmodldr.cpp \
491 common/dbg/dbgmodcontainer.cpp \
492 common/dbg/dbgmoddeferred.cpp \
493 common/dbg/dbgmodexports.cpp \
494 common/dbg/dbgmodcodeview.cpp \
495 common/dbg/dbgmoddwarf.cpp \
496 common/dbg/dbgmodmapsym.cpp \
497 common/dbg/dbgmodnm.cpp \
498 common/dvm/dvm.cpp \
499 common/dvm/dvmbsdlabel.cpp \
500 common/dvm/dvmgpt.cpp \
501 common/dvm/dvmmbr.cpp \
502 common/dvm/dvmvfs.cpp \
503 common/efi/efiguid.cpp \
504 common/efi/efitime.cpp \
505 common/efi/efisignaturedb.cpp \
506 common/efi/efivarstorevfs.cpp \
507 common/err/errinfo.cpp \
508 common/err/errinfolog.cpp \
509 common/err/errinfo-alloc.cpp \
510 common/err/errmsg.cpp \
511 common/err/RTErrConvertFromErrno.cpp \
512 common/err/RTErrConvertToErrno.cpp \
513 common/fs/extvfs.cpp \
514 common/fs/fatvfs.cpp \
515 common/fs/isovfs.cpp \
516 common/fs/isomaker.cpp \
517 common/fs/isomakercmd.cpp \
518 common/fs/isomakerimport.cpp \
519 common/fs/ntfsvfs.cpp \
520 common/fs/RTFsCmdLs.cpp \
521 common/ioqueue/ioqueuebase.cpp \
522 common/ioqueue/ioqueue-stdfile-provider.cpp \
523 common/ldr/ldr.cpp \
524 common/ldr/ldrELF.cpp \
525 common/ldr/ldrEx.cpp \
526 common/ldr/ldrFile.cpp \
527 common/ldr/ldrVfsFile.cpp \
528 common/ldr/ldrLX.cpp \
529 common/ldr/ldrMachO.cpp \
530 common/ldr/ldrMemory.cpp \
531 common/ldr/ldrNative.cpp \
532 common/ldr/ldrPE.cpp \
533 common/log/log.cpp \
534 common/log/log-weak.cpp \
535 common/log/log-weak-assert.cpp \
536 common/log/log-weak-rel.cpp \
537 common/log/logellipsis.cpp \
538 common/log/logrel.cpp \
539 common/log/logrelellipsis.cpp \
540 common/log/logcom.cpp \
541 common/log/logformat.cpp \
542 common/log/tracebuf.cpp \
543 common/log/tracedefault.cpp \
544 common/log/tracelogreader.cpp \
545 common/log/tracelogwriter.cpp \
546 common/log/RTLogCreateEx.cpp \
547 common/math/bignum.cpp \
548 common/misc/RTAssertMsg1Weak.cpp \
549 common/misc/RTAssertMsg2.cpp \
550 common/misc/RTAssertMsg2Add.cpp \
551 common/misc/RTAssertMsg2AddWeak.cpp \
552 common/misc/RTAssertMsg2AddWeakV.cpp \
553 common/misc/RTAssertMsg2Weak.cpp \
554 common/misc/RTAssertMsg2WeakV.cpp \
555 common/misc/RTFileModeToFlags.cpp \
556 common/misc/RTFileOpenF.cpp \
557 common/misc/RTFileOpenV.cpp \
558 common/misc/RTMemWipeThoroughly.cpp \
559 common/misc/RTSystemFirmwareTypeName.cpp \
560 common/misc/assert.cpp \
561 common/misc/buildconfig.cpp \
562 common/misc/cidr.cpp \
563 common/misc/expreval.cpp \
564 common/misc/getopt.cpp \
565 common/misc/getoptargv.cpp \
566 common/misc/handle.cpp \
567 common/misc/handletable.cpp \
568 common/misc/handletablectx.cpp \
569 common/misc/handletablesimple.cpp \
570 common/misc/inifile.cpp \
571 common/misc/json.cpp \
572 common/misc/lockvalidator.cpp \
573 common/misc/message.cpp \
574 common/misc/messagerefentry.cpp \
575 common/misc/once.cpp \
576 common/misc/req.cpp \
577 common/misc/reqpool.cpp \
578 common/misc/reqqueue.cpp \
579 common/misc/sanity-c.c \
580 common/misc/sanity-cpp.cpp \
581 common/misc/semspingpong.cpp \
582 common/misc/sg.cpp \
583 common/misc/circbuf.cpp \
584 common/misc/thread.cpp \
585 common/misc/term.cpp \
586 common/misc/uri.cpp \
587 common/net/netaddrstr2.cpp \
588 common/net/macstr.cpp \
589 common/path/rtPathRootSpecLen.cpp \
590 common/path/rtPathVolumeSpecLen.cpp \
591 common/path/RTPathAbsDup.cpp \
592 common/path/RTPathAbsEx.cpp \
593 common/path/RTPathAbsExDup.cpp \
594 common/path/RTPathAppend.cpp \
595 common/path/RTPathAppendEx.cpp \
596 common/path/RTPathCalcRelative.cpp \
597 common/path/RTPathChangeToDosSlashes.cpp \
598 common/path/RTPathChangeToUnixSlashes.cpp \
599 common/path/RTPathCopyComponents.cpp \
600 common/path/RTPathCountComponents.cpp \
601 common/path/RTPathEnsureTrailingSeparator.cpp \
602 common/path/RTPathExt.cpp \
603 common/path/RTPathFilename.cpp \
604 common/path/RTPathFilenameUtf16.cpp \
605 common/path/RTPathFindCommon.cpp \
606 common/path/RTPathGlob.cpp \
607 common/path/RTPathHasExt.cpp \
608 common/path/RTPathHasPath.cpp \
609 common/path/RTPathJoin.cpp \
610 common/path/RTPathJoinA.cpp \
611 common/path/RTPathJoinEx.cpp \
612 common/path/RTPathParentLength.cpp \
613 common/path/RTPathParse.cpp \
614 common/path/RTPathParsedReassemble.cpp \
615 common/path/RTPathParseSimple.cpp \
616 common/path/RTPathPurgeFilename.cpp \
617 common/path/RTPathRealDup.cpp \
618 common/path/RTPathRmCmd.cpp \
619 common/path/RTPathSkipRootSpec.cpp \
620 common/path/RTPathSplit.cpp \
621 common/path/RTPathSplitA.cpp \
622 common/path/RTPathSplitReassemble.cpp \
623 common/path/RTPathStartsWithRoot.cpp \
624 common/path/RTPathStripExt.cpp \
625 common/path/RTPathStripFilename.cpp \
626 common/path/RTPathStripTrailingSlash.cpp \
627 common/path/RTPathTraverseList.cpp \
628 common/path/comparepaths.cpp \
629 common/rand/rand.cpp \
630 common/rand/randadv.cpp \
631 common/rand/randparkmiller.cpp \
632 common/sort/RTSortIsSorted.cpp \
633 common/sort/RTSortApvIsSorted.cpp \
634 common/sort/shellsort.cpp \
635 common/string/RTStrCat.cpp \
636 common/string/RTStrCatEx.cpp \
637 common/string/RTStrCatP.cpp \
638 common/string/RTStrCatPEx.cpp \
639 common/string/RTStrCmp.cpp \
640 common/string/RTStrCopy.cpp \
641 common/string/RTStrCopyEx.cpp \
642 common/string/RTStrCopyP.cpp \
643 common/string/RTStrCopyPEx.cpp \
644 common/string/RTStrNCmp.cpp \
645 common/string/RTStrNLen.cpp \
646 common/string/RTStrNLenEx.cpp \
647 common/string/RTStrPrintHexBytes.cpp \
648 common/string/RTStrStartsWith.cpp \
649 common/string/RTStrIStartsWith.cpp \
650 common/string/RTStrICmpAscii.cpp \
651 common/string/RTStrNICmpAscii.cpp \
652 common/string/RTStrSplit.cpp \
653 common/string/RTStrStr.cpp \
654 common/string/RTUtf16Copy.cpp \
655 common/string/RTUtf16CopyAscii.cpp \
656 common/string/RTUtf16CopyEx.cpp \
657 common/string/RTUtf16Cat.cpp \
658 common/string/RTUtf16CatAscii.cpp \
659 common/string/RTUtf16Chr.cpp \
660 common/string/RTUtf16CmpAscii.cpp \
661 common/string/RTUtf16ICmpAscii.cpp \
662 common/string/RTUtf16End.cpp \
663 common/string/RTUtf16NCmp.cpp \
664 common/string/RTUtf16NCmpAscii.cpp \
665 common/string/RTUtf16NCmpUtf8.cpp \
666 common/string/RTUtf16NICmpAscii.cpp \
667 common/string/RTUtf16FindAscii.cpp \
668 common/string/RTUtf16NLen.cpp \
669 common/string/RTUtf16NLenEx.cpp \
670 common/string/RTUtf16PrintHexBytes.cpp \
671 common/string/base64.cpp \
672 common/string/base64-utf16.cpp \
673 common/string/simplepattern.cpp \
674 common/string/straprintf.cpp \
675 common/string/strformat.cpp \
676 common/string/RTStrFormat.cpp \
677 common/string/strformatfloat.cpp \
678 common/string/strformatnum.cpp \
679 common/string/strformatrt.cpp \
680 common/string/strformattype.cpp \
681 common/string/strhash1.cpp \
682 common/string/stringalloc.cpp \
683 common/string/strprintf.cpp \
684 common/string/strprintf-ellipsis.cpp \
685 common/string/strprintf2.cpp \
686 common/string/strprintf2-ellipsis.cpp \
687 common/string/strcache.cpp \
688 common/string/strspace.cpp \
689 common/string/strstrip.cpp \
690 common/string/strtofloat.cpp \
691 common/string/strtonum.cpp \
692 common/string/strversion.cpp \
693 common/string/uni.cpp \
694 common/string/unidata-flags.cpp \
695 common/string/unidata-lower.cpp \
696 common/string/unidata-upper.cpp \
697 common/string/utf-16.cpp \
698 common/string/utf-16-case.cpp \
699 common/string/utf-16-latin-1.cpp \
700 common/string/utf-16-printf.cpp \
701 common/string/utf-8.cpp \
702 common/string/utf-8-case.cpp \
703 common/string/utf-8-case2.cpp \
704 common/string/ministring.cpp \
705 common/table/avlgcptr.cpp \
706 common/table/avlhcphys.cpp \
707 common/table/avlgcphys.cpp \
708 common/table/avllu32.cpp \
709 common/table/avlou32.cpp \
710 common/table/avlogcphys.cpp \
711 common/table/avlogcptr.cpp \
712 common/table/avlohcphys.cpp \
713 common/table/avloioport.cpp \
714 common/table/avlpv.cpp \
715 common/table/avlrgcptr.cpp \
716 common/table/avlrogcphys.cpp \
717 common/table/avlrogcptr.cpp \
718 common/table/avlroioport.cpp \
719 common/table/avlroogcptr.cpp \
720 common/table/avlrpv.cpp \
721 common/table/avlruintptr.cpp \
722 common/table/avlrfoff.cpp \
723 common/table/avlru64.cpp \
724 common/table/avlu32.cpp \
725 common/table/avlu64.cpp \
726 common/table/avluintptr.cpp \
727 common/table/avlul.cpp \
728 common/table/table.cpp \
729 common/time/time.cpp \
730 common/time/timeprog.cpp \
731 common/time/timesup.cpp \
732 common/time/timezoneinfo.cpp \
733 common/time/RTTimeFormatDurationEx.cpp \
734 common/vfs/vfsbase.cpp \
735 common/vfs/vfschain.cpp \
736 common/vfs/vfsfss2dir.cpp \
737 common/vfs/vfsiosmisc.cpp \
738 common/vfs/vfsmemory.cpp \
739 common/vfs/vfsmisc.cpp \
740 common/vfs/vfsmount.cpp \
741 common/vfs/vfsmsg.cpp \
742 common/vfs/vfsprogress.cpp \
743 common/vfs/vfsreadahead.cpp \
744 common/vfs/vfsstddir.cpp \
745 common/vfs/vfsstdfile.cpp \
746 common/vfs/vfsstdpipe.cpp \
747 common/vfs/vfsprintf.cpp \
748 common/zip/cpiovfs.cpp \
749 common/zip/tarcmd.cpp \
750 common/zip/tarvfs.cpp \
751 common/zip/tarvfswriter.cpp \
752 common/zip/gzipvfs.cpp \
753 common/zip/gzipcmd.cpp \
754 common/zip/pkzip.cpp \
755 common/zip/pkzipvfs.cpp \
756 common/zip/unzipcmd.cpp \
757 common/zip/zip.cpp \
758 generic/createtemp-generic.cpp \
759 generic/critsect-generic.cpp \
760 generic/critsectrw-generic.cpp \
761 generic/env-generic.cpp \
762 generic/http.cpp \
763 generic/RTDirCreateUniqueNumbered-generic.cpp \
764 generic/RTEnvDupEx-generic.cpp \
765 generic/RTFileCopy-generic.cpp \
766 generic/RTFileCopyAttributes-generic.cpp \
767 generic/RTFileCopyEx-generic.cpp \
768 generic/RTFileCopyByHandlesEx-generic.cpp \
769 generic/RTFileCopyPart-generic.cpp \
770 generic/RTFileQuerySize-generic.cpp \
771 generic/RTFileReadAll-generic.cpp \
772 generic/RTFileReadAllEx-generic.cpp \
773 generic/RTFileReadAllByHandle-generic.cpp \
774 generic/RTFileReadAllByHandleEx-generic.cpp \
775 generic/RTFileReadAllFree-generic.cpp \
776 generic/RTLogWriteStdErr-generic.cpp \
777 generic/RTLogWriteStdOut-generic.cpp \
778 generic/RTLogWriteUser-generic.cpp \
779 generic/RTPathGetCurrentDrive-generic.cpp \
780 generic/RTPathIsSame-generic.cpp \
781 generic/RTProcSignalName-generic.cpp \
782 generic/RTTimerLRCreate-generic.cpp \
783 generic/rtStrFormatKernelAddress-generic.cpp \
784 generic/mempool-generic.cpp \
785 generic/semfastmutex-generic.cpp \
786 generic/semxroads-generic.cpp \
787 generic/spinlock-generic.cpp \
788 generic/timerlr-generic.cpp \
789 r3/alloc-ef.cpp \
790 r3/alloc.cpp \
791 r3/allocex.cpp \
792 r3/dir.cpp \
793 r3/dir2.cpp \
794 r3/fileio.cpp \
795 r3/fs.cpp \
796 r3/ftp-server.cpp \
797 r3/http-server.cpp \
798 r3/init.cpp \
799 r3/init-data.cpp \
800 r3/process-data.cpp \
801 r3/memsafer-r3.cpp \
802 r3/path.cpp \
803 r3/RTPathTemp.cpp \
804 r3/poll.cpp \
805 r3/process.cpp \
806 r3/socket.cpp \
807 r3/stream.cpp \
808 r3/test.cpp \
809 r3/testi.cpp \
810 r3/tcp.cpp \
811 r3/udp.cpp \
812 r3/generic/semspinmutex-r3-generic.cpp \
813 r3/xml.cpp \
814 common/zip/xarvfs.cpp
815
816
817#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
818# RuntimeBaseR3_SOURCES += common/time/timesupA.asm
819#else
820RuntimeBaseR3_SOURCES += common/time/timesupref.cpp
821#endif
822
823RuntimeBaseR3_SOURCES.x86 += \
824 generic/RTMpGetDescription-generic.cpp \
825 common/misc/zero.asm \
826 common/misc/RTSystemIsInsideVM-amd64-x86.cpp \
827 common/string/RTStrMemFind32.asm \
828 VBox/RTLogWriteVmm-amd64-x86.asm
829RuntimeBaseR3_SOURCES.amd64 += \
830 generic/RTMpGetDescription-generic.cpp \
831 common/misc/zero.asm \
832 common/misc/RTSystemIsInsideVM-amd64-x86.cpp \
833 common/string/RTStrMemFind32.asm \
834 VBox/RTLogWriteVmm-amd64-x86.asm
835RuntimeBaseR3_SOURCES.arm32 := \
836 common/asm/ASMBitFirstClear-generic.cpp \
837 common/asm/ASMBitNextClear-generic.cpp \
838 common/asm/ASMBitFirstSet-generic.cpp \
839 common/asm/ASMBitNextSet-generic.cpp \
840 common/asm/ASMMemZeroPage-generic.cpp \
841 common/asm/ASMMemZero32-generic.cpp \
842 common/asm/ASMMemFill32-generic.cpp \
843 common/asm/ASMMemFirstMismatchingU8-generic.cpp \
844 common/asm/ASMMemFirstNonZero-generic.cpp \
845 common/misc/zero-alt.S
846RuntimeBaseR3_SOURCES.arm64 := \
847 common/asm/ASMBitFirstClear-generic.cpp \
848 common/asm/ASMBitNextClear-generic.cpp \
849 common/asm/ASMBitFirstSet-generic.cpp \
850 common/asm/ASMBitNextSet-generic.cpp \
851 common/asm/ASMMemZeroPage-generic.cpp \
852 common/asm/ASMMemZero32-generic.cpp \
853 common/asm/ASMMemFill32-generic.cpp \
854 common/asm/ASMMemFirstMismatchingU8-generic.cpp \
855 common/asm/ASMMemFirstNonZero-generic.cpp \
856 common/misc/zero-alt.S
857RuntimeBaseR3_SOURCES.sparc32 += \
858 generic/RTMpGetDescription-generic-stub.cpp \
859 generic/RTSystemIsInsideVM-generic.cpp \
860 common/asm/ASMBitFirstClear-generic.cpp \
861 common/asm/ASMBitNextClear-generic.cpp \
862 common/asm/ASMBitFirstSet-generic.cpp \
863 common/asm/ASMBitNextSet-generic.cpp \
864 common/asm/ASMMemZeroPage-generic.cpp \
865 common/asm/ASMMemZero32-generic.cpp \
866 common/asm/ASMMemFill32-generic.cpp \
867 common/asm/ASMMemFirstMismatchingU8-generic.cpp \
868 common/asm/ASMMemFirstNonZero-generic.cpp \
869 common/asm/asm-fake.cpp \
870 common/misc/zero-alt.S \
871 common/string/RTStrMemFind32.cpp
872RuntimeBaseR3_SOURCES.sparc64 += \
873 generic/RTMpGetDescription-generic-stub.cpp \
874 generic/RTSystemIsInsideVM-generic.cpp \
875 common/asm/ASMBitFirstClear-generic.cpp \
876 common/asm/ASMBitNextClear-generic.cpp \
877 common/asm/ASMBitFirstSet-generic.cpp \
878 common/asm/ASMBitNextSet-generic.cpp \
879 common/asm/ASMMemZeroPage-generic.cpp \
880 common/asm/ASMMemZero32-generic.cpp \
881 common/asm/ASMMemFill32-generic.cpp \
882 common/asm/ASMMemFirstMismatchingU8-generic.cpp \
883 common/asm/ASMMemFirstNonZero-generic.cpp \
884 common/asm/asm-fake.cpp \
885 common/misc/zero-alt.S \
886 common/string/RTStrMemFind32.cpp
887
888ifdef IPRT_WITH_LZJB
889 RuntimeBaseR3_SOURCES += common/misc/lzjb.c
890endif
891
892# AMD64 / x86 assembly code.
893RuntimeBaseR3_SOURCES.x86 += \
894 common/asm/ASMCpuIdExSlow.asm \
895 common/asm/ASMAtomicUoAndU64.asm \
896 common/asm/ASMAtomicUoAndU32.asm \
897 common/asm/ASMAtomicUoDecU32.asm \
898 common/asm/ASMAtomicUoIncU32.asm \
899 common/asm/ASMAtomicUoOrU64.asm \
900 common/asm/ASMAtomicUoOrU32.asm \
901 common/asm/ASMAtomicUoXorU32.asm \
902 common/asm/ASMMemFirstMismatchingU8.asm \
903 common/asm/ASMRdMsrEx.asm \
904 common/asm/ASMWrMsrEx.asm \
905 common/asm/ASMGetXcr0.asm \
906 common/asm/ASMSetXcr0.asm \
907 common/asm/ASMXSave.asm \
908 common/asm/ASMXRstor.asm \
909 common/asm/ASMFxSave.asm \
910 common/asm/ASMFxRstor.asm \
911 common/asm/ASMSerializeInstruction-cpuid.asm \
912 common/asm/ASMSerializeInstruction-iret.asm \
913 common/asm/ASMSerializeInstruction-rdtscp.asm \
914 common/dbg/dbgstackdumpself.cpp \
915 common/dbg/dbgstackdumpself-amd64-x86.asm \
916 common/math/bignum-amd64-x86.asm \
917 common/string/RTStrEnd.asm
918RuntimeBaseR3_SOURCES.amd64 += \
919 common/asm/ASMCpuIdExSlow.asm \
920 common/asm/ASMAtomicUoAndU64.asm \
921 common/asm/ASMAtomicUoAndU32.asm \
922 common/asm/ASMAtomicUoDecU32.asm \
923 common/asm/ASMAtomicUoIncU32.asm \
924 common/asm/ASMAtomicUoOrU64.asm \
925 common/asm/ASMAtomicUoOrU32.asm \
926 common/asm/ASMAtomicUoXorU32.asm \
927 common/asm/ASMMemFirstMismatchingU8.asm \
928 common/asm/ASMRdMsrEx.asm \
929 common/asm/ASMWrMsrEx.asm \
930 common/asm/ASMGetXcr0.asm \
931 common/asm/ASMSetXcr0.asm \
932 common/asm/ASMXSave.asm \
933 common/asm/ASMXRstor.asm \
934 common/asm/ASMFxSave.asm \
935 common/asm/ASMFxRstor.asm \
936 common/asm/ASMSerializeInstruction-cpuid.asm \
937 common/asm/ASMSerializeInstruction-iret.asm \
938 common/asm/ASMSerializeInstruction-rdtscp.asm \
939 common/dbg/dbgstackdumpself.cpp \
940 common/dbg/dbgstackdumpself-amd64-x86.asm \
941 common/math/bignum-amd64-x86.asm \
942 common/math/RTUInt128MulByU64.asm \
943 common/math/RTUInt128MulByU64Ex.asm \
944 common/string/RTStrEnd.asm
945
946# Some versions of GCC might require this.
947RuntimeBaseR3_SOURCES.x86 += \
948 common/asm/ASMAtomicXchgU64.asm \
949 common/asm/ASMAtomicCmpXchgU64.asm \
950 common/asm/ASMAtomicCmpXchgExU64.asm \
951 common/asm/ASMAtomicReadU64.asm \
952 common/asm/ASMAtomicUoReadU64.asm
953
954# Some non-assembly for non-AMD64 / non-x86 targets:
955RuntimeBaseR3_SOURCES.arm32 += \
956 common/string/RTStrEnd.cpp \
957 common/asm/ASMMultU64ByU32DivByU32-generic.cpp
958RuntimeBaseR3_SOURCES.arm64 += \
959 common/string/RTStrEnd.cpp \
960 common/asm/ASMMultU64ByU32DivByU32-generic.cpp
961RuntimeBaseR3_SOURCES.sparc32 += \
962 common/string/RTStrEnd.cpp \
963 common/asm/ASMMultU64ByU32DivByU32-generic.cpp
964RuntimeBaseR3_SOURCES.sparc64 += \
965 common/string/RTStrEnd.cpp \
966 common/asm/ASMMultU64ByU32DivByU32-generic.cpp
967
968# VBox specific stuff.
969RuntimeBaseR3_SOURCES += \
970 VBox/RTAssertShouldPanic-vbox.cpp \
971 VBox/log-vbox.cpp
972ifneq ($(KBUILD_TARGET),win)
973 RuntimeBaseR3_SOURCES += \
974 common/err/errmsgxpcom.cpp
975endif
976if1of ($(KBUILD_TARGET), freebsd linux netbsd openbsd solaris)
977 RuntimeBaseR3_SOURCES += \
978 $(if $(VBOX_WITH_DBUS),VBox/dbus.cpp,)
979endif
980
981VBOX_WITH_NT_DIRENUM = 1
982RuntimeBaseR3_SOURCES.win = \
983 common/dbg/dbgmoddbghelp.cpp \
984 common/ioqueue/ioqueue-aiofile-provider.cpp \
985 generic/cdrom-generic.cpp \
986 generic/RTDirExists-generic.cpp \
987 generic/RTDirSetMode-generic.cpp \
988 generic/RTDirSetTimes-generic.cpp \
989 generic/fileio-sg-generic.cpp \
990 generic/fileio-sg-at-generic.cpp \
991 generic/RTFileCopyPartEx-generic.cpp \
992 generic/RTFileExists-generic.cpp \
993 generic/RTFileSetAllocationSize-generic.cpp \
994 generic/RTMpGetCurFrequency-generic.cpp \
995 generic/RTMpGetMaxFrequency-generic.cpp \
996 generic/RTRandAdvCreateSystemFaster-generic.cpp \
997 generic/RTRandAdvCreateSystemTruer-generic.cpp \
998 generic/RTSemEventWait-2-ex-generic.cpp \
999 generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
1000 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1001 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1002 generic/RTSemMutexRequest-generic.cpp \
1003 generic/RTSemMutexRequestDebug-generic.cpp \
1004 generic/RTTimerCreate-generic.cpp \
1005 generic/RTThreadSetAffinityToCpu-generic.cpp \
1006 generic/mppresent-generic-online.cpp \
1007 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
1008 generic/uuid-generic.cpp \
1009 generic/RTProcDaemonize-generic.cpp \
1010 generic/RTProcIsRunningByName-generic.cpp \
1011 generic/RTThreadGetNativeState-generic.cpp \
1012 nt/RTErrConvertFromNtStatus.cpp \
1013 nt/RTNtPathExpand8dot3Path.cpp \
1014 nt/RTNtPathExpand8dot3PathA.cpp \
1015 nt/RTNtPathFindPossible8dot3Name.cpp \
1016 nt/fileioutils-nt.cpp \
1017 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1018 r3/nt/dirrel-r3-nt.cpp \
1019 r3/nt/fs-nt.cpp \
1020 r3/nt/pathint-nt.cpp \
1021 r3/nt/RTFileQueryFsSizes-nt.cpp \
1022 r3/nt/RTFileSetMode-r3-nt.cpp \
1023 r3/nt/RTPathQueryInfo-nt.cpp \
1024 r3/nt/RTPathSetMode-r3-nt.cpp \
1025 r3/nt/RTProcQueryParent-r3-nt.cpp \
1026 nt/semevent-nt.cpp \
1027 nt/RTSemEventGetResolution-nt.cpp \
1028 nt/semeventmulti-nt.cpp \
1029 nt/RTSemEventMultiGetResolution-nt.cpp \
1030 r3/win/env-win.cpp \
1031 r3/win/RTCrStoreCreateSnapshotById-win.cpp \
1032 r3/win/RTFileQuerySectorSize-win.cpp \
1033 r3/win/RTHandleGetStandard-win.cpp \
1034 r3/win/RTLocaleQueryNormalizedBaseLocaleName-win.cpp \
1035 r3/win/RTLocaleQueryUserCountryCode-win.cpp \
1036 r3/win/RTSystemQueryOSInfo-win.cpp \
1037 r3/win/RTSystemShutdown-win.cpp \
1038 r3/win/RTSystemQueryDmiString-win.cpp \
1039 r3/win/RTSystemFirmware-win.cpp \
1040 r3/win/RTSystemQueryTotalRam-win.cpp \
1041 r3/win/RTTimeZoneGetCurrent-win.cpp \
1042 r3/win/alloc-win.cpp \
1043 r3/win/allocex-win.cpp \
1044 r3/win/dir-win.cpp \
1045 $(if-expr defined(VBOX_WITH_NT_DIRENUM),r3/nt/direnum-r3-nt.cpp,r3/win/direnum-win.cpp generic/RTDirQueryInfo-generic.cpp) \
1046 r3/win/errvars-win.cpp \
1047 r3/win/fileaio-win.cpp \
1048 r3/win/fileio-win.cpp \
1049 r3/win/init-win.cpp \
1050 r3/win/krnlmod-win.cpp \
1051 r3/win/ldrNative-win.cpp \
1052 r3/win/localipc-win.cpp \
1053 r3/win/mp-win.cpp \
1054 r3/win/path-win.cpp \
1055 r3/win/pathint-win.cpp \
1056 r3/win/pipe-win.cpp \
1057 r3/win/process-win.cpp \
1058 r3/win/RTLogWriteDebugger-win.cpp \
1059 r3/win/rtProcInitExePath-win.cpp \
1060 r3/win/sched-win.cpp \
1061 r3/win/semmutex-win.cpp \
1062 r3/win/serialport-win.cpp \
1063 r3/win/shmem-win.cpp \
1064 r3/win/symlink-win.cpp \
1065 r3/win/system-get-nt-xxx-win.cpp \
1066 r3/win/thread-win.cpp \
1067 r3/win/thread2-win.cpp \
1068 $(if-expr 1,r3/win/time-win.cpp,r3/nt/time-nt.cpp) \
1069 r3/win/time2-win.cpp \
1070 r3/win/timer-win.cpp \
1071 r3/win/tls-win.cpp \
1072 r3/win/tpm-win.cpp \
1073 r3/win/utf16locale-win.cpp \
1074 r3/win/utf8-win.cpp \
1075 r3/win/RTUuidCreate-win.cpp \
1076 win/errmsgwin.cpp \
1077 win/RTErrConvertFromWin32.cpp \
1078 common/string/mempcpy.asm
1079
1080RuntimeBaseR3_SOURCES.win.amd64 := \
1081 $(RuntimeWin64ASM_SOURCES) \
1082 common/string/memrchr.asm
1083RuntimeBaseR3_SOURCES.win.x86 := \
1084 $(RuntimeWin32ASM_SOURCES) \
1085 common/string/memrchr.asm
1086
1087RuntimeBaseR3_SOURCES.linux = \
1088 common/ioqueue/ioqueue-aiofile-provider.cpp \
1089 generic/cdrom-generic.cpp \
1090 generic/RTCrStoreCreateSnapshotById-generic.cpp \
1091 generic/RTDirQueryInfo-generic.cpp \
1092 generic/RTDirSetMode-generic.cpp \
1093 generic/RTDirSetTimes-generic.cpp \
1094 generic/RTFileMove-generic.cpp \
1095 generic/RTLogWriteDebugger-generic.cpp \
1096 generic/RTPathGetCurrentOnDrive-generic.cpp \
1097 generic/RTProcDaemonize-generic.cpp \
1098 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1099 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1100 generic/RTTimeLocalNow-generic.cpp \
1101 generic/RTTimerCreate-generic.cpp \
1102 generic/RTThreadSetAffinityToCpu-generic.cpp \
1103 generic/RTUuidCreate-generic.cpp \
1104 generic/mppresent-generic.cpp \
1105 generic/utf16locale-generic.cpp \
1106 generic/uuid-generic.cpp \
1107 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1108 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1109 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1110 r3/generic/dirrel-r3-generic.cpp \
1111 r3/posix/allocex-r3-posix.cpp \
1112 r3/linux/RTThreadGetNativeState-linux.cpp \
1113 r3/linux/fileaio-linux.cpp \
1114 r3/linux/ioqueue-iouringfile-provider.cpp \
1115 r3/linux/krnlmod-linux.cpp \
1116 r3/linux/mp-linux.cpp \
1117 r3/linux/rtProcInitExePath-linux.cpp \
1118 r3/linux/sched-linux.cpp \
1119 r3/linux/sysfs.cpp \
1120 r3/linux/time-linux.cpp \
1121 r3/linux/thread-affinity-linux.cpp \
1122 r3/linux/tpm-linux.cpp \
1123 r3/linux/RTFileCopyPartEx-linux.cpp \
1124 r3/linux/RTFileQuerySectorSize-linux.cpp \
1125 r3/linux/RTFileSetAllocationSize-linux.cpp \
1126 r3/linux/RTProcIsRunningByName-linux.cpp \
1127 r3/linux/RTSystemFirmware-linux.cpp \
1128 r3/linux/RTSystemQueryDmiString-linux.cpp \
1129 r3/linux/RTSystemShutdown-linux.cpp \
1130 r3/posix/RTFileQueryFsSizes-posix.cpp \
1131 r3/posix/RTHandleGetStandard-posix.cpp \
1132 r3/posix/RTMemProtect-posix.cpp \
1133 r3/posix/RTPathUserHome-posix.cpp \
1134 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1135 r3/linux/systemmem-linux.cpp \
1136 r3/posix/RTTimeNow-posix.cpp \
1137 r3/posix/RTTimeSet-posix.cpp \
1138 r3/posix/RTTimeZoneGetCurrent-posix.cpp \
1139 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1140 r3/posix/dir-posix.cpp \
1141 r3/posix/env-posix.cpp \
1142 r3/posix/errvars-posix.cpp \
1143 r3/posix/fileio-posix.cpp \
1144 r3/posix/fileio2-posix.cpp \
1145 r3/posix/fileio-at-posix.cpp \
1146 r3/posix/fileio-sg-posix.cpp \
1147 r3/posix/fileio-sg-at-posix.cpp \
1148 r3/posix/filelock-posix.cpp \
1149 r3/posix/fs-posix.cpp \
1150 r3/posix/fs2-posix.cpp \
1151 r3/posix/fs3-posix.cpp \
1152 r3/posix/ldrNative-posix.cpp \
1153 r3/posix/localipc-posix.cpp \
1154 r3/posix/path-posix.cpp \
1155 r3/posix/path2-posix.cpp \
1156 r3/posix/pathhost-posix.cpp \
1157 r3/posix/RTPathUserDocuments-posix.cpp \
1158 r3/posix/pipe-posix.cpp \
1159 r3/posix/process-posix.cpp \
1160 r3/posix/process-creation-posix.cpp \
1161 r3/posix/rand-posix.cpp \
1162 r3/posix/semrw-posix.cpp \
1163 r3/posix/serialport-posix.cpp \
1164 r3/posix/shmem-posix.cpp \
1165 r3/posix/symlink-posix.cpp \
1166 r3/posix/thread-posix.cpp \
1167 r3/posix/thread2-posix.cpp \
1168 r3/posix/timelocal-posix.cpp \
1169 r3/posix/timer-posix.cpp \
1170 r3/posix/tls-posix.cpp \
1171 r3/posix/utf8-posix.cpp
1172ifdef IPRT_WITH_FUTEX_BASED_SEMS
1173 RuntimeBaseR3_SOURCES.linux += \
1174 r3/linux/semevent-linux.cpp \
1175 r3/linux/semeventmulti-linux.cpp \
1176 r3/linux/semmutex-linux.cpp
1177else
1178 RuntimeBaseR3_SOURCES.linux.x86 += \
1179 r3/posix/semevent-posix.cpp \
1180 r3/posix/semeventmulti-posix.cpp \
1181 r3/posix/semmutex-posix.cpp
1182 RuntimeBaseR3_SOURCES.linux.amd64 += \
1183 r3/linux/semevent-linux.cpp \
1184 r3/linux/semeventmulti-linux.cpp
1185 ifdef RT_NEW_LINUX_MUTEX_CODE
1186 RuntimeBaseR3_SOURCES.linux.amd64 += \
1187 r3/linux/semmutex-linux.cpp
1188 else
1189 RuntimeBaseR3_SOURCES.linux.amd64 += \
1190 r3/posix/semmutex-posix.cpp
1191 endif
1192endif
1193
1194RuntimeBaseR3_SOURCES.os2 = \
1195 common/string/memrchr.asm \
1196 generic/cdrom-generic.cpp \
1197 generic/RTCrStoreCreateSnapshotById-generic.cpp \
1198 generic/RTDirQueryInfo-generic.cpp \
1199 generic/RTDirSetMode-generic.cpp \
1200 generic/RTDirSetTimes-generic.cpp \
1201 generic/fileio-at-generic.cpp \
1202 generic/fileio-sg-generic.cpp \
1203 generic/fileio-sg-at-generic.cpp \
1204 generic/RTFileCopyPartEx-generic.cpp \
1205 generic/RTFileMove-generic.cpp \
1206 generic/RTFileQuerySectorSize-generic.cpp \
1207 generic/RTFileSetAllocationSize-generic.cpp \
1208 generic/RTLogWriteDebugger-generic.cpp \
1209 generic/RTPathGetCurrentOnDrive-generic.cpp \
1210 generic/RTProcDaemonize-generic.cpp \
1211 generic/RTRandAdvCreateSystemFaster-generic.cpp \
1212 generic/RTRandAdvCreateSystemTruer-generic.cpp \
1213 generic/RTSystemQueryDmiString-generic.cpp \
1214 generic/RTSystemFirmware-generic.cpp \
1215 generic/RTSystemShutdown-generic.cpp \
1216 generic/RTTimeLocalNow-generic.cpp \
1217 generic/RTTimerCreate-generic.cpp \
1218 generic/RTThreadSetAffinityToCpu-generic.cpp \
1219 generic/RTUuidCreate-generic.cpp \
1220 generic/mppresent-generic.cpp \
1221 generic/RTSemEventWait-generic.cpp \
1222 generic/RTSemEventMultiWait-generic.cpp \
1223 generic/RTSemMutexRequest-generic.cpp \
1224 generic/RTSemMutexRequestDebug-generic.cpp \
1225 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
1226 generic/timer-generic.cpp \
1227 generic/utf16locale-generic.cpp \
1228 generic/uuid-generic.cpp \
1229 generic/RTMpGetCoreCount-generic.cpp \
1230 generic/RTMpGetOnlineCoreCount-generic.cpp \
1231 generic/RTMpGetCurFrequency-generic.cpp \
1232 generic/RTMpGetMaxFrequency-generic.cpp \
1233 generic/RTProcIsRunningByName-generic.cpp \
1234 generic/RTThreadGetNativeState-generic.cpp \
1235 os2/RTErrConvertFromOS2.cpp \
1236 r3/generic/allocex-r3-generic.cpp \
1237 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1238 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1239 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1240 r3/generic/RTTimeZoneGetCurrent-generic.cpp \
1241 r3/generic/dirrel-r3-generic.cpp \
1242 r3/os2/RTTimeSet-os2.cpp \
1243 r3/os2/filelock-os2.cpp \
1244 r3/os2/mp-os2.cpp \
1245 r3/os2/pipe-os2.cpp \
1246 r3/os2/rtProcInitExePath-os2.cpp \
1247 r3/os2/sched-os2.cpp \
1248 r3/os2/sems-os2.cpp \
1249 r3/os2/serialport-os2.cpp \
1250 r3/os2/systemmem-os2.cpp \
1251 r3/os2/thread-os2.cpp \
1252 r3/os2/time-os2.cpp \
1253 r3/posix/RTFileQueryFsSizes-posix.cpp \
1254 r3/posix/RTHandleGetStandard-posix.cpp \
1255 r3/posix/RTMemProtect-posix.cpp \
1256 r3/posix/RTPathUserHome-posix.cpp \
1257 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1258 r3/posix/RTTimeNow-posix.cpp \
1259 r3/posix/dir-posix.cpp \
1260 r3/posix/env-posix.cpp \
1261 r3/posix/errvars-posix.cpp \
1262 r3/posix/fileio-posix.cpp \
1263 r3/posix/fileio2-posix.cpp \
1264 r3/posix/fs-posix.cpp \
1265 r3/posix/fs2-posix.cpp \
1266 r3/posix/fs3-posix.cpp \
1267 r3/posix/ldrNative-posix.cpp \
1268 r3/posix/localipc-posix.cpp \
1269 r3/posix/path-posix.cpp \
1270 r3/posix/path2-posix.cpp \
1271 r3/posix/pathhost-posix.cpp \
1272 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1273 r3/posix/RTPathUserDocuments-posix.cpp \
1274 r3/posix/process-posix.cpp \
1275 r3/posix/process-creation-posix.cpp \
1276 r3/posix/symlink-posix.cpp \
1277 r3/posix/timelocal-posix.cpp \
1278 r3/posix/utf8-posix.cpp
1279
1280RuntimeBaseR3_SOURCES.darwin = \
1281 common/ioqueue/ioqueue-aiofile-provider.cpp \
1282 darwin/RTErrConvertFromDarwin.cpp \
1283 darwin/RTErrConvertFromDarwinCOM.cpp \
1284 darwin/RTErrConvertFromDarwinIO.cpp \
1285 darwin/RTErrConvertFromDarwinKern.cpp \
1286 generic/cdrom-generic.cpp \
1287 generic/RTDirQueryInfo-generic.cpp \
1288 generic/RTDirSetMode-generic.cpp \
1289 generic/RTDirSetTimes-generic.cpp \
1290 generic/RTFileCopyPartEx-generic.cpp \
1291 generic/RTFileMove-generic.cpp \
1292 generic/RTFileSetAllocationSize-generic.cpp \
1293 generic/RTLogWriteDebugger-generic.cpp \
1294 generic/RTPathGetCurrentOnDrive-generic.cpp \
1295 generic/RTProcDaemonize-generic.cpp \
1296 generic/RTThreadGetAffinity-stub-generic.cpp \
1297 generic/RTThreadSetAffinity-stub-generic.cpp \
1298 generic/RTThreadSetAffinityToCpu-generic.cpp \
1299 generic/RTTimeLocalNow-generic.cpp \
1300 generic/RTTimerCreate-generic.cpp \
1301 generic/RTUuidCreate-generic.cpp \
1302 generic/mppresent-generic.cpp \
1303 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1304 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1305 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
1306 generic/RTSystemShutdown-generic.cpp \
1307 generic/timer-generic.cpp \
1308 generic/utf16locale-generic.cpp \
1309 generic/uuid-generic.cpp \
1310 generic/RTProcIsRunningByName-generic.cpp \
1311 generic/RTThreadGetNativeState-generic.cpp \
1312 generic/RTSystemFirmware-generic.cpp \
1313 r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp \
1314 r3/darwin/filelock-darwin.cpp \
1315 r3/darwin/RTFileQuerySectorSize-darwin.cpp \
1316 r3/darwin/krnlmod-darwin.cpp \
1317 r3/darwin/mp-darwin.cpp \
1318 r3/darwin/pathhost-darwin.cpp \
1319 r3/darwin/rtProcInitExePath-darwin.cpp \
1320 r3/darwin/RTSystemQueryDmiString-darwin.cpp \
1321 r3/darwin/sched-darwin.cpp \
1322 r3/darwin/systemmem-darwin.cpp \
1323 r3/darwin/time-darwin.cpp \
1324 r3/darwin/RTPathUserDocuments-darwin.cpp \
1325 r3/generic/allocex-r3-generic.cpp \
1326 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1327 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1328 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1329 r3/generic/dirrel-r3-generic.cpp \
1330 r3/posix/RTFileQueryFsSizes-posix.cpp \
1331 r3/posix/RTHandleGetStandard-posix.cpp \
1332 r3/posix/RTMemProtect-posix.cpp \
1333 r3/posix/RTPathUserHome-posix.cpp \
1334 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1335 r3/posix/RTTimeSet-posix.cpp \
1336 r3/posix/RTTimeZoneGetCurrent-posix.cpp \
1337 r3/posix/dir-posix.cpp \
1338 r3/posix/env-posix.cpp \
1339 r3/posix/errvars-posix.cpp \
1340 r3/posix/fileaio-posix.cpp \
1341 r3/posix/fileio-posix.cpp \
1342 r3/posix/fileio2-posix.cpp \
1343 r3/posix/fileio-at-posix.cpp \
1344 r3/posix/fileio-sg-posix.cpp \
1345 r3/posix/fileio-sg-at-posix.cpp \
1346 r3/posix/fs-posix.cpp \
1347 r3/posix/fs2-posix.cpp \
1348 r3/posix/fs3-posix.cpp \
1349 r3/posix/ldrNative-posix.cpp \
1350 r3/posix/localipc-posix.cpp \
1351 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1352 r3/posix/path-posix.cpp \
1353 r3/posix/path2-posix.cpp \
1354 r3/posix/pipe-posix.cpp \
1355 r3/posix/process-posix.cpp \
1356 r3/posix/process-creation-posix.cpp \
1357 r3/posix/rand-posix.cpp \
1358 r3/posix/semevent-posix.cpp \
1359 r3/posix/semeventmulti-posix.cpp \
1360 r3/posix/semmutex-posix.cpp \
1361 r3/posix/serialport-posix.cpp \
1362 r3/posix/symlink-posix.cpp \
1363 r3/posix/shmem-posix.cpp \
1364 r3/posix/thread-posix.cpp \
1365 r3/posix/thread2-posix.cpp \
1366 r3/posix/timelocal-posix.cpp \
1367 r3/posix/tls-posix.cpp \
1368 r3/posix/utf8-posix.cpp
1369RuntimeBaseR3_SOURCES.darwin.x86 += \
1370 common/string/mempcpy.asm \
1371 common/string/memrchr.asm
1372RuntimeBaseR3_SOURCES.darwin.amd64 += \
1373 common/string/mempcpy.asm \
1374 common/string/memrchr.asm
1375RuntimeBaseR3_SOURCES.darwin.arm32 += \
1376 common/string/mempcpy.cpp \
1377 common/string/memrchr.cpp \
1378 r3/darwin/RTMpGetDescription-generic.cpp
1379RuntimeBaseR3_SOURCES.darwin.arm64 += \
1380 common/string/mempcpy.cpp \
1381 common/string/memrchr.cpp \
1382 r3/darwin/RTMpGetDescription-generic.cpp
1383
1384## @todo Make BSD sched, implement RTMP*.
1385RuntimeBaseR3_SOURCES.freebsd = \
1386 common/ioqueue/ioqueue-aiofile-provider.cpp \
1387 generic/cdrom-generic.cpp \
1388 generic/RTCrStoreCreateSnapshotById-generic.cpp \
1389 generic/RTDirQueryInfo-generic.cpp \
1390 generic/RTDirSetMode-generic.cpp \
1391 generic/RTDirSetTimes-generic.cpp \
1392 generic/RTFileCopyPartEx-generic.cpp \
1393 generic/RTFileMove-generic.cpp \
1394 generic/RTFileSetAllocationSize-generic.cpp \
1395 generic/RTLogWriteDebugger-generic.cpp \
1396 generic/RTPathGetCurrentOnDrive-generic.cpp \
1397 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1398 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1399 generic/RTSystemQueryDmiString-generic.cpp \
1400 generic/RTSystemFirmware-generic.cpp \
1401 generic/RTSystemShutdown-generic.cpp \
1402 generic/RTThreadGetAffinity-stub-generic.cpp \
1403 generic/RTThreadSetAffinity-stub-generic.cpp \
1404 generic/RTThreadSetAffinityToCpu-generic.cpp \
1405 generic/RTTimeLocalNow-generic.cpp \
1406 generic/RTTimerCreate-generic.cpp \
1407 generic/RTUuidCreate-generic.cpp \
1408 generic/mppresent-generic.cpp \
1409 generic/sched-generic.cpp \
1410 generic/utf16locale-generic.cpp \
1411 generic/uuid-generic.cpp \
1412 generic/RTMpCpuId-generic.cpp \
1413 generic/RTMpGetCoreCount-generic.cpp \
1414 generic/RTMpGetOnlineCoreCount-generic.cpp \
1415 generic/RTProcDaemonize-generic.cpp \
1416 generic/RTProcIsRunningByName-generic.cpp \
1417 generic/RTThreadGetNativeState-generic.cpp \
1418 r3/freebsd/fileaio-freebsd.cpp \
1419 r3/freebsd/RTFileQuerySectorSize-freebsd.cpp \
1420 r3/freebsd/mp-freebsd.cpp \
1421 r3/freebsd/systemmem-freebsd.cpp \
1422 r3/freebsd/rtProcInitExePath-freebsd.cpp \
1423 r3/generic/allocex-r3-generic.cpp \
1424 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1425 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1426 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1427 r3/generic/dirrel-r3-generic.cpp \
1428 r3/posix/RTFileQueryFsSizes-posix.cpp \
1429 r3/posix/RTHandleGetStandard-posix.cpp \
1430 r3/posix/RTMemProtect-posix.cpp \
1431 r3/posix/RTPathUserHome-posix.cpp \
1432 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1433 r3/posix/RTTimeNow-posix.cpp \
1434 r3/posix/RTTimeSet-posix.cpp \
1435 r3/posix/RTTimeZoneGetCurrent-posix.cpp \
1436 r3/posix/dir-posix.cpp \
1437 r3/posix/env-posix.cpp \
1438 r3/posix/errvars-posix.cpp \
1439 r3/posix/fileio-posix.cpp \
1440 r3/posix/fileio2-posix.cpp \
1441 r3/posix/fileio-at-posix.cpp \
1442 r3/posix/fileio-sg-posix.cpp \
1443 r3/posix/fileio-sg-at-posix.cpp \
1444 r3/posix/filelock-posix.cpp \
1445 r3/posix/fs-posix.cpp \
1446 r3/posix/fs2-posix.cpp \
1447 r3/posix/fs3-posix.cpp \
1448 r3/posix/ldrNative-posix.cpp \
1449 r3/posix/localipc-posix.cpp \
1450 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1451 r3/posix/path-posix.cpp \
1452 r3/posix/path2-posix.cpp \
1453 r3/posix/pathhost-posix.cpp \
1454 r3/posix/RTPathUserDocuments-posix.cpp \
1455 r3/posix/pipe-posix.cpp \
1456 r3/posix/process-posix.cpp \
1457 r3/posix/process-creation-posix.cpp \
1458 r3/posix/rand-posix.cpp \
1459 r3/posix/semevent-posix.cpp \
1460 r3/posix/semeventmulti-posix.cpp \
1461 r3/posix/semmutex-posix.cpp \
1462 r3/posix/semrw-posix.cpp \
1463 r3/posix/serialport-posix.cpp \
1464 r3/posix/symlink-posix.cpp \
1465 r3/posix/shmem-posix.cpp \
1466 r3/posix/thread-posix.cpp \
1467 r3/posix/thread2-posix.cpp \
1468 r3/posix/time-posix.cpp \
1469 r3/posix/timelocal-posix.cpp \
1470 r3/posix/timer-posix.cpp \
1471 r3/posix/tls-posix.cpp \
1472 r3/posix/utf8-posix.cpp
1473
1474RuntimeBaseR3_SOURCES.netbsd = \
1475 generic/cdrom-generic.cpp \
1476 generic/RTDirQueryInfo-generic.cpp \
1477 generic/RTDirSetMode-generic.cpp \
1478 generic/RTDirSetTimes-generic.cpp \
1479 generic/RTFileCopyPartEx-generic.cpp \
1480 generic/RTFileMove-generic.cpp \
1481 generic/RTFileQuerySectorSize-generic.cpp \
1482 generic/RTLogWriteDebugger-generic.cpp \
1483 generic/RTPathGetCurrentOnDrive-generic.cpp \
1484 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1485 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1486 generic/RTSystemQueryDmiString-generic.cpp \
1487 generic/RTSystemFirmware-generic.cpp \
1488 generic/RTSystemShutdown-generic.cpp \
1489 generic/RTThreadGetAffinity-stub-generic.cpp \
1490 generic/RTThreadSetAffinity-stub-generic.cpp \
1491 generic/RTThreadSetAffinityToCpu-generic.cpp \
1492 generic/RTTimeLocalNow-generic.cpp \
1493 generic/RTTimerCreate-generic.cpp \
1494 generic/RTUuidCreate-generic.cpp \
1495 generic/mppresent-generic.cpp \
1496 generic/sched-generic.cpp \
1497 generic/utf16locale-generic.cpp \
1498 generic/uuid-generic.cpp \
1499 generic/RTMpCpuId-generic.cpp \
1500 generic/RTMpGetCoreCount-generic.cpp \
1501 generic/RTMpGetOnlineCoreCount-generic.cpp \
1502 generic/RTProcDaemonize-generic.cpp \
1503 generic/RTProcIsRunningByName-generic.cpp \
1504 generic/RTThreadGetNativeState-generic.cpp \
1505 r3/netbsd/rtProcInitExePath-netbsd.cpp \
1506 r3/generic/allocex-r3-generic.cpp \
1507 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1508 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1509 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1510 r3/generic/dirrel-r3-generic.cpp \
1511 r3/posix/RTFileQueryFsSizes-posix.cpp \
1512 r3/posix/RTFileSetAllocationSize-posix.cpp \
1513 r3/posix/RTHandleGetStandard-posix.cpp \
1514 r3/posix/RTMemProtect-posix.cpp \
1515 r3/posix/RTPathUserHome-posix.cpp \
1516 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1517 r3/posix/RTSystemQueryTotalRam-posix.cpp \
1518 r3/posix/RTTimeNow-posix.cpp \
1519 r3/posix/RTTimeSet-posix.cpp \
1520 r3/posix/RTTimeZoneGetCurrent-posix.cpp \
1521 r3/posix/dir-posix.cpp \
1522 r3/posix/env-posix.cpp \
1523 r3/posix/errvars-posix.cpp \
1524 r3/posix/fileio-posix.cpp \
1525 r3/posix/fileio2-posix.cpp \
1526 r3/posix/fileio-at-posix.cpp \
1527 r3/posix/fileio-sg-posix.cpp \
1528 r3/posix/fileio-sg-at-posix.cpp \
1529 r3/posix/filelock-posix.cpp \
1530 r3/posix/fs-posix.cpp \
1531 r3/posix/fs2-posix.cpp \
1532 r3/posix/fs3-posix.cpp \
1533 r3/posix/ldrNative-posix.cpp \
1534 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1535 r3/posix/path-posix.cpp \
1536 r3/posix/path2-posix.cpp \
1537 r3/posix/pathhost-posix.cpp \
1538 r3/posix/RTPathUserDocuments-posix.cpp \
1539 r3/posix/pipe-posix.cpp \
1540 r3/posix/process-posix.cpp \
1541 r3/posix/process-creation-posix.cpp \
1542 r3/posix/rand-posix.cpp \
1543 r3/posix/semevent-posix.cpp \
1544 r3/posix/semeventmulti-posix.cpp \
1545 r3/posix/semmutex-posix.cpp \
1546 r3/posix/semrw-posix.cpp \
1547 r3/posix/serialport-posix.cpp \
1548 r3/posix/symlink-posix.cpp \
1549 r3/posix/shmem-posix.cpp \
1550 r3/posix/thread-posix.cpp \
1551 r3/posix/thread2-posix.cpp \
1552 r3/posix/time-posix.cpp \
1553 r3/posix/timelocal-posix.cpp \
1554 r3/posix/timer-posix.cpp \
1555 r3/posix/tls-posix.cpp \
1556 r3/posix/utf8-posix.cpp
1557
1558RuntimeBaseR3_SOURCES.solaris = \
1559 common/ioqueue/ioqueue-aiofile-provider.cpp \
1560 generic/cdrom-generic.cpp \
1561 generic/RTCrStoreCreateSnapshotById-generic.cpp \
1562 generic/RTDirQueryInfo-generic.cpp \
1563 generic/RTDirSetMode-generic.cpp \
1564 generic/RTDirSetTimes-generic.cpp \
1565 generic/RTFileCopyPartEx-generic.cpp \
1566 generic/RTFileMove-generic.cpp \
1567 generic/RTLogWriteDebugger-generic.cpp \
1568 generic/RTPathGetCurrentOnDrive-generic.cpp \
1569 generic/RTProcDaemonize-generic.cpp \
1570 generic/RTProcIsRunningByName-generic.cpp \
1571 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1572 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1573 generic/RTThreadSetAffinityToCpu-generic.cpp \
1574 generic/RTTimeLocalNow-generic.cpp \
1575 generic/RTTimerCreate-generic.cpp \
1576 generic/RTUuidCreate-generic.cpp \
1577 generic/sched-generic.cpp \
1578 generic/utf16locale-generic.cpp \
1579 generic/uuid-generic.cpp \
1580 generic/RTThreadGetNativeState-generic.cpp \
1581 r3/generic/allocex-r3-generic.cpp \
1582 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1583 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1584 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1585 r3/generic/dirrel-r3-generic.cpp \
1586 r3/posix/RTFileQueryFsSizes-posix.cpp \
1587 r3/posix/RTFileSetAllocationSize-posix.cpp \
1588 r3/posix/RTHandleGetStandard-posix.cpp \
1589 r3/posix/RTMemProtect-posix.cpp \
1590 r3/posix/RTPathUserHome-posix.cpp \
1591 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1592 r3/posix/RTTimeNow-posix.cpp \
1593 r3/posix/RTTimeSet-posix.cpp \
1594 r3/posix/RTTimeZoneGetCurrent-posix.cpp \
1595 r3/posix/dir-posix.cpp \
1596 r3/posix/env-posix.cpp \
1597 r3/posix/errvars-posix.cpp \
1598 r3/posix/fileio-posix.cpp \
1599 r3/posix/fileio2-posix.cpp \
1600 r3/posix/fileio-at-posix.cpp \
1601 r3/posix/fileio-sg-posix.cpp \
1602 r3/posix/fileio-sg-at-posix.cpp \
1603 r3/posix/filelock-posix.cpp \
1604 r3/posix/fs-posix.cpp \
1605 r3/posix/fs2-posix.cpp \
1606 r3/posix/fs3-posix.cpp \
1607 r3/posix/ldrNative-posix.cpp \
1608 r3/posix/localipc-posix.cpp \
1609 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1610 r3/posix/path-posix.cpp \
1611 r3/posix/path2-posix.cpp \
1612 r3/posix/pathhost-posix.cpp \
1613 r3/posix/RTPathUserDocuments-posix.cpp \
1614 r3/posix/pipe-posix.cpp \
1615 r3/posix/process-posix.cpp \
1616 r3/posix/process-creation-posix.cpp \
1617 r3/posix/rand-posix.cpp \
1618 r3/posix/semevent-posix.cpp \
1619 r3/posix/semeventmulti-posix.cpp \
1620 r3/posix/semmutex-posix.cpp \
1621 r3/posix/semrw-posix.cpp \
1622 r3/posix/serialport-posix.cpp \
1623 r3/posix/symlink-posix.cpp \
1624 r3/posix/shmem-posix.cpp \
1625 r3/posix/thread-posix.cpp \
1626 r3/posix/thread2-posix.cpp \
1627 r3/posix/time-posix.cpp \
1628 r3/posix/timelocal-posix.cpp \
1629 r3/posix/timer-posix.cpp \
1630 r3/posix/tls-posix.cpp \
1631 r3/posix/utf8-posix.cpp \
1632 r3/solaris/fileaio-solaris.cpp \
1633 r3/solaris/RTFileQuerySectorSize-solaris.cpp \
1634 r3/solaris/krnlmod-solaris.cpp \
1635 r3/solaris/systemmem-solaris.cpp \
1636 r3/solaris/mp-solaris.cpp \
1637 r3/solaris/rtProcInitExePath-solaris.cpp \
1638 r3/solaris/RTSystemFirmware-solaris.cpp \
1639 r3/solaris/RTSystemShutdown-solaris.cpp \
1640 r3/solaris/thread-affinity-solaris.cpp
1641RuntimeBaseR3_SOURCES.solaris.amd64 = \
1642 common/string/memrchr.asm \
1643 common/string/mempcpy.asm \
1644 r3/solaris/coredumper-solaris.cpp \
1645 r3/solaris/RTSystemQueryDmiString-solaris.cpp
1646RuntimeBaseR3_SOURCES.solaris.x86 = \
1647 common/string/memrchr.asm \
1648 common/string/mempcpy.asm \
1649 r3/solaris/coredumper-solaris.cpp \
1650 r3/solaris/RTSystemQueryDmiString-solaris.cpp
1651RuntimeBaseR3_SOURCES.solaris.sparc32 = \
1652 common/string/memrchr.cpp \
1653 common/string/mempcpy.cpp \
1654 generic/RTSystemQueryDmiString-generic.cpp
1655RuntimeBaseR3_SOURCES.solaris.sparc64 = \
1656 common/string/memrchr.cpp \
1657 common/string/mempcpy.cpp \
1658 generic/RTSystemQueryDmiString-generic.cpp
1659
1660RuntimeBaseR3_SOURCES.haiku = \
1661 generic/RTCrStoreCreateSnapshotById-generic.cpp \
1662 generic/RTDirQueryInfo-generic.cpp \
1663 generic/RTDirSetMode-generic.cpp \
1664 generic/RTDirSetTimes-generic.cpp \
1665 generic/fileio-at-generic.cpp \
1666 generic/fileio-sg-generic.cpp \
1667 generic/fileio-sg-at-generic.cpp \
1668 generic/RTFileCopyPartEx-generic.cpp \
1669 generic/RTFileMove-generic.cpp \
1670 generic/RTFileQuerySectorSize-generic.cpp \
1671 generic/RTFileSetAllocationSize-generic.cpp \
1672 generic/RTLogWriteDebugger-generic.cpp \
1673 generic/RTPathGetCurrentOnDrive-generic.cpp \
1674 generic/RTProcDaemonize-generic.cpp \
1675 generic/RTTimeLocalNow-generic.cpp \
1676 generic/RTTimerCreate-generic.cpp \
1677 generic/RTUuidCreate-generic.cpp \
1678 generic/mppresent-generic.cpp \
1679 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1680 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1681 generic/sched-generic.cpp \
1682 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
1683 generic/timer-generic.cpp \
1684 generic/utf16locale-generic.cpp \
1685 generic/uuid-generic.cpp \
1686 generic/RTProcIsRunningByName-generic.cpp \
1687 generic/RTThreadGetNativeState-generic.cpp \
1688 generic/RTMpGetCoreCount-generic.cpp \
1689 generic/RTMpGetOnlineCoreCount-generic.cpp \
1690 r3/haiku/rtProcInitExePath-haiku.cpp \
1691 r3/haiku/time-haiku.cpp \
1692 r3/generic/allocex-r3-generic.cpp \
1693 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
1694 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
1695 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
1696 r3/generic/RTTimeZoneGetCurrent-generic.cpp \
1697 r3/generic/dirrel-r3-generic.cpp \
1698 r3/posix/RTFileQueryFsSizes-posix.cpp \
1699 r3/posix/RTHandleGetStandard-posix.cpp \
1700 r3/posix/RTMemProtect-posix.cpp \
1701 r3/posix/RTPathUserHome-posix.cpp \
1702 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1703 r3/posix/RTSystemQueryTotalRam-posix.cpp \
1704 r3/posix/RTTimeNow-posix.cpp \
1705 r3/posix/dir-posix.cpp \
1706 r3/posix/env-posix.cpp \
1707 r3/posix/errvars-posix.cpp \
1708 r3/posix/fileio-posix.cpp \
1709 r3/posix/fileio2-posix.cpp \
1710 r3/posix/filelock-posix.cpp \
1711 r3/posix/fs-posix.cpp \
1712 r3/posix/fs2-posix.cpp \
1713 r3/posix/fs3-posix.cpp \
1714 r3/posix/ldrNative-posix.cpp \
1715 r3/posix/localipc-posix.cpp \
1716 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1717 r3/posix/path-posix.cpp \
1718 r3/posix/path2-posix.cpp \
1719 r3/posix/pathhost-posix.cpp \
1720 r3/posix/pipe-posix.cpp \
1721 r3/posix/process-posix.cpp \
1722 r3/posix/process-creation-posix.cpp \
1723 r3/posix/rand-posix.cpp \
1724 r3/posix/semevent-posix.cpp \
1725 r3/posix/semeventmulti-posix.cpp \
1726 r3/posix/semmutex-posix.cpp \
1727 r3/posix/serialport-posix.cpp \
1728 r3/posix/symlink-posix.cpp \
1729 r3/posix/thread-posix.cpp \
1730 r3/posix/thread2-posix.cpp \
1731 r3/posix/timelocal-posix.cpp \
1732 r3/posix/tls-posix.cpp \
1733 r3/posix/utf8-posix.cpp
1734RuntimeBaseR3_SOURCES.haiku.x86 += common/string/memrchr.asm
1735RuntimeBaseR3_SOURCES.haiku.amd64 += common/string/memrchr.asm
1736
1737## PORTME: Porters add their selection of platform specific files for Ring-3 here.
1738
1739
1740#
1741# kBuild unit for generating nocrt aliases.
1742#
1743# This scans assembly, C and C++ source files for the target looking for macros
1744# that defines functions and variables needing aliasing.
1745#
1746UNIT_VBoxNoCrtAliases = CRT symbol alias for the rtnocr_xxx implementations
1747
1748# Only adding the VBOX_NOCRT_ALIASES property to library targets for now:
1749PROPS_ACCUMULATE_L += VBOX_NOCRT_ALIASES
1750PROPS_ACCUMULATE_L_LNK += VBOX_NOCRT_ALIASES
1751PROPS_LIBRARIES_ACCUMULATE_L += VBOX_NOCRT_ALIASES
1752PROPS_ALL += VBOX_NOCRT_ALIASES
1753
1754define def_unit_VBoxNoCrtAliases_double_expansion
1755 $$($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE).ts +| $$($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE): \
1756 $$(abspathex \
1757 $$($(target)_SOURCES) \
1758 $$($(target)_SOURCES.$(bld_trg)) \
1759 $$($(target)_SOURCES.$(bld_trg).$(bld_type)) \
1760 $$($(target)_SOURCES.$(bld_trg).$(bld_trg_arch)) \
1761 $$($(target)_SOURCES.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1762 $$($(target)_SOURCES.$(bld_trg_arch)) \
1763 $$($(target)_SOURCES.$(bld_trg_cpu)) \
1764 $$($(target)_SOURCES.$(bld_type)) \
1765 , $(firstfile $(defpath) $(PATH_SUB_CURRENT))) \
1766 $$(VBOX_PATH_RUNTIME_SRC)//nocrt-aliases.sed
1767 $$(call MSG_GENERATE,$(target),$$@,)
1768 $$(QUIET)$$(MKDIR) -p -- "$$(dir $$@)"
1769 $$(QUIET)$$(APPEND) -tn "$$@" "$(target)_2_VBOX_NOCRT_ALIASES := \\"
1770 $$(xargs $$(QUIET)$$(SED) -rn -f "$$(VBOX_PATH_RUNTIME_SRC)/nocrt-aliases.sed" --append "$$@" , $$(filter %.c %.cpp %.asm, $$^) )
1771 $$(QUIET)$$(APPEND) -n "$$@" "" ""
1772 $$(QUIET)$$(CP) --changed -f -- "$$@" "$$(patsubst %.ts,%,$$@)"
1773
1774 $$($(target)_0_OUTDIR)/genalias/genalias.ts + $$($(target)_2_VBOX_NOCRT_ALIAS_FILES): | $$(VBOX_GENALIAS)
1775 $$(call MSG_GENERATE,$(target),$$@,)
1776 $$(QUIET)$$(MKDIR) -p -- "$$($(target)_0_OUTDIR)/genalias/"
1777 $$(QUIET)$$(VBOX_GENALIAS) -f $$(if-expr "$(bld_trg)" == "win",coff.$(bld_trg_arch),$$(if-expr "$(bld_trg)" == "darwin",macho,omf)) \
1778 -D "$$($(target)_0_OUTDIR)/genalias/" $$($(target)_2_VBOX_NOCRT_ALIASES) \
1779 $$($(target)_VBOX_NOCRT_ALIASES) \
1780 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg)) \
1781 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_type)) \
1782 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch)) \
1783 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1784 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_arch)) \
1785 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_cpu)) \
1786 $$($(target)_VBOX_NOCRT_ALIASES.$(bld_type))
1787 $$(QUIET)$$(APPEND) -tn "$$($(target)_0_OUTDIR)/genalias/genalias.ts" "$$($(target)_2_VBOX_NOCRT_ALIASES))"
1788
1789 $(target)_2_OBJS += $$($(target)_2_VBOX_NOCRT_ALIAS_FILES)
1790 OTHER_CLEAN += $$($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE) $$($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE).ts
1791endef
1792
1793define def_unit_VBoxNoCrtAliases_target_pre
1794 if1of ($(bld_trg), win os2 darwin) # Only non-ELF targets as ELF does not support aliasing.
1795 $(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE := $(PATH_OUT)/nocrt-aliases-$(target).kmk
1796 include $($(target)_2_VBOX_NOCRT_ALIAS_KMK_FILE)
1797 $(target)_2_VBOX_NOCRT_ALIAS_FILES := $(foreach alias,$($(target)_2_VBOX_NOCRT_ALIASES) \
1798 $($(target)_VBOX_NOCRT_ALIASES) \
1799 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg)) \
1800 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_type)) \
1801 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch)) \
1802 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg).$(bld_trg_arch).$(bld_type)) \
1803 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_arch)) \
1804 $($(target)_VBOX_NOCRT_ALIASES.$(bld_trg_cpu)) \
1805 $($(target)_VBOX_NOCRT_ALIASES.$(bld_type)) \
1806 , $($(target)_0_OUTDIR)/genalias/$(firstword $(subst =, $(SPACE),$(alias))).o)
1807 $(eval $(def_unit_VBoxNoCrtAliases_double_expansion))
1808 endif
1809endef
1810
1811
1812#
1813# RuntimeR3 - Static Runtime for Ring-3 executables.
1814#
1815# We drop the windows error defines here for reason of size. The valkit tstUtf8
1816# was reduced by 175KB, from 600KB to 425KB (about 30%). Come up with a way of
1817# stripping it down or compressing it better and it can be added back.
1818# - 2022-08-17, bird.
1819#
1820RuntimeR3_TEMPLATE = VBoxR3Static
1821RuntimeR3_EXTENDS = RuntimeBaseR3
1822RuntimeR3_DEFS.win = $(RuntimeBaseR3_DEFS.win) IPRT_NO_WIN_ERROR_DATA
1823ifdef VBOX_WITH_NOCRT_STATIC
1824 if1of ($(KBUILD_TARGET), win)
1825 RuntimeR3_USES = $(RuntimeBaseR3_USES) VBoxNoCrtAliases
1826 RuntimeR3_DEFS = $(filter-out RT_WITHOUT_NOCRT_WRAPPERS,$(RuntimeBaseR3_DEFS)) \
1827 RT_FORCE_NOCRT_WRAPPERS \
1828 RT_WITH_NOCRT_ALIASES RT_WITH_NOCRT_UNDERSCORE_ALIASES RT_WITH_GENALIAS_NOCRT_ALIASES
1829
1830 RuntimeR3_SOURCES = $(filter-out \
1831 r3/alloc.cpp \
1832 r3/alloc-ef.cpp \
1833 r3/xml.cpp \
1834 common/zip/xarvfs.cpp \
1835 common/misc/json.cpp \
1836 generic/RTLogWriteStdErr-generic.cpp \
1837 generic/RTLogWriteStdOut-generic.cpp \
1838 ,$(RuntimeBaseR3_SOURCES)) \
1839 \
1840 common/err/nocrt-strerror.cpp \
1841 common/file/nocrt-open.cpp \
1842 common/file/nocrt-close.cpp \
1843 common/file/nocrt-fstat.cpp \
1844 common/file/nocrt-isatty.cpp \
1845 common/file/nocrt-read.cpp \
1846 common/math/nocrt-abs.cpp \
1847 common/math/nocrt-labs.cpp \
1848 common/math/nocrt-llabs.cpp \
1849 common/math/consts.c \
1850 common/math/copysign.cpp \
1851 common/math/copysignf.cpp \
1852 common/math/copysignl.cpp \
1853 common/math/fmax.cpp \
1854 common/math/fmaxf.cpp \
1855 common/math/fmaxl.cpp \
1856 common/math/fmin.cpp \
1857 common/math/fminf.cpp \
1858 common/math/fminl.cpp \
1859 common/math/frexp.cpp \
1860 common/math/frexpf.cpp \
1861 common/math/frexpl.cpp \
1862 common/math/__fpclassifyd.cpp \
1863 common/math/__fpclassifyf.cpp \
1864 common/math/__fpclassifyl.cpp \
1865 common/math/__isfinite.cpp \
1866 common/math/__isfinitef.cpp \
1867 common/math/__isfinitel.cpp \
1868 common/math/isinf.cpp \
1869 common/math/__isinff.cpp \
1870 common/math/__isinfl.cpp \
1871 common/math/isnan.cpp \
1872 common/math/isnanf.cpp \
1873 common/math/__isnanl.cpp \
1874 common/math/__isnormal.cpp \
1875 common/math/__isnormalf.cpp \
1876 common/math/__isnormall.cpp \
1877 common/math/llround.cpp \
1878 common/math/llroundf.cpp \
1879 common/math/llroundl.cpp \
1880 common/math/lround.cpp \
1881 common/math/lroundf.cpp \
1882 common/math/lroundl.cpp \
1883 common/math/round.cpp \
1884 common/math/roundf.cpp \
1885 common/math/roundl.cpp \
1886 common/math/__signbit.cpp \
1887 common/math/__signbitf.cpp \
1888 common/math/__signbitl.cpp \
1889 common/path/nocrt-access.cpp \
1890 common/path/nocrt-unlink.cpp \
1891 common/rand/nocrt-rand.cpp \
1892 common/sort/nocrt-qsort.cpp \
1893 common/sort/nocrt-qsort_r.cpp \
1894 common/sort/nocrt-bsearch.cpp \
1895 common/string/nocrt-strdup.cpp \
1896 common/string/nocrt-stricmp.cpp \
1897 common/string/nocrt-strtod.cpp \
1898 common/string/nocrt-atof.cpp \
1899 common/string/nocrt-strtol.cpp \
1900 common/string/nocrt-strtoll.cpp \
1901 common/string/nocrt-strtoul.cpp \
1902 common/string/nocrt-strtoull.cpp \
1903 common/string/nocrt-snprintf.cpp \
1904 common/string/nocrt-vsnprintf.cpp \
1905 common/string/nocrt-scprintf.cpp \
1906 common/string/nocrt-vscprintf.cpp \
1907 common/string/nocrt-sscanf.cpp \
1908 common/string/nocrt-vsscanf.cpp \
1909 common/string/atoi.cpp \
1910 common/string/strtok_r.cpp \
1911 r3/nocrt-per-thread-1.cpp \
1912 r3/nocrt-per-thread-2.cpp \
1913 r3/nocrt-errno.cpp \
1914 r3/nocrt-fopen.cpp \
1915 r3/nocrt-fdopen.cpp \
1916 r3/nocrt-tmpfile.cpp \
1917 r3/nocrt-tmpfile_s.cpp \
1918 r3/nocrt-fileno.cpp \
1919 r3/nocrt-fclose.cpp \
1920 r3/nocrt-fflush.cpp \
1921 r3/nocrt-setvbuf.cpp \
1922 r3/nocrt-fseek.cpp \
1923 r3/nocrt-fseeko.cpp \
1924 r3/nocrt-ftell.cpp \
1925 r3/nocrt-ftello.cpp \
1926 r3/nocrt-fwrite.cpp \
1927 r3/nocrt-fputc.cpp \
1928 r3/nocrt-putc.cpp \
1929 r3/nocrt-fputs.cpp \
1930 r3/nocrt-puts.cpp \
1931 r3/nocrt-fread.cpp \
1932 r3/nocrt-fgetc.cpp \
1933 r3/nocrt-getc.cpp \
1934 r3/nocrt-clearerr.cpp \
1935 r3/nocrt-ferror.cpp \
1936 r3/nocrt-cerr.cpp \
1937 r3/nocrt-cout.cpp
1938
1939 RuntimeR3_SOURCES.x86 = $(RuntimeBaseR3_SOURCES.x86) \
1940 common/math/atan.asm \
1941 common/math/atanf.asm \
1942 common/math/atan2.asm \
1943 common/math/atan2f.asm \
1944 common/math/cos.asm \
1945 common/math/cosf.asm \
1946 common/math/ceil.asm \
1947 common/math/ceilf.asm \
1948 common/math/exp.asm \
1949 common/math/expf.asm \
1950 common/math/exp2.asm \
1951 common/math/exp2f.asm \
1952 common/math/fabs.asm \
1953 common/math/fabsf.asm \
1954 common/math/rtNoCrtHasSse.asm \
1955 common/math/fegetenv.asm \
1956 common/math/fesetenv.asm \
1957 common/math/feholdexcept.asm \
1958 common/math/feupdateenv.asm \
1959 common/math/fegetround.asm \
1960 common/math/fesetround.asm \
1961 common/math/fegetx87precision.asm \
1962 common/math/fesetx87precision.asm \
1963 common/math/fegetexcept.asm \
1964 common/math/feenableexcept.asm \
1965 common/math/fedisableexcept.asm \
1966 common/math/feclearexcept.asm \
1967 common/math/fegetexceptflag.asm \
1968 common/math/fesetexceptflag.asm \
1969 common/math/fetestexcept.asm \
1970 common/math/feraiseexcept.asm \
1971 common/math/floor.asm \
1972 common/math/floorf.asm \
1973 common/math/ldexp.asm \
1974 common/math/ldexpf.asm \
1975 common/math/log.asm \
1976 common/math/logf.asm \
1977 common/math/log2.asm \
1978 common/math/log2f.asm \
1979 common/math/llrint.asm \
1980 common/math/llrintf.asm \
1981 common/math/lrint.asm \
1982 common/math/lrintf.asm \
1983 common/math/pow.asm \
1984 common/math/powf.asm \
1985 common/math/powcore.asm \
1986 common/math/remainder.asm \
1987 common/math/remainderf.asm \
1988 common/math/rint.asm \
1989 common/math/rintf.asm \
1990 common/math/sin.asm \
1991 common/math/sinf.asm \
1992 common/math/sincore.asm \
1993 common/math/sqrt.asm \
1994 common/math/sqrtf.asm \
1995 common/math/tan.asm \
1996 common/math/tanf.asm \
1997 common/math/trunc.asm \
1998 common/math/truncf.asm \
1999 common/misc/setjmp.asm \
2000 common/string/memcpy.asm \
2001 common/string/memchr.asm \
2002 common/string/memcmp.asm \
2003 common/string/memmove.asm \
2004 common/string/memset.asm \
2005 common/string/strlen.asm \
2006 common/string/strnlen.cpp \
2007 common/string/strchr.asm \
2008 common/string/strcmp.asm \
2009 common/string/strncmp.asm \
2010 common/string/strcpy.asm \
2011 common/string/strncpy.asm \
2012 common/string/strcat.cpp \
2013 common/string/strncat.cpp \
2014 common/string/strrchr.cpp \
2015 common/string/strstr.cpp \
2016 common/string/strcspn.cpp \
2017 common/string/strpbrk.cpp \
2018 common/string/wcslen.asm
2019
2020 RuntimeR3_SOURCES.amd64 = $(RuntimeBaseR3_SOURCES.amd64) \
2021 common/math/atan.asm \
2022 common/math/atanf.asm \
2023 common/math/atan2.asm \
2024 common/math/atan2f.asm \
2025 common/math/cos.asm \
2026 common/math/cosf.asm \
2027 common/math/ceil.asm \
2028 common/math/ceilf.asm \
2029 common/math/exp.asm \
2030 common/math/expf.asm \
2031 common/math/exp2.asm \
2032 common/math/exp2f.asm \
2033 common/math/fabs.asm \
2034 common/math/fabsf.asm \
2035 common/math/fegetenv.asm \
2036 common/math/fesetenv.asm \
2037 common/math/feholdexcept.asm \
2038 common/math/feupdateenv.asm \
2039 common/math/fegetround.asm \
2040 common/math/fesetround.asm \
2041 common/math/fegetx87precision.asm \
2042 common/math/fesetx87precision.asm \
2043 common/math/fegetexcept.asm \
2044 common/math/feenableexcept.asm \
2045 common/math/fedisableexcept.asm \
2046 common/math/feclearexcept.asm \
2047 common/math/fegetexceptflag.asm \
2048 common/math/fesetexceptflag.asm \
2049 common/math/fetestexcept.asm \
2050 common/math/feraiseexcept.asm \
2051 common/math/floor.asm \
2052 common/math/floorf.asm \
2053 common/math/ldexp.asm \
2054 common/math/ldexpf.asm \
2055 common/math/log.asm \
2056 common/math/logf.asm \
2057 common/math/log2.asm \
2058 common/math/log2f.asm \
2059 common/math/llrint.asm \
2060 common/math/llrintf.asm \
2061 common/math/lrint.asm \
2062 common/math/lrintf.asm \
2063 common/math/pow.asm \
2064 common/math/powf.asm \
2065 common/math/powcore.asm \
2066 common/math/remainder.asm \
2067 common/math/remainderf.asm \
2068 common/math/rint.asm \
2069 common/math/rintf.asm \
2070 common/math/sin.asm \
2071 common/math/sinf.asm \
2072 common/math/sincore.asm \
2073 common/math/sqrt.asm \
2074 common/math/sqrtf.asm \
2075 common/math/tan.asm \
2076 common/math/tanf.asm \
2077 common/math/trunc.asm \
2078 common/math/truncf.asm \
2079 common/misc/setjmp.asm \
2080 common/string/memcpy.asm \
2081 common/string/memchr.asm \
2082 common/string/memcmp.asm \
2083 common/string/memmove.asm \
2084 common/string/memset.asm \
2085 common/string/strlen.asm \
2086 common/string/strnlen.cpp \
2087 common/string/strchr.asm \
2088 common/string/strcmp.asm \
2089 common/string/strncmp.asm \
2090 common/string/strcpy.asm \
2091 common/string/strncpy.asm \
2092 common/string/strcat.cpp \
2093 common/string/strncat.cpp \
2094 common/string/strrchr.cpp \
2095 common/string/strstr.cpp \
2096 common/string/strcspn.cpp \
2097 common/string/strpbrk.cpp \
2098 common/string/wcslen.asm
2099
2100 RuntimeR3_SOURCES.win = $(filter-out \
2101 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
2102 ,$(RuntimeBaseR3_SOURCES.win)) \
2103 \
2104 common/compiler/vcc/atexit-vcc.cpp \
2105 common/compiler/vcc/loadcfg-vcc.c \
2106 common/compiler/vcc/tlsdir-vcc.c \
2107 common/compiler/vcc/initializers-c-cpp-vcc.cpp \
2108 common/compiler/vcc/stacksup-vcc.cpp \
2109 common/compiler/vcc/fltused-vcc.cpp \
2110 common/compiler/vcc/purecall-vcc.cpp \
2111 common/file/nocrt-dup.cpp \
2112 r3/win/nocrt-startup-exe-win.cpp \
2113 r3/win/nocrt-startup-dll-win.cpp \
2114 r3/win/nocrt-startup-common-win.cpp \
2115 r3/win/nocrt-fatal-write-win.cpp \
2116 r3/win/nocrt-alloc-win.cpp \
2117 r3/win/nocrt-RTLogWriteStdErr-win.cpp \
2118 r3/win/nocrt-RTLogWriteStdOut-win.cpp \
2119 generic/new-delete-generic.cpp
2120 RuntimeR3_SOURCES.win.amd64 = $(RuntimeBaseR3_SOURCES.win.amd64) \
2121 r3/win/nocrt-atexit-win.asm \
2122 r3/win/nocrt-mainCRTStartup-win.asm \
2123 r3/win/nocrt-WinMainCRTStartup-win.asm \
2124 common/compiler/vcc/guard-vcc.asm \
2125 common/compiler/vcc/stack-vcc.asm \
2126 common/compiler/vcc/stack-except-vcc.cpp \
2127 common/compiler/vcc/stack-except-seh-vcc.cpp \
2128 common/compiler/vcc/stack-probe-vcc.asm \
2129 common/compiler/vcc/except-seh-vcc.cpp
2130 RuntimeR3_SOURCES.win.x86 = $(RuntimeBaseR3_SOURCES.win.x86) \
2131 r3/win/nocrt-atexit-win.asm \
2132 r3/win/nocrt-mainCRTStartup-win.asm \
2133 r3/win/nocrt-WinMainCRTStartup-win.asm \
2134 common/compiler/vcc/guard-vcc.asm \
2135 common/compiler/vcc/stack-vcc.asm \
2136 common/compiler/vcc/stack-probe-vcc.asm \
2137 common/compiler/vcc/ftol2-vcc.asm \
2138 common/compiler/vcc/except-x86-vcc.cpp \
2139 common/compiler/vcc/except-x86-vcc-asm.asm
2140 RuntimeR3_VBOX_NOCRT_ALIASES.win := \
2141 strtok_s=nocrt_strtok_r _strtok_s=nocrt_strtok_r nocrt_strtok_s=nocrt_strtok_r \
2142 $(foreach fn, atan atan2 cos ceil exp fabs floor ldexp log lrint llrint remainder sin tan \
2143 ,$(fn)l=nocrt_$(fn) _$(fn)l=nocrt_$(fn))
2144 endif
2145endif
2146
2147
2148#
2149# Generate RTIsoMaker / VISO help text from the manpage xml.
2150#
2151ifn1of ($(KBUILD_TARGET), os2) # breaks validationkit, figure out later.
2152
2153 IPRT_XML_REFENTRY_FILES = \
2154 common/fs/isomakercmd-man.xml
2155
2156 #$(call KB_FN_DO_PASS0_ON_TARGET,RuntimeR3)
2157
2158 BLDDIRS += $(IPRT_OUT_DIR)/man/
2159 OTHER_CLEAN += $(foreach xml,$(basename $(notdir $(IPRT_XML_REFENTRY_FILES))), \
2160 $(IPRT_OUT_DIR)/man/$(xml).xml $(IPRT_OUT_DIR)/man/$(xml).h $(IPRT_OUT_DIR)/man/$(xml).h.ts)
2161
2162
2163 include $(PATH_ROOT)/doc/manual/Config.kmk
2164
2165 # Preprocess the xml files, applying remarks.
2166 $(foreach file,$(IPRT_XML_REFENTRY_FILES) \
2167 , $(evalcall2 def_vbox_refentry_preprocess_for_manpage,$(IPRT_OUT_DIR)/man,$(notdir $(file)),$(VBOX_PATH_RUNTIME_SRC)/$(file)))
2168
2169 # generate the header and add it as a dependency to the source using it.
2170 $(evalcall2 def_vbox_single_refentry_to_h,$(IPRT_OUT_DIR)/man/isomakercmd-man.h, $(IPRT_OUT_DIR)/man/isomakercmd-man.xml)
2171 common/fs/isomakercmd.cpp_DEPS = $(IPRT_OUT_DIR)/man/isomakercmd-man.h
2172 common/fs/isomakercmd.cpp_INCS = $(IPRT_OUT_DIR)/man/
2173
2174endif
2175
2176
2177#
2178# RuntimeR3-x86 - 32-bit version of RuntimeR3 for windows hosts.
2179#
2180RuntimeR3-x86_EXTENDS := RuntimeR3
2181RuntimeR3-x86_BLD_TRG_ARCH := x86
2182RuntimeR3-x86_DEFS = $(filter-out IN_SUP_R3 IN_SUP, $(RuntimeR3_DEFS)) IPRT_WITHOUT_LDR_VERIFY RT_NO_GIP
2183
2184
2185#
2186# RuntimeR3NoAsan - A RuntimeR3 version without ASAN for windows hosts.
2187#
2188RuntimeR3NoAsan_EXTENDS := RuntimeR3
2189RuntimeR3NoAsan_TEMPLATE := VBoxR3StaticExeNoAsan
2190
2191
2192#
2193# RuntimeBldProg - Static Runtime for build programs.
2194#
2195# Note! This is a bit of hacky since kBuild doesn't support building libraries
2196# for build programs.
2197#
2198RuntimeBldProg_TEMPLATE := VBoxAdvBldProg
2199RuntimeBldProg_EXTENDS := RuntimeBaseR3
2200RuntimeBldProg_BLD_TRG := $(KBUILD_HOST)
2201RuntimeBldProg_BLD_TRG_ARCH := $(KBUILD_HOST_ARCH)
2202RuntimeBldProg_BLD_TRG_CPU := $(KBUILD_HOST_CPU)
2203RuntimeBldProg_DEFS := $(filter-out IN_SUP_R3 IN_SUP, $(RuntimeBaseR3_DEFS)) IPRT_WITHOUT_LDR_VERIFY RT_NO_GIP
2204RuntimeBldProg_SOURCES = \
2205 common/alloc/alloc.cpp \
2206 common/alloc/memcache.cpp \
2207 common/asn1/asn1-basics.cpp \
2208 common/asn1/asn1-cursor.cpp \
2209 common/asn1/asn1-default-allocator.cpp \
2210 common/asn1/asn1-dump.cpp \
2211 common/asn1/asn1-efence-allocator.cpp \
2212 common/asn1/asn1-encode.cpp \
2213 common/asn1/asn1-safer-allocator.cpp \
2214 common/asn1/asn1-ut-bitstring-decode.cpp \
2215 common/asn1/asn1-ut-bitstring.cpp \
2216 common/asn1/asn1-ut-boolean-decode.cpp \
2217 common/asn1/asn1-ut-boolean.cpp \
2218 common/asn1/asn1-ut-core-decode.cpp \
2219 common/asn1/asn1-ut-core.cpp \
2220 common/asn1/asn1-ut-dyntype-decode.cpp \
2221 common/asn1/asn1-ut-dyntype.cpp \
2222 common/asn1/asn1-ut-integer-decode.cpp \
2223 common/asn1/asn1-ut-integer.cpp \
2224 common/asn1/asn1-ut-null-decode.cpp \
2225 common/asn1/asn1-ut-null.cpp \
2226 common/asn1/asn1-ut-objid-decode.cpp \
2227 common/asn1/asn1-ut-objid.cpp \
2228 common/asn1/asn1-ut-octetstring-decode.cpp \
2229 common/asn1/asn1-ut-octetstring.cpp \
2230 common/asn1/asn1-ut-string-decode.cpp \
2231 common/asn1/asn1-ut-string.cpp \
2232 common/asn1/asn1-ut-time-decode.cpp \
2233 common/asn1/asn1-ut-time.cpp \
2234 common/checksum/adler32.cpp \
2235 common/checksum/alt-md2.cpp \
2236 common/checksum/alt-md4.cpp \
2237 common/checksum/alt-md5.cpp \
2238 common/checksum/alt-sha1.cpp \
2239 common/checksum/alt-sha256.cpp \
2240 common/checksum/alt-sha512.cpp \
2241 common/checksum/alt-sha3.cpp \
2242 common/checksum/crc16ccitt.cpp \
2243 common/checksum/crc32.cpp \
2244 common/checksum/crc32c.cpp \
2245 common/checksum/crc64.cpp \
2246 common/checksum/manifest2.cpp \
2247 common/checksum/manifest3.cpp \
2248 common/checksum/md5str.cpp \
2249 common/checksum/sha1str.cpp \
2250 common/checksum/sha256str.cpp \
2251 common/checksum/sha512str.cpp \
2252 common/crypto/digest-builtin.cpp \
2253 common/crypto/digest-core.cpp \
2254 common/crypto/key.cpp \
2255 common/crypto/pemfile-read.cpp \
2256 common/crypto/pkcs7-asn1-decoder.cpp \
2257 common/crypto/pkcs7-core.cpp \
2258 common/crypto/pkcs7-init.cpp \
2259 common/crypto/pkcs7-sanity.cpp \
2260 common/crypto/pkcs7-verify.cpp \
2261 common/crypto/pkix-signature-builtin.cpp \
2262 common/crypto/pkix-signature-core.cpp \
2263 common/crypto/pkix-signature-rsa.cpp \
2264 common/crypto/pkix-util.cpp \
2265 common/crypto/pkix-verify.cpp \
2266 common/crypto/rsa-asn1-decoder.cpp \
2267 common/crypto/rsa-core.cpp \
2268 common/crypto/rsa-init.cpp \
2269 common/crypto/rsa-sanity.cpp \
2270 common/crypto/RTCrStoreCertAddFromJavaKeyStore.cpp \
2271 common/crypto/RTCrStoreCreateSnapshotOfUserAndSystemTrustedCAsAndCerts.cpp \
2272 common/crypto/spc-asn1-decoder.cpp \
2273 common/crypto/spc-core.cpp \
2274 common/crypto/spc-init.cpp \
2275 common/crypto/spc-sanity.cpp \
2276 common/crypto/store-cert-add-basic.cpp \
2277 common/crypto/store-inmem.cpp \
2278 common/crypto/store.cpp \
2279 common/crypto/taf-asn1-decoder.cpp \
2280 common/crypto/taf-core.cpp \
2281 common/crypto/taf-init.cpp \
2282 common/crypto/taf-sanity.cpp \
2283 common/crypto/tsp-asn1-decoder.cpp \
2284 common/crypto/tsp-core.cpp \
2285 common/crypto/tsp-init.cpp \
2286 common/crypto/tsp-sanity.cpp \
2287 common/crypto/x509-asn1-decoder.cpp \
2288 common/crypto/x509-certpaths.cpp \
2289 common/crypto/x509-core.cpp \
2290 common/crypto/x509-file.cpp \
2291 common/crypto/x509-init.cpp \
2292 common/crypto/x509-sanity.cpp \
2293 common/crypto/x509-verify.cpp \
2294 common/dbg/dbg.cpp \
2295 common/dbg/dbgcfg.cpp \
2296 common/dbg/dbgmod.cpp \
2297 common/dbg/dbgmodcodeview.cpp \
2298 common/dbg/dbgmodcontainer.cpp \
2299 common/dbg/dbgmoddeferred.cpp \
2300 common/dbg/dbgmoddwarf.cpp \
2301 common/dbg/dbgmodexports.cpp \
2302 common/dbg/dbgmodldr.cpp \
2303 common/dbg/dbgmodmapsym.cpp \
2304 common/dbg/dbgmodnm.cpp \
2305 common/err/errinfo-alloc.cpp \
2306 common/err/errinfo.cpp \
2307 common/err/errinfolog.cpp \
2308 common/err/errmsg.cpp \
2309 common/err/RTErrConvertFromErrno.cpp \
2310 common/err/RTErrConvertToErrno.cpp \
2311 common/fs/isomaker.cpp \
2312 common/fs/isomakercmd.cpp \
2313 common/fs/isomakerimport.cpp \
2314 common/fs/isovfs.cpp \
2315 common/ldr/ldr.cpp \
2316 common/ldr/ldrELF.cpp \
2317 common/ldr/ldrEx.cpp \
2318 common/ldr/ldrFile.cpp \
2319 common/ldr/ldrLX.cpp \
2320 common/ldr/ldrMachO.cpp \
2321 common/ldr/ldrNative.cpp \
2322 common/ldr/ldrPE.cpp \
2323 common/ldr/ldrVfsFile.cpp \
2324 common/log/log.cpp \
2325 common/log/log-weak.cpp \
2326 common/log/log-weak-assert.cpp \
2327 common/log/log-weak-rel.cpp \
2328 common/log/logellipsis.cpp \
2329 common/log/logformat.cpp \
2330 common/log/logrel.cpp \
2331 common/log/logrelellipsis.cpp \
2332 common/log/RTLogCreateEx.cpp \
2333 common/math/bignum.cpp \
2334 common/misc/assert.cpp \
2335 common/misc/cidr.cpp \
2336 common/misc/getopt.cpp \
2337 common/misc/getoptargv.cpp \
2338 common/misc/lockvalidator.cpp \
2339 common/misc/message.cpp \
2340 common/misc/messagerefentry.cpp \
2341 common/misc/once.cpp \
2342 common/misc/RTAssertMsg1Weak.cpp \
2343 common/misc/RTAssertMsg2.cpp \
2344 common/misc/RTAssertMsg2Add.cpp \
2345 common/misc/RTAssertMsg2AddWeak.cpp \
2346 common/misc/RTAssertMsg2AddWeakV.cpp \
2347 common/misc/RTAssertMsg2Weak.cpp \
2348 common/misc/RTAssertMsg2WeakV.cpp \
2349 common/misc/RTFileModeToFlags.cpp \
2350 common/misc/RTFileOpenF.cpp \
2351 common/misc/RTFileOpenV.cpp \
2352 common/misc/RTMemWipeThoroughly.cpp \
2353 common/misc/req.cpp \
2354 common/misc/reqqueue.cpp \
2355 common/misc/reqpool.cpp \
2356 common/misc/sanity-c.c \
2357 common/misc/sanity-cpp.cpp \
2358 common/misc/sg.cpp \
2359 common/misc/term.cpp \
2360 common/misc/thread.cpp \
2361 common/net/macstr.cpp \
2362 common/net/netaddrstr2.cpp \
2363 common/path/comparepaths.cpp \
2364 common/path/RTPathAbsDup.cpp \
2365 common/path/RTPathAbsEx.cpp \
2366 common/path/RTPathAbsExDup.cpp \
2367 common/path/RTPathAppend.cpp \
2368 common/path/RTPathAppendEx.cpp \
2369 common/path/RTPathChangeToDosSlashes.cpp \
2370 common/path/RTPathChangeToUnixSlashes.cpp \
2371 common/path/RTPathCopyComponents.cpp \
2372 common/path/RTPathCountComponents.cpp \
2373 common/path/RTPathEnsureTrailingSeparator.cpp \
2374 common/path/RTPathExt.cpp \
2375 common/path/RTPathFilename.cpp \
2376 common/path/RTPathHasExt.cpp \
2377 common/path/RTPathHasPath.cpp \
2378 common/path/RTPathJoin.cpp \
2379 common/path/RTPathJoinA.cpp \
2380 common/path/RTPathJoinEx.cpp \
2381 common/path/RTPathParse.cpp \
2382 common/path/RTPathParsedReassemble.cpp \
2383 common/path/RTPathParseSimple.cpp \
2384 common/path/RTPathRealDup.cpp \
2385 common/path/rtPathRootSpecLen.cpp \
2386 common/path/RTPathSkipRootSpec.cpp \
2387 common/path/RTPathSplit.cpp \
2388 common/path/RTPathSplitA.cpp \
2389 common/path/RTPathSplitReassemble.cpp \
2390 common/path/RTPathStartsWithRoot.cpp \
2391 common/path/RTPathStripExt.cpp \
2392 common/path/RTPathStripFilename.cpp \
2393 common/path/RTPathStripTrailingSlash.cpp \
2394 common/path/RTPathTraverseList.cpp \
2395 common/path/rtPathVolumeSpecLen.cpp \
2396 common/rand/rand.cpp \
2397 common/rand/randadv.cpp \
2398 common/rand/randparkmiller.cpp \
2399 common/sort/shellsort.cpp \
2400 common/string/base64.cpp \
2401 common/string/RTStrCat.cpp \
2402 common/string/RTStrCmp.cpp \
2403 common/string/RTStrCopy.cpp \
2404 common/string/RTStrCopyEx.cpp \
2405 common/string/RTStrCopyP.cpp \
2406 common/string/RTStrICmpAscii.cpp \
2407 common/string/RTStrIStartsWith.cpp \
2408 common/string/RTStrNCmp.cpp \
2409 common/string/RTStrNICmpAscii.cpp \
2410 common/string/RTStrNLen.cpp \
2411 common/string/RTStrPrintHexBytes.cpp \
2412 common/string/RTStrStr.cpp \
2413 common/string/simplepattern.cpp \
2414 common/string/straprintf.cpp \
2415 common/string/strcache.cpp \
2416 common/string/strformat.cpp \
2417 common/string/RTStrFormat.cpp \
2418 common/string/strformatnum.cpp \
2419 common/string/strformatrt.cpp \
2420 common/string/strformattype.cpp \
2421 common/string/strhash1.cpp \
2422 common/string/stringalloc.cpp \
2423 common/string/strprintf.cpp \
2424 common/string/strprintf-ellipsis.cpp \
2425 common/string/strprintf2.cpp \
2426 common/string/strprintf2-ellipsis.cpp \
2427 common/string/strspace.cpp \
2428 common/string/strstrip.cpp \
2429 common/string/strtonum.cpp \
2430 common/string/unidata-flags.cpp \
2431 common/string/unidata-lower.cpp \
2432 common/string/unidata-upper.cpp \
2433 common/string/utf-16-case.cpp \
2434 common/string/utf-16.cpp \
2435 common/string/utf-8-case.cpp \
2436 common/string/utf-8-case2.cpp \
2437 common/string/utf-8.cpp \
2438 common/table/avllu32.cpp \
2439 common/table/avlpv.cpp \
2440 common/table/avlrpv.cpp \
2441 common/table/avlruintptr.cpp \
2442 common/table/avlu32.cpp \
2443 common/table/avluintptr.cpp \
2444 common/time/time.cpp \
2445 common/time/timeprog.cpp \
2446 common/time/timesupref.cpp \
2447 common/time/timesysalias.cpp \
2448 common/vfs/vfsbase.cpp \
2449 common/vfs/vfschain.cpp \
2450 common/vfs/vfsmemory.cpp \
2451 common/vfs/vfsmisc.cpp \
2452 common/vfs/vfsmsg.cpp \
2453 common/vfs/vfsstddir.cpp \
2454 common/vfs/vfsstdfile.cpp \
2455 common/vfs/vfsstdpipe.cpp \
2456 common/zip/gzipvfs.cpp \
2457 common/zip/tarcmd.cpp \
2458 common/zip/tarvfs.cpp \
2459 common/zip/tarvfswriter.cpp \
2460 generic/critsect-generic.cpp \
2461 generic/critsectrw-generic.cpp \
2462 generic/env-generic.cpp \
2463 generic/mempool-generic.cpp \
2464 generic/RTEnvDupEx-generic.cpp \
2465 generic/RTFileCopy-generic.cpp \
2466 generic/RTFileCopyAttributes-generic.cpp \
2467 generic/RTFileCopyEx-generic.cpp \
2468 generic/RTFileCopyByHandlesEx-generic.cpp \
2469 generic/RTFileQuerySize-generic.cpp \
2470 generic/RTFileReadAll-generic.cpp \
2471 generic/RTFileReadAllByHandle-generic.cpp \
2472 generic/RTFileReadAllByHandleEx-generic.cpp \
2473 generic/RTFileReadAllEx-generic.cpp \
2474 generic/RTFileReadAllFree-generic.cpp \
2475 generic/RTLogWriteStdErr-generic.cpp \
2476 generic/RTLogWriteStdOut-generic.cpp \
2477 generic/RTLogWriteUser-generic.cpp \
2478 generic/RTLogWriteVmm-stub-generic.cpp \
2479 generic/RTPathIsSame-generic.cpp \
2480 generic/RTPathGetCurrentDrive-generic.cpp \
2481 generic/rtStrFormatKernelAddress-generic.cpp \
2482 generic/RTTimerLRCreate-generic.cpp \
2483 generic/semfastmutex-generic.cpp \
2484 generic/semxroads-generic.cpp \
2485 generic/spinlock-generic.cpp \
2486 r3/alloc-ef.cpp \
2487 r3/alloc.cpp \
2488 r3/allocex.cpp \
2489 r3/dir.cpp \
2490 r3/dir2.cpp \
2491 r3/fileio.cpp \
2492 r3/fs.cpp \
2493 r3/generic/semspinmutex-r3-generic.cpp \
2494 r3/init.cpp \
2495 r3/init-data.cpp \
2496 r3/process-data.cpp \
2497 r3/memsafer-r3.cpp \
2498 r3/path.cpp \
2499 r3/RTPathTemp.cpp \
2500 r3/process.cpp \
2501 r3/socket.cpp \
2502 r3/stream.cpp \
2503 r3/tcp.cpp \
2504 VBox/log-vbox.cpp \
2505 VBox/RTAssertShouldPanic-vbox.cpp \
2506 common/string/ministring.cpp # for main
2507ifneq ($(KBUILD_HOST),win)
2508 RuntimeBldProg_SOURCES += \
2509 common/err/errmsgxpcom.cpp
2510endif
2511
2512RuntimeBldProg_SOURCES.darwin = $(filter-out \
2513 generic/cdrom-generic.cpp \
2514 generic/RTFileMove-generic.cpp \
2515 generic/RTProcDaemonize-generic.cpp \
2516 generic/RTThreadGetAffinity-stub-generic.cpp \
2517 generic/RTThreadSetAffinity-stub-generic.cpp \
2518 generic/RTThreadSetAffinityToCpu-generic.cpp \
2519 generic/RTTimerCreate-generic.cpp \
2520 generic/mppresent-generic.cpp \
2521 generic/RTSystemShutdown-generic.cpp \
2522 generic/timer-generic.cpp \
2523 generic/utf16locale-generic.cpp \
2524 generic/RTProcIsRunningByName-generic.cpp \
2525 generic/RTThreadGetNativeState-generic.cpp \
2526 r3/darwin/filelock-darwin.cpp \
2527 r3/darwin/systemmem-darwin.cpp \
2528 r3/darwin/krnlmod-darwin.cpp \
2529 r3/darwin/filelock-darwin.cpp \
2530 r3/darwin/RTSystemQueryDmiString-darwin.cpp \
2531 r3/darwin/RTPathUserDocuments-darwin.cpp \
2532 r3/posix/RTTimeSet-posix.cpp \
2533 r3/posix/serialport-posix.cpp \
2534 r3/posix/localipc-posix.cpp \
2535 r3/generic/allocex-r3-generic.cpp \
2536 r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
2537 r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
2538 r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
2539 , $(RuntimeBaseR3_SOURCES.darwin))
2540
2541RuntimeBldProg_SOURCES.win = \
2542 common/dbg/dbgmoddbghelp.cpp \
2543 common/string/mempcpy.asm \
2544 common/string/RTUtf16CopyAscii.cpp \
2545 common/string/RTUtf16End.cpp \
2546 common/string/RTUtf16NLenEx.cpp \
2547 common/string/RTUtf16ICmpAscii.cpp \
2548 common/string/RTUtf16NICmpAscii.cpp \
2549 generic/mppresent-generic-online.cpp \
2550 generic/RTDirExists-generic.cpp \
2551 generic/RTDirSetTimes-generic.cpp \
2552 generic/RTFileCopyPartEx-generic.cpp \
2553 generic/RTFileExists-generic.cpp \
2554 generic/RTFileSetAllocationSize-generic.cpp \
2555 generic/RTRandAdvCreateSystemFaster-generic.cpp \
2556 generic/RTRandAdvCreateSystemTruer-generic.cpp \
2557 generic/RTSemEventWait-2-ex-generic.cpp \
2558 generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
2559 generic/RTSemEventMultiWait-2-ex-generic.cpp \
2560 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
2561 generic/RTSemMutexRequest-generic.cpp \
2562 generic/RTSemMutexRequestDebug-generic.cpp \
2563 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
2564 generic/uuid-generic.cpp \
2565 nt/fileioutils-nt.cpp \
2566 nt/RTErrConvertFromNtStatus.cpp \
2567 nt/semevent-nt.cpp \
2568 nt/semeventmulti-nt.cpp \
2569 r3/nt/direnum-r3-nt.cpp \
2570 r3/nt/dirrel-r3-nt.cpp \
2571 r3/nt/fs-nt.cpp \
2572 r3/nt/pathint-nt.cpp \
2573 r3/nt/RTFileQueryFsSizes-nt.cpp \
2574 r3/nt/RTFileSetMode-r3-nt.cpp \
2575 r3/nt/RTPathQueryInfo-nt.cpp \
2576 r3/nt/RTPathSetMode-r3-nt.cpp \
2577 r3/nt/RTProcQueryParent-r3-nt.cpp \
2578 r3/win/alloc-win.cpp \
2579 r3/win/allocex-win.cpp \
2580 r3/win/dir-win.cpp \
2581 r3/win/env-win.cpp \
2582 r3/win/errvars-win.cpp \
2583 r3/win/fileio-win.cpp \
2584 r3/win/init-win.cpp \
2585 r3/win/ldrNative-win.cpp \
2586 r3/win/path-win.cpp \
2587 r3/win/pathint-win.cpp \
2588 r3/win/pipe-win.cpp \
2589 r3/win/process-win.cpp \
2590 r3/win/RTCrStoreCreateSnapshotById-win.cpp \
2591 r3/win/RTHandleGetStandard-win.cpp \
2592 r3/win/RTLogWriteDebugger-win.cpp \
2593 r3/win/rtProcInitExePath-win.cpp \
2594 r3/win/RTUuidCreate-win.cpp \
2595 r3/win/sched-win.cpp \
2596 r3/win/semmutex-win.cpp \
2597 r3/win/symlink-win.cpp \
2598 r3/win/system-get-nt-xxx-win.cpp \
2599 r3/win/thread-win.cpp \
2600 r3/win/thread2-win.cpp \
2601 $(if-expr 1,r3/win/time-win.cpp,r3/nt/time-nt.cpp) \
2602 r3/win/time2-win.cpp \
2603 r3/win/tls-win.cpp \
2604 r3/win/utf16locale-win.cpp \
2605 r3/win/utf8-win.cpp \
2606 win/errmsgwin.cpp \
2607 win/RTErrConvertFromWin32.cpp
2608
2609RuntimeBldProg_SOURCES.amd64 = $(filter-out \
2610 VBox/RTLogWriteVmm-amd64-x86.asm \
2611 , $(RuntimeBaseR3_SOURCES.amd64))
2612
2613RuntimeBldProg_SOURCES.x86 = $(filter-out \
2614 VBox/RTLogWriteVmm-amd64-x86.asm \
2615 , $(RuntimeBaseR3_SOURCES.x86))
2616
2617RuntimeBldProg_SOURCES.win.amd64 := \
2618 $(RuntimeWin64ASM_SOURCES) \
2619 common/string/memrchr.asm
2620
2621RuntimeBldProg_SOURCES.win.x86 := \
2622 $(RuntimeWin32ASM_SOURCES) \
2623 common/string/memrchr.asm
2624
2625## @todo reduce this
2626RuntimeBldProg_SOURCES.os2 += \
2627 common/string/memrchr.asm \
2628 generic/mppresent-generic.cpp \
2629 generic/RTCrStoreCreateSnapshotById-generic.cpp \
2630 generic/RTDirQueryInfo-generic.cpp \
2631 generic/RTDirSetTimes-generic.cpp \
2632 generic/fileio-at-generic.cpp \
2633 generic/RTFileCopyPartEx-generic.cpp \
2634 generic/RTFileMove-generic.cpp \
2635 generic/RTFileSetAllocationSize-generic.cpp \
2636 generic/RTLogWriteDebugger-generic.cpp \
2637 generic/RTPathGetCurrentOnDrive-generic.cpp \
2638 generic/RTRandAdvCreateSystemFaster-generic.cpp \
2639 generic/RTRandAdvCreateSystemTruer-generic.cpp \
2640 generic/RTSemEventMultiWait-generic.cpp \
2641 generic/RTSemEventWait-generic.cpp \
2642 generic/RTSemMutexRequest-generic.cpp \
2643 generic/RTSemMutexRequestDebug-generic.cpp \
2644 generic/RTThreadGetNativeState-generic.cpp \
2645 generic/RTUuidCreate-generic.cpp \
2646 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
2647 generic/timer-generic.cpp \
2648 generic/utf16locale-generic.cpp \
2649 generic/uuid-generic.cpp \
2650 os2/RTErrConvertFromOS2.cpp \
2651 r3/generic/allocex-r3-generic.cpp \
2652 r3/generic/dirrel-r3-generic.cpp \
2653 r3/os2/filelock-os2.cpp \
2654 r3/os2/mp-os2.cpp \
2655 r3/os2/pipe-os2.cpp \
2656 r3/os2/rtProcInitExePath-os2.cpp \
2657 r3/os2/sched-os2.cpp \
2658 r3/os2/sems-os2.cpp \
2659 r3/os2/systemmem-os2.cpp \
2660 r3/os2/thread-os2.cpp \
2661 r3/os2/time-os2.cpp \
2662 r3/posix/dir-posix.cpp \
2663 r3/posix/env-posix.cpp \
2664 r3/posix/errvars-posix.cpp \
2665 r3/posix/fileio-posix.cpp \
2666 r3/posix/fileio2-posix.cpp \
2667 r3/posix/fs-posix.cpp \
2668 r3/posix/fs2-posix.cpp \
2669 r3/posix/fs3-posix.cpp \
2670 r3/posix/ldrNative-posix.cpp \
2671 r3/posix/path-posix.cpp \
2672 r3/posix/path2-posix.cpp \
2673 r3/posix/pathhost-posix.cpp \
2674 r3/posix/process-creation-posix.cpp \
2675 r3/posix/process-posix.cpp \
2676 r3/posix/RTFileQueryFsSizes-posix.cpp \
2677 r3/posix/RTHandleGetStandard-posix.cpp \
2678 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
2679 r3/posix/RTMemProtect-posix.cpp \
2680 r3/posix/RTPathUserDocuments-posix.cpp \
2681 r3/posix/RTPathUserHome-posix.cpp \
2682 r3/posix/RTTimeNow-posix.cpp \
2683 r3/posix/RTTimeSet-posix.cpp \
2684 r3/posix/symlink-posix.cpp \
2685 r3/posix/timelocal-posix.cpp \
2686 r3/posix/utf8-posix.cpp
2687
2688## @todo reduce linux, solaris and freebsd sources too.
2689
2690
2691
2692#
2693# RuntimeGuestR3 - Guest Additions Runtime (static/exe).
2694# (The KBUILD_HOST inheritance here is for cross building the linux
2695# additions, while .x86 is for cross building x86 while targeting amd64.)
2696#
2697RuntimeGuestR3_TEMPLATE := VBoxGuestR3Lib
2698RuntimeGuestR3_EXTENDS := RuntimeR3
2699RuntimeGuestR3_DEFS = $(filter-out RTCRITSECT_STRICT RT_NO_GIP IN_SUP_R3, $(RuntimeR3_DEFS))
2700RuntimeGuestR3_SOURCES = $(filter-out \
2701 common/time/timesupref.cpp \
2702 common/time/timesupA.asm \
2703 common/time/timesup.cpp \
2704 common/zip/xarvfs.cpp \
2705 r3/xml.cpp \
2706 generic/RTLogWriteUser-generic.cpp \
2707 , $(RuntimeR3_SOURCES)) \
2708 \
2709 common/time/timesysalias.cpp \
2710 VBox/logbackdoor.cpp
2711ifndef VBOX_WITH_NOCRT_STATIC
2712 RuntimeGuestR3_DEFS.win.x86 = $(RuntimeR3_DEFS.win.x86) \
2713 VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
2714 RuntimeGuestR3_SOURCES.win.x86 = $(RuntimeR3_SOURCES.win.x86) \
2715 r3/win/vcc-fakes-kernel32.cpp \
2716 r3/win/vcc-fakes-kernel32-A.asm \
2717 r3/win/vcc-fakes-ntdll.cpp \
2718 r3/win/vcc-fakes-ntdll-A.asm \
2719 r3/win/vcc-fakes-ws2_32.cpp \
2720 r3/win/vcc-fakes-ws2_32-A.asm \
2721 r3/win/vcc-fakes-shell32.cpp \
2722 r3/win/vcc-fakes-shell32-A.asm
2723endif
2724
2725
2726#
2727# RuntimeGuestR3-x86 - Same as RuntimeGuestR3, except that it's targeting x86.
2728#
2729RuntimeGuestR3-x86_EXTENDS := RuntimeGuestR3
2730RuntimeGuestR3-x86_BLD_TRG_ARCH := x86
2731
2732
2733#
2734# RuntimeGuestR3Shared - Guest Additions Runtime (static/dll).
2735#
2736RuntimeGuestR3Shared_TEMPLATE := VBoxGuestR3Dll
2737RuntimeGuestR3Shared_EXTENDS := RuntimeGuestR3
2738RuntimeGuestR3Shared_INST = $(INST_ADDITIONS_LIB)
2739ifdef VBOX_WITH_NOCRT_STATIC
2740 if1of ($(KBUILD_TARGET), win)
2741 RuntimeGuestR3Shared_SDKS = $(filter-out VBoxSoftFloatR3Shared,$(RuntimeGuestR3_SDKS)) VBoxSoftFloatGuestR3Shared
2742 RuntimeGuestR3Shared_SOURCES = $(RuntimeGuestR3_SOURCES) \
2743 common/math/fma.cpp \
2744 common/math/fma-asm.asm \
2745 common/math/fmaf.cpp \
2746 common/math/fmaf-asm.asm
2747
2748 endif
2749endif
2750
2751#
2752# RuntimeGuestR3Shared-x86 - Same as RuntimeGuestR3Shared, except that it's targeting x86.
2753#
2754RuntimeGuestR3Shared-x86_EXTENDS := RuntimeGuestR3Shared
2755RuntimeGuestR3Shared-x86_BLD_TRG_ARCH := x86
2756
2757
2758#
2759# VBoxRT - Shared Object / DLL version.
2760#
2761VBoxRT_TEMPLATE = VBoxR3DllNoPic
2762VBoxRT_SDKS = VBoxLibXml2
2763ifdef VBOX_WITH_LIBCURL
2764 VBoxRT_SDKS += VBoxLibCurl
2765endif
2766VBoxRT_SDKS += VBoxOpenSslStatic
2767if1of ($(KBUILD_TARGET_ARCH), $(VBOX_SUPPORTED_HOST_ARCHS))
2768 VBoxRT_SDKS += VBoxSoftFloatR3Shared
2769endif
2770VBoxRT_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK) VBoxNtDll
2771if1of ($(KBUILD_TARGET), win)
2772 VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE) $(VBOX_INST_TOOLS)
2773else if1of ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING), darwin win$(VBOX_WITH_HARDENING))
2774 VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
2775endif
2776VBoxRT_DEFS := $(filter-out RT_NO_GIP, $(RuntimeBaseR3_DEFS)) \
2777 IPRT_WITH_OPENSSL \
2778 IPRT_WITH_XAR \
2779 IPRT_WITH_GHIDRA_DBG_MOD \
2780 $(if-expr !defined(VBOX_WITH_ALT_HASH_CODE),IPRT_WITHOUT_SHA512T224 IPRT_WITHOUT_SHA512T256,)
2781ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
2782 VBoxRT_DEFS += RT_NO_GIP
2783endif
2784ifdef VBOX_WITH_LIBCURL
2785 VBoxRT_DEFS += IPRT_WITH_HTTP
2786endif
2787ifdef RTALLOC_REPLACE_MALLOC
2788 VBoxRT_DEFS += RTALLOC_REPLACE_MALLOC
2789endif
2790if defined(VBOX_WITH_DTRACE_R3) && !defined(VBOX_ONLY_VALIDATIONKIT)
2791 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
2792 VBoxRT_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_INCLUDE="dtrace/iprt.h"
2793 else
2794 VBoxRT_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_INCLUDE=\"dtrace/iprt.h\"
2795 endif
2796endif
2797VBoxRT_DEFS.$(KBUILD_TYPE) := $(RuntimeBaseR3_DEFS.$(KBUILD_TYPE))
2798VBoxRT_DEFS.$(KBUILD_TARGET) := $(RuntimeBaseR3_DEFS.$(KBUILD_TARGET))
2799VBoxRT_SOURCES := \
2800 VBox/VBoxRTDeps.cpp \
2801 $(filter-out common/checksum/crc32.cpp, \
2802 $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeBaseR3_SOURCES), \
2803 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeBaseR3_SOURCES)) ) ) \
2804 common/checksum/crc32-zlib.cpp \
2805 common/dbg/dbgmodghidra.cpp \
2806 common/fuzz/fuzz.cpp \
2807 common/fuzz/fuzz-config.cpp \
2808 common/fuzz/fuzz-observer.cpp \
2809 common/fuzz/fuzz-target-recorder.cpp \
2810 common/fuzz/fuzzmastercmd.cpp \
2811 common/fuzz/fuzzclientcmd.cpp
2812ifneq ($(KBUILD_TARGET),win)
2813 VBox/VBoxRTDeps.cpp_CXXFLAGS = -Wno-deprecated-declarations
2814endif
2815ifdef VBOX_WITH_LIBCURL
2816 VBoxRT_SOURCES += \
2817 generic/http-curl.cpp \
2818 common/rest/rest-primary-object-types.cpp \
2819 common/rest/rest-binary.cpp \
2820 common/rest/RTCRestAnyObject.cpp \
2821 common/rest/RTCRestArrayBase.cpp \
2822 common/rest/RTCRestClientApiBase.cpp \
2823 common/rest/RTCRestClientApiBaseOci.cpp \
2824 common/rest/RTCRestClientRequestBase.cpp \
2825 common/rest/RTCRestClientResponseBase.cpp \
2826 common/rest/RTCRestJsonPrimaryCursor.cpp \
2827 common/rest/RTCRestStringMapBase.cpp \
2828 common/rest/RTCRestOutputBase.cpp \
2829 common/rest/RTCRestOutputPrettyBase.cpp \
2830 common/rest/RTCRestOutputPrettyToString.cpp \
2831 common/rest/RTCRestOutputToString.cpp
2832endif
2833if defined(VBOX_WITH_DTRACE_R3) && !defined(VBOX_ONLY_VALIDATIONKIT)
2834 VBoxRT_SOURCES += \
2835 iprt.d
2836endif
2837VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeBaseR3_SOURCES.$(KBUILD_TARGET))
2838VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeBaseR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
2839VBoxRT_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeBaseR3_SOURCES.$(KBUILD_TARGET).x86)
2840VBoxRT_SOURCES.$(KBUILD_TARGET).amd64 := $(RuntimeBaseR3_SOURCES.$(KBUILD_TARGET).amd64)
2841VBoxRT_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeBaseR3_SOURCES.$(KBUILD_TARGET_ARCH))
2842VBoxRT_SOURCES.x86 := $(RuntimeBaseR3_SOURCES.x86)
2843VBoxRT_SOURCES.amd64 := $(RuntimeBaseR3_SOURCES.amd64)
2844VBoxRT_SOURCES.win += \
2845 r3/win/dllmain-win.cpp \
2846 $(VBoxRT_0_OUTDIR)/VBoxRT.def
2847VBoxRT_CLEAN.win += \
2848 $(VBoxRT_0_OUTDIR)/VBoxRT.def
2849VBoxRT_INCS := $(RuntimeBaseR3_INCS)
2850VBoxRT_INCS.$(KBUILD_TARGET) := $(RuntimeBaseR3_INCS.$(KBUILD_TARGET))
2851VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeBaseR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
2852VBoxRT_LIBS = \
2853 $(SDK_VBoxLzf_LIBS) \
2854 $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
2855ifndef SDK_VBoxLibXml2_LIBS
2856 VBoxRT_LIBS += \
2857 $(PATH_STAGE_LIB)/VBox-libxml2$(VBOX_SUFF_LIB)
2858endif
2859VBoxRT_LIBS += \
2860 $(SDK_VBoxZlib_LIBS)
2861ifndef SDK_VBoxOpenSslStatic_LIBS
2862 VBoxRT_LIBS += \
2863 $(PATH_STAGE_LIB)/VBox-libcrypto$(VBOX_SUFF_LIB) \
2864 $(PATH_STAGE_LIB)/VBox-libssl$(VBOX_SUFF_LIB)
2865endif
2866ifdef IPRT_WITH_LZO
2867 VBoxRT_LIBS += lzo2
2868endif
2869ifdef RTALLOC_REPLACE_MALLOC
2870 VBoxRT_LIBS += \
2871 $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
2872endif
2873VBoxRT_LIBS.darwin = \
2874 iconv
2875VBoxRT_LIBS.freebsd = \
2876 iconv \
2877 rt
2878VBoxRT_LIBS.haiku = \
2879 iconv
2880VBoxRT_LIBS.solaris = \
2881 kstat \
2882 contract \
2883 devinfo
2884ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
2885 # SMBIOS not available on Solaris SPARC.
2886 VBoxRT_LIBS.solaris += smbios
2887endif
2888VBoxRT_LIBS.win += \
2889 $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/wbemuuid.lib \
2890 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
2891VBoxRT_LDFLAGS.darwin = \
2892 -framework IOKit \
2893 -framework CoreFoundation \
2894 -framework CoreServices \
2895 -framework Security \
2896 -framework SystemConfiguration \
2897 -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
2898VBoxRT_LDFLAGS.win = /MANIFEST \
2899 /delayload:user32.dll \
2900 /delayload:shell32.dll \
2901 /delayload:ole32.dll \
2902 /delayload:oleaut32.dll \
2903 /delayload:advapi32.dll
2904
2905if1of (VBoxRT, $(DLLS))
2906 $(call VBOX_SET_VER_INFO_DLL,VBoxRT,VirtualBox Runtime)
2907endif
2908
2909
2910if defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES) && "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86"
2911 #
2912 # Hacks for running tests on NT 4. Really ugly!
2913 #
2914 # We put most of the CRT in VBoxRT because we cannot even load msvcr100.dll
2915 # or msvcp100.dll on NT4 because of kernel32.dll dependencies. More hacks
2916 # in RuntimeR3VccTricks.
2917 #
2918 TEMPLATE_VBoxR3RuntimeDllItself = xx
2919 TEMPLATE_VBoxR3RuntimeDllItself_EXTENDS = VBoxR3RuntimeDll
2920 TEMPLATE_VBoxR3RuntimeDllItself_LIBS.win.x86 = \
2921 $(filter-out $(PATH_STAGE_LIB)/RuntimeR3VccTricks%, $(TEMPLATE_VBoxR3RuntimeDll_LIBS.win.x86))
2922 TEMPLATE_VBoxR3RuntimeDllItself_DEFS += IN_RING3 VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
2923 TEMPLATE_VBoxR3RuntimeDllItself_SOURCES = \
2924 r3/win/vcc-fakes-kernel32.cpp \
2925 r3/win/vcc-fakes-kernel32-A.asm \
2926 r3/win/vcc-fakes-ws2_32.cpp \
2927 r3/win/vcc-fakes-ws2_32-A.asm \
2928 r3/win/vcc-fakes-ntdll.cpp \
2929 r3/win/vcc-fakes-ntdll-A.asm \
2930 r3/win/vcc-fakes-msvcrt.cpp
2931 VBoxRT_TEMPLATE = VBoxR3RuntimeDllItself
2932 VBoxRT_TEMPLATE.win.x86 = VBoxR3RuntimeDllItself
2933 VBoxRT_DEFS.win.x86 = $(TEMPLATE_VBoxR3RuntimeDll_DEFS.win.x86) \
2934 _CRTIMP_PURE="__declspec(dllexport)" VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
2935 VBoxRT_LDFLAGS.win.x86 = /IGNORE:4049 /IGNORE:4217
2936 VBoxRT_LIBS.win.x86 = \
2937 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/oldnames.lib \
2938 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/libcmt.lib \
2939 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/libcpmt.lib
2940endif
2941
2942
2943#
2944# HACK ALERT! Make testcase run during build on SELinux boxes.
2945# Create a dummy DLL that ensure that VBoxRT is installed
2946# during the DLL pass and cleaned up later.
2947#
2948ifeq ($(KBUILD_TARGET),linux)
2949 if1of (VBoxRT, $(DLLS))
2950 ifneq ($(wildcard /usr/bin/chcon),)
2951 VBoxRT_INSTTYPE = none
2952 VBoxRT_DEBUG_INSTTYPE = both
2953
2954 VBoxRT-x86_INSTTYPE = $(NO_SUCH_VARIABLE)
2955
2956 DLLS += VBoxRTDummy
2957 VBoxRTDummy_TEMPLATE = VBoxR3Dll
2958 VBoxRTDummy_INSTTYPE = none
2959 VBoxRTDummy_LIBS = $(PATH_STAGE_BIN)/VBoxRT.so
2960 VBoxRTDummy_CLEAN = $(PATH_STAGE_BIN)/VBoxRT.so
2961 BLDDIRS += $(PATH_STAGE_BIN)
2962
2963 $(PATH_STAGE_BIN)/VBoxRT.so: $$(VBoxRT_1_TARGET) | $$(dir $$@)
2964 $(INSTALL) $< $@
2965 chcon -t texrel_shlib_t $@ || true
2966
2967 VBoxRT:: VBoxRTDummy
2968 endif # chcon present.
2969 endif # building VBoxRT
2970endif # linux
2971
2972if1of ($(DLLS), VBoxRT)
2973 # .def file for windows.
2974 $(call KB_FN_DO_PASS0_ON_TARGET,VBoxRT)
2975 $(VBoxRT_0_OUTDIR)/VBoxRT.def: \
2976 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-$$(if-expr $$(KBUILD_TARGET_ARCH) == amd64,win64,win32).def \
2977 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-openssl-3.0.def \
2978 $(if-expr "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86" && defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES) \
2979 ,$(PATH_SUB_CURRENT)/r3/win/VBoxRT-msvcr100-win32.def ,) \
2980 | $$(dir $$@) #$(PATH_SUB_CURRENT)/r3/win/VBoxRT-msvcp100-win32.def
2981 $(RM) -f -- $@
2982 $(SED) --output "$@" \
2983 $(if-expr "$(KBUILD_TARGET_ARCH)" == "x86" ,-e "/not-x86/d", -e "/only-x86/d") \
2984 $(if-expr "$(KBUILD_TARGET_ARCH)" == "amd64",-e "/not-amd64/d",-e "/only-amd64/d") \
2985 $(if-expr "$(KBUILD_TARGET_ARCH)" == "arm64",-e "/not-arm64/d",-e "/only-arm64/d") \
2986 $(if-expr "$(substr $(if-expr $(KBUILD_TARGET) != 'win',$(VBOX_GCC_std), $(VBOX_VCC_std)),-2)" >= "17" \
2987 ,-e "/before-noexcept/d", -e "/after-noexcept/d") \
2988 $^
2989 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
2990 $(call KB_FN_AUTO_CMD_DEPS,$(VBoxRT_0_OUTDIR)/VBoxRT.def)
2991endif
2992
2993
2994#
2995# VBoxRT-x86 - 32-bit version of VBoxRT
2996#
2997VBoxRT-x86_EXTENDS = VBoxRT
2998VBoxRT-x86_TEMPLATE = VBoxR3Dll-x86
2999VBoxRT-x86_INST.win = $(INST_DLL)x86/
3000VBoxRT-x86_SDKS = VBoxLibXml2
3001ifdef VBOX_WITH_LIBCURL
3002 VBoxRT-x86_SDKS += VBoxLibCurl-x86
3003endif
3004VBoxRT-x86_SDKS += VBoxOpenSslStatic-x86
3005
3006VBoxRT-x86_LIBS = \
3007 $(SDK_VBoxLzf_LIBS-x86)
3008if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
3009 VBoxRT-x86_LIBS += \
3010 $(PATH_STAGE_LIB)/SUPR3-x86$(VBOX_SUFF_LIB)
3011endif
3012ifndef SDK_VBoxLibXml2_LIBS
3013 VBoxRT-x86_LIBS += \
3014 $(PATH_STAGE_LIB)/VBox-libxml2-x86$(VBOX_SUFF_LIB)
3015endif
3016VBoxRT-x86_LIBS += \
3017 $(SDK_VBoxZlib_LIBS-x86)
3018ifndef SDK_VBoxOpenSslStatic_LIBS
3019 VBoxRT-x86_LIBS += \
3020 $(PATH_STAGE_LIB)/VBox-libcrypto-x86$(VBOX_SUFF_LIB) \
3021 $(PATH_STAGE_LIB)/VBox-libssl-x86$(VBOX_SUFF_LIB)
3022endif
3023ifdef IPRT_WITH_LZO
3024 VBoxRT-x86_LIBS += lzo2
3025endif
3026VBoxRT-x86_LIBS.darwin = \
3027 iconv
3028VBoxRT-x86_LIBS.freebsd = \
3029 iconv \
3030 rt
3031VBoxRT-x86_LIBS.haiku = \
3032 iconv
3033VBoxRT-x86_LIBS.solaris = \
3034 kstat \
3035 contract \
3036 devinfo
3037ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
3038 # SMBIOS not available on Solaris SPARC.
3039 VBoxRT-x86_LIBS.solaris += smbios
3040endif
3041VBoxRT-x86_LIBS.win += \
3042 $(PATH_SDK_$(VBOX_WINPSDK)_LIB.x86)/wbemuuid.lib \
3043 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/delayimp.lib
3044
3045VBoxRT-x86_SOURCES.win = $(filter-out %.def %.rc,$(VBoxRT_SOURCES.win)) \
3046 $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def
3047VBoxRT-x86_CLEAN += $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def
3048
3049if1of (VBoxRT-x86, $(DLLS))
3050 $(call VBOX_SET_VER_INFO_DLL,VBoxRT-x86,VirtualBox 32-bit Runtime)
3051endif
3052
3053if1of ($(DLLS), VBoxRT-x86)
3054 # .def file for windows.
3055 $(call KB_FN_DO_PASS0_ON_TARGET,VBoxRT-x86)
3056 $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def: \
3057 $(VBOX_PATH_RUNTIME_SRC)/r3/win/VBoxRT-win32.def \
3058 | $$(dir $$@) # Hopefully no need to export openssl here.
3059 $(RM) -f -- $@
3060 $(SED) --output "$@" \
3061 -e "/not-x86/d" \
3062 -e "/only-amd64/d" \
3063 -e "/only-arm64/d" \
3064 $(if-expr "$(substr $(if-expr $(KBUILD_TARGET) != 'win',$(VBOX_GCC_std), $(VBOX_VCC_std)),-2)" >= "17" \
3065 ,-e "/before-noexcept/d", -e "/after-noexcept/d") \
3066 $(VBOX_PATH_RUNTIME_SRC)/r3/win/VBoxRT-win32.def
3067 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
3068 $(call KB_FN_AUTO_CMD_DEPS,$(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def)
3069endif
3070
3071#
3072# VBoxRTImp - Import library/hack.
3073#
3074ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
3075 $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-vcc64.def r3/win/VBoxRT-win64.def)
3076else ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
3077 $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-vcc32.def r3/win/VBoxRT-win32.def)
3078else
3079 $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-gcc.def)
3080endif
3081
3082
3083if1of ($(KBUILD_TARGET), win linux darwin) # remove later
3084 if1of ($(KBUILD_TARGET_ARCH), x86 amd64) ## @todo bugref:9898
3085 if1of (VBoxRT, $(DLLS))
3086 #
3087 # VBoxRTImpCheck - Import library check.
3088 #
3089 PROGRAMS += VBoxRTStableCheck
3090 VBoxRTStableCheck_TEMPLATE = VBoxR3TstExe
3091 VBoxRTStableCheck_SOURCES = \
3092 VBox/VBoxRTStableCheck.cpp \
3093 $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm
3094 VBoxRTStableCheck_LIBS = \
3095 $(LIB_RUNTIME)
3096 VBoxRTStableCheck_CLEAN = \
3097 $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm
3098 $(call KB_FN_DO_PASS0_ON_TARGET,VBoxRTStableCheck)
3099
3100 ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
3101 $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
3102 $(PATH_SUB_CURRENT)/VBox/DefToAsmExterns.sed \
3103 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
3104 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-vcc64.def \
3105 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win64.def \
3106 | $$(dir $$@)
3107 else ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
3108 $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
3109 $(PATH_SUB_CURRENT)/VBox/DefToAsmExternsVcc32.sed \
3110 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
3111 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-vcc32.def \
3112 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win32.def | $$(dir $$@)
3113 else
3114 $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
3115 $(PATH_SUB_CURRENT)/VBox/DefToAsmExterns.sed \
3116 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
3117 $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-gcc.def | $$(dir $$@)
3118 endif
3119 $(APPEND) -tn "$@" '%include "iprt/asmdefs.mac"' ''
3120 $(SED) --append "$@" \
3121 -e "/not-$(KBUILD_TARGET)/d" \
3122 $(if-expr "$(KBUILD_TARGET)" == "linux" ,, -e "/only-linux/d") \
3123 $(if-expr "$(KBUILD_TARGET)" == "win" ,, -e "/only-win/d") \
3124 $(if-expr "$(KBUILD_TARGET)" == "darwin",, -e "/only-darwin/d") \
3125 $(if-expr "$(KBUILD_TARGET_ARCH)" == "x86" ,-e "/not-x86/d", -e "/only-x86/d") \
3126 $(if-expr "$(KBUILD_TARGET_ARCH)" == "amd64",-e "/not-amd64/d",-e "/only-amd64/d") \
3127 $(if-expr "$(KBUILD_TARGET_ARCH)" == "arm64",-e "/not-arm64/d",-e "/only-arm64/d") \
3128 $(if-expr "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "darwin.arm64",, -e "/only-darwin.arm64/d") \
3129 $(if-expr "$(substr $(if-expr $(KBUILD_TARGET) != 'win',$(VBOX_GCC_std), $(VBOX_VCC_std)),-2)" >= "17" \
3130 ,-e "/before-noexcept/d", -e "/after-noexcept/d") \
3131 -f "$<" $(filter %.def, $^)
3132 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS)
3133 $(call KB_FN_AUTO_CMD_DEPS,$(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm)
3134
3135 endif
3136 endif ## @todo bugref:9898
3137endif # remove later
3138
3139
3140#
3141# RuntimeR3NoCRT - For windows applications w/o any runtime library.
3142# Experimental.
3143#
3144RuntimeR3NoCrt_TEMPLATE := VBoxR3StaticNoCrt
3145RuntimeR3NoCrt_INCS := include
3146RuntimeR3NoCrt_DEFS := \
3147 RT_NO_STRICT \
3148 IPRT_NO_ALLOCA_TROUBLE \
3149 IPRT_GETOPT_WITHOUT_NETWORK_ADDRESSES \
3150 IPRT_MINIMAL_STREAM \
3151 IPRT_NO_FLOAT_FORMATTING
3152RuntimeR3NoCrt_SOURCES := \
3153 common/string/straprintf.cpp \
3154 common/string/strformat.cpp \
3155 common/string/RTStrFormat.cpp \
3156 common/string/strformatnum.cpp \
3157 common/string/strformatrt.cpp \
3158 common/string/strformattype.cpp \
3159 common/string/strprintf.cpp \
3160 common/string/strprintf-ellipsis.cpp \
3161 common/string/strprintf2.cpp \
3162 common/string/strprintf2-ellipsis.cpp \
3163 common/string/stringalloc.cpp \
3164 common/string/strtonum.cpp \
3165 common/string/RTStrNLen.cpp \
3166 common/string/RTStrCmp.cpp \
3167 common/string/RTStrNCmp.cpp \
3168 common/string/RTStrICmpAscii.cpp \
3169 common/string/RTStrNICmpAscii.cpp \
3170 common/string/RTStrCopy.cpp \
3171 common/string/RTStrEnd.asm \
3172 common/string/RTUtf16Copy.cpp \
3173 common/string/utf-16.cpp \
3174 common/string/utf-8.cpp \
3175 common/path/RTPathFilename.cpp \
3176 common/misc/getopt.cpp \
3177 common/misc/getoptargv.cpp \
3178 common/misc/message.cpp \
3179 common/err/errmsg.cpp \
3180 r3/init-data.cpp \
3181 r3/process-data.cpp \
3182 generic/uuid-generic.cpp \
3183 generic/rtStrFormatKernelAddress-generic.cpp
3184
3185RuntimeR3NoCrt_SOURCES.x86 := \
3186 common/string/memcpy.asm \
3187 common/string/memchr.asm \
3188 common/string/memcmp.asm \
3189 common/string/memmove.asm \
3190 common/string/memset.asm \
3191 common/string/strlen.asm \
3192 common/string/strchr.asm \
3193 common/string/strcmp.asm \
3194 common/string/strncmp.asm
3195RuntimeR3NoCrt_SOURCES.amd64 := \
3196 common/string/memcpy.asm \
3197 common/string/memchr.asm \
3198 common/string/memcmp.asm \
3199 common/string/memmove.asm \
3200 common/string/memset.asm \
3201 common/string/strlen.asm \
3202 common/string/strchr.asm \
3203 common/string/strcmp.asm \
3204 common/string/strncmp.asm
3205
3206RuntimeR3NoCrt_SOURCES.win := \
3207 r3/win/nocrt-startup-exe-win.cpp \
3208 r3/win/nocrt-startup-common-win.cpp \
3209 r3/win/nocrt-fatal-write-win.cpp \
3210 r3/win/nocrt-alloc-win.cpp \
3211 r3/win/nocrt-streams-win.cpp \
3212 \
3213 win/errmsgwin.cpp
3214
3215#
3216# RuntimeR0 - Ring-0 library for VMMR0.
3217#
3218RuntimeR0_TEMPLATE = VBoxR0
3219RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX NOFILEID
3220ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
3221 RuntimeR0_DEFS += RT_NO_GIP
3222endif
3223if defined(VBOX_WITH_DTRACE_R0) && !defined(VBOX_ONLY_VALIDATIONKIT)
3224 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
3225 RuntimeR0_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_PREFIX=VBOXVMM_ IPRT_DTRACE_INCLUDE="dtrace/VBoxVMM.h"
3226 else
3227 RuntimeR0_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_PREFIX=VBOXVMM_ IPRT_DTRACE_INCLUDE=\"dtrace/VBoxVMM.h\"
3228 endif
3229endif
3230RuntimeR0_INCS = include
3231RuntimeR0_SOURCES := \
3232 $(if $(VBOX_ONLY_VALIDATIONKIT),,../VMM/VBoxVMM.d) \
3233 common/checksum/crc32c.cpp \
3234 common/log/logellipsis.cpp \
3235 common/log/logrelellipsis.cpp \
3236 common/log/logcom.cpp \
3237 common/log/logformat.cpp \
3238 common/log/tracebuf.cpp \
3239 common/log/tracedefault.cpp \
3240 common/log/RTLogCreateEx.cpp \
3241 common/log/RTLogSetR0ThreadNameF.cpp \
3242 common/misc/RTAssertMsg1Weak.cpp \
3243 common/misc/RTAssertMsg2.cpp \
3244 common/misc/RTAssertMsg2Add.cpp \
3245 common/misc/RTAssertMsg2AddWeak.cpp \
3246 common/misc/RTAssertMsg2AddWeakV.cpp \
3247 common/misc/RTAssertMsg2Weak.cpp \
3248 common/misc/RTAssertMsg2WeakV.cpp \
3249 common/misc/buildconfig.cpp \
3250 common/misc/once.cpp \
3251 common/misc/sanity-c.c \
3252 common/misc/sanity-cpp.cpp \
3253 common/misc/term.cpp \
3254 common/path/RTPathFilename.cpp \
3255 common/rand/rand.cpp \
3256 common/rand/randadv.cpp \
3257 common/rand/randparkmiller.cpp \
3258 common/string/strprintf-ellipsis.cpp \
3259 common/string/strprintf2-ellipsis.cpp \
3260 common/string/strhash1.cpp \
3261 common/string/strncmp.cpp \
3262 common/string/strpbrk.cpp \
3263 common/string/strtonum.cpp \
3264 common/string/RTStrCat.cpp \
3265 common/string/RTStrCatEx.cpp \
3266 common/string/RTStrCatP.cpp \
3267 common/string/RTStrCatPEx.cpp \
3268 common/string/RTStrCopyEx.cpp \
3269 common/string/RTStrCopyP.cpp \
3270 common/string/RTStrCopyPEx.cpp \
3271 common/string/RTStrCmp.cpp \
3272 common/string/RTStrICmpAscii.cpp \
3273 common/string/RTStrNICmpAscii.cpp \
3274 common/string/RTStrNLen.cpp \
3275 common/string/RTStrNLenEx.cpp \
3276 common/table/avlgcptr.cpp \
3277 common/table/avlhcphys.cpp \
3278 common/table/avllu32.cpp \
3279 common/table/avlogcphys.cpp \
3280 common/table/avlogcptr.cpp \
3281 common/table/avlohcphys.cpp \
3282 common/table/avloioport.cpp \
3283 common/table/avlpv.cpp \
3284 common/table/avlrogcphys.cpp \
3285 common/table/avlrogcptr.cpp \
3286 common/table/avlroioport.cpp \
3287 common/table/avlroogcptr.cpp \
3288 common/table/avlu32.cpp \
3289 common/table/avlou32.cpp \
3290 common/time/timesup.cpp \
3291 generic/RTAssertShouldPanic-generic.cpp \
3292 generic/critsect-generic.cpp \
3293 generic/critsectrw-generic.cpp \
3294 generic/RTRandAdvCreateSystemFaster-generic.cpp \
3295 generic/RTRandAdvCreateSystemTruer-generic.cpp \
3296 \
3297 $(RuntimeNoCrt_SOURCES)
3298
3299if1of ($(KBUILD_TARGET), darwin solaris freebsd os2)
3300 RuntimeR0_SOURCES += \
3301 common/math/gcc/adddi3.c \
3302 common/math/gcc/anddi3.c \
3303 common/math/gcc/ashldi3.c \
3304 common/math/gcc/ashrdi3.c \
3305 common/math/gcc/cmpdi2.c \
3306 common/math/gcc/divdi3.c \
3307 common/math/gcc/divmoddi4.c \
3308 common/math/gcc/iordi3.c \
3309 common/math/gcc/lshldi3.c \
3310 common/math/gcc/lshrdi3.c \
3311 common/math/gcc/moddi3.c \
3312 common/math/gcc/muldi3.c \
3313 common/math/gcc/negdi2.c \
3314 common/math/gcc/notdi2.c \
3315 common/math/gcc/qdivrem.c \
3316 common/math/gcc/subdi3.c \
3317 common/math/gcc/ucmpdi2.c \
3318 common/math/gcc/udivdi3.c \
3319 common/math/gcc/udivmoddi4.c \
3320 common/math/gcc/umoddi3.c \
3321 common/math/gcc/xordi3.c
3322endif
3323
3324RuntimeR0_SOURCES.x86 += \
3325 common/asm/ASMCpuIdExSlow.asm \
3326 common/asm/ASMAtomicUoAndU64.asm \
3327 common/asm/ASMAtomicUoAndU32.asm \
3328 common/asm/ASMAtomicUoDecU32.asm \
3329 common/asm/ASMAtomicUoIncU32.asm \
3330 common/asm/ASMAtomicUoOrU64.asm \
3331 common/asm/ASMAtomicUoOrU32.asm \
3332 common/asm/ASMAtomicUoXorU32.asm \
3333 common/asm/ASMMemFirstMismatchingU8.asm \
3334 common/asm/ASMGetXcr0.asm \
3335 common/asm/ASMSetXcr0.asm \
3336 common/asm/ASMXSave.asm \
3337 common/asm/ASMXRstor.asm \
3338 common/asm/ASMFxSave.asm \
3339 common/asm/ASMFxRstor.asm \
3340 common/asm/ASMRdMsrEx.asm \
3341 common/asm/ASMWrMsrEx.asm \
3342 common/string/RTStrEnd.asm \
3343 VBox/RTLogWriteVmm-amd64-x86.asm
3344RuntimeR0_SOURCES.amd64 += \
3345 common/asm/ASMCpuIdExSlow.asm \
3346 common/asm/ASMAtomicUoAndU64.asm \
3347 common/asm/ASMAtomicUoAndU32.asm \
3348 common/asm/ASMAtomicUoDecU32.asm \
3349 common/asm/ASMAtomicUoIncU32.asm \
3350 common/asm/ASMAtomicUoOrU64.asm \
3351 common/asm/ASMAtomicUoOrU32.asm \
3352 common/asm/ASMAtomicUoXorU32.asm \
3353 common/asm/ASMMemFirstMismatchingU8.asm \
3354 common/asm/ASMGetXcr0.asm \
3355 common/asm/ASMSetXcr0.asm \
3356 common/asm/ASMXSave.asm \
3357 common/asm/ASMXRstor.asm \
3358 common/asm/ASMFxSave.asm \
3359 common/asm/ASMFxRstor.asm \
3360 common/asm/ASMRdMsrEx.asm \
3361 common/asm/ASMWrMsrEx.asm \
3362 common/math/RTUInt128MulByU64Ex.asm \
3363 common/string/RTStrEnd.asm \
3364 VBox/RTLogWriteVmm-amd64-x86.asm
3365RuntimeR0_SOURCES.arm32 += \
3366 common/string/RTStrEnd.cpp
3367RuntimeR0_SOURCES.arm64 += \
3368 common/string/RTStrEnd.cpp
3369RuntimeR0_SOURCES.sparc32 += \
3370 common/string/RTStrEnd.cpp
3371RuntimeR0_SOURCES.sparc64 += \
3372 common/string/RTStrEnd.cpp
3373
3374#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
3375# RuntimeR0_SOURCES += common/time/timesupA.asm
3376#else
3377RuntimeR0_SOURCES += common/time/timesupref.cpp
3378#endif
3379
3380RuntimeR0_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
3381RuntimeR0_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES)
3382RuntimeR0_SOURCES.win = \
3383 nt/NtProcessStartup-stub.cpp
3384
3385RuntimeR0_SOURCES.os2 = \
3386 os2/sys0.asm
3387
3388
3389#
3390# RuntimeR0Stub - Ring-0 context startup stub for Windows and Solaris.
3391#
3392RuntimeR0Stub_TEMPLATE = $(if-expr "$(KBUILD_TARGET)" == "solaris",VBoxR0DrvLib,VBoxR0)
3393RuntimeR0Stub_SOURCES.win = \
3394 nt/NtProcessStartup-stub.cpp
3395RuntimeR0Stub_SOURCES.solaris = \
3396 r0drv/solaris/modulestub-r0drv-solaris.c
3397
3398
3399#
3400# RuntimeR0Drv - Ring-0 library for host drivers.
3401#
3402RuntimeR0Drv_TEMPLATE = VBoxR0DrvLib
3403RuntimeR0Drv_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK_INCS)
3404RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS RT_NO_EXPORT_SYMBOL NOFILEID
3405RuntimeR0Drv_DEFS.win = IN_SUP_R0 LDR_ONLY_PE IPRT_WITHOUT_DIGEST_MD4
3406RuntimeR0Drv_DEFS.darwin = IN_SUP_R0 LDR_ONLY_MACHO IPRT_WITHOUT_DIGEST_MD4 IN_RING0_DRV_ON_DARWIN
3407if ($(VBOX_SOLARIS_11_UPDATE_VERSION) > 2 \
3408 || ($(VBOX_SOLARIS_11_UPDATE_VERSION) == 2 && $(VBOX_SOLARIS_11_BUILD_VERSION) >= 22))
3409 RuntimeR0Drv_DEFS.solaris += VBOX_NEW_CRASH_DUMP_FORMAT
3410endif
3411
3412RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
3413RuntimeR0Drv_INCS.freebsd = \
3414 $(PATH_STAGE)/gen-sys-hdrs
3415RuntimeR0Drv_INCS.solaris = \
3416 r0drv/solaris/vbi/i86pc \
3417 r0drv/solaris/vbi/i86pc/sys
3418
3419RuntimeR0Drv_SOURCES = \
3420 common/alloc/alloc.cpp \
3421 common/alloc/heapsimple.cpp \
3422 common/alloc/heapoffset.cpp \
3423 common/checksum/alt-md5.cpp \
3424 common/checksum/crc32.cpp \
3425 common/checksum/crc64.cpp \
3426 common/checksum/ipv4.cpp \
3427 common/checksum/ipv6.cpp \
3428 common/err/RTErrConvertToErrno.cpp \
3429 common/err/RTErrConvertFromErrno.cpp \
3430 common/err/errinfo.cpp \
3431 common/log/log.cpp \
3432 common/log/log-weak.cpp \
3433 common/log/log-weak-assert.cpp \
3434 common/log/log-weak-rel.cpp \
3435 common/log/logellipsis.cpp \
3436 common/log/logrel.cpp \
3437 common/log/logrelellipsis.cpp \
3438 common/log/logcom.cpp \
3439 common/log/logformat.cpp \
3440 common/log/tracebuf.cpp \
3441 common/log/tracedefault.cpp \
3442 common/log/RTLogCreateEx.cpp \
3443 common/misc/RTAssertMsg1Weak.cpp \
3444 common/misc/RTAssertMsg2.cpp \
3445 common/misc/RTAssertMsg2Add.cpp \
3446 common/misc/RTAssertMsg2AddWeak.cpp \
3447 common/misc/RTAssertMsg2AddWeakV.cpp \
3448 common/misc/RTAssertMsg2Weak.cpp \
3449 common/misc/RTAssertMsg2WeakV.cpp \
3450 common/misc/assert.cpp \
3451 common/misc/buildconfig.cpp \
3452 common/misc/handletable.cpp \
3453 common/misc/handletablectx.cpp \
3454 common/misc/handletablesimple.cpp \
3455 common/misc/once.cpp \
3456 common/misc/sanity-c.c \
3457 common/misc/sanity-cpp.cpp \
3458 common/misc/term.cpp \
3459 common/misc/RTMemWipeThoroughly.cpp \
3460 common/path/rtPathVolumeSpecLen.cpp \
3461 common/path/RTPathAbsDup.cpp \
3462 common/path/RTPathAbsEx.cpp \
3463 common/path/RTPathAbsExDup.cpp \
3464 common/path/RTPathAppend.cpp \
3465 common/path/RTPathAppendEx.cpp \
3466 common/path/RTPathExt.cpp \
3467 common/path/RTPathFilename.cpp \
3468 common/path/RTPathHasExt.cpp \
3469 common/path/RTPathHasPath.cpp \
3470 common/path/RTPathParseSimple.cpp \
3471 common/path/RTPathRealDup.cpp \
3472 common/path/RTPathStripExt.cpp \
3473 common/path/RTPathStripFilename.cpp \
3474 common/path/RTPathStripTrailingSlash.cpp \
3475 common/rand/rand.cpp \
3476 common/rand/randadv.cpp \
3477 common/rand/randparkmiller.cpp \
3478 common/string/RTStrCat.cpp \
3479 common/string/RTStrCatEx.cpp \
3480 common/string/RTStrCatP.cpp \
3481 common/string/RTStrCatPEx.cpp \
3482 common/string/RTStrCmp.cpp \
3483 common/string/RTStrCopy.cpp \
3484 common/string/RTStrCopyEx.cpp \
3485 common/string/RTStrCopyP.cpp \
3486 common/string/RTStrCopyPEx.cpp \
3487 common/string/RTStrICmpAscii.cpp \
3488 common/string/RTStrNICmpAscii.cpp \
3489 common/string/RTStrNCmp.cpp \
3490 common/string/RTStrNLen.cpp \
3491 common/string/RTStrNLenEx.cpp \
3492 common/string/RTUtf16ICmpAscii.cpp \
3493 common/string/RTUtf16NICmpAscii.cpp \
3494 common/string/straprintf.cpp \
3495 common/string/strformat.cpp \
3496 common/string/RTStrFormat.cpp \
3497 common/string/strformatnum.cpp \
3498 common/string/strformatrt.cpp \
3499 common/string/strformattype.cpp \
3500 common/string/strhash1.cpp \
3501 common/string/strprintf.cpp \
3502 common/string/strprintf-ellipsis.cpp \
3503 common/string/strprintf2.cpp \
3504 common/string/strprintf2-ellipsis.cpp \
3505 common/string/strtonum.cpp \
3506 common/string/stringalloc.cpp \
3507 common/string/unidata-flags.cpp \
3508 common/string/unidata-lower.cpp \
3509 common/string/unidata-upper.cpp \
3510 common/string/utf-8.cpp \
3511 common/string/utf-8-case.cpp \
3512 common/string/utf-8-case2.cpp \
3513 common/string/utf-16.cpp \
3514 common/string/utf-16-case.cpp \
3515 common/string/utf-16-latin-1.cpp \
3516 common/string/utf-16-printf.cpp \
3517 common/table/avlpv.cpp \
3518 common/table/avlu32.cpp \
3519 common/table/avllu32.cpp \
3520 common/time/time.cpp \
3521 generic/RTLogWriteStdErr-stub-generic.cpp \
3522 generic/RTLogWriteUser-generic.cpp \
3523 generic/RTMpGetArraySize-generic.cpp \
3524 generic/RTRandAdvCreateSystemFaster-generic.cpp \
3525 generic/RTSemEventWait-2-ex-generic.cpp \
3526 generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
3527 generic/RTSemEventMultiWait-2-ex-generic.cpp \
3528 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
3529 generic/critsect-generic.cpp \
3530 generic/critsectrw-generic.cpp \
3531 generic/errvars-generic.cpp \
3532 generic/uuid-generic.cpp \
3533 r0drv/alloc-r0drv.cpp \
3534 r0drv/initterm-r0drv.cpp \
3535 r0drv/generic/semspinmutex-r0drv-generic.c \
3536 r0drv/RTR0DbgKrnlInfoGetSymbol.cpp \
3537 VBox/log-vbox.cpp
3538
3539RuntimeR0Drv_SOURCES.amd64 = \
3540 common/asm/ASMCpuIdExSlow.asm \
3541 common/asm/ASMMemFirstMismatchingU8.asm \
3542 common/asm/ASMRdMsrEx.asm \
3543 common/asm/ASMWrMsrEx.asm \
3544 common/math/bignum-amd64-x86.asm \
3545 common/math/RTUInt128MulByU64.asm \
3546 common/math/RTUInt128MulByU64Ex.asm \
3547 common/string/RTStrEnd.asm \
3548 VBox/RTLogWriteVmm-amd64-x86.asm
3549RuntimeR0Drv_SOURCES.x86 = \
3550 common/asm/ASMCpuIdExSlow.asm \
3551 common/asm/ASMMemFirstMismatchingU8.asm \
3552 common/asm/ASMRdMsrEx.asm \
3553 common/asm/ASMWrMsrEx.asm \
3554 common/math/bignum-amd64-x86.asm \
3555 common/string/RTStrEnd.asm \
3556 VBox/RTLogWriteVmm-amd64-x86.asm
3557RuntimeR0Drv_SOURCES.arm32 += \
3558 common/string/RTStrEnd.cpp
3559RuntimeR0Drv_SOURCES.arm64 += \
3560 common/string/RTStrEnd.cpp
3561RuntimeR0Drv_SOURCES.sparc32 += \
3562 common/string/RTStrEnd.cpp
3563RuntimeR0Drv_SOURCES.sparc64 += \
3564 common/string/RTStrEnd.cpp
3565
3566RuntimeR0Drv_SOURCES.linux = \
3567 common/misc/thread.cpp \
3568 common/string/strpbrk.cpp \
3569 generic/RTAssertShouldPanic-generic.cpp \
3570 generic/RTLogWriteStdOut-stub-generic.cpp \
3571 generic/RTMpGetCoreCount-generic.cpp \
3572 generic/mppresent-generic.cpp \
3573 generic/rtStrFormatKernelAddress-generic.cpp \
3574 r0drv/linux/alloc-r0drv-linux.c \
3575 r0drv/linux/assert-r0drv-linux.c \
3576 r0drv/linux/initterm-r0drv-linux.c \
3577 r0drv/linux/memobj-r0drv-linux.c \
3578 r0drv/linux/memuserkernel-r0drv-linux.c \
3579 r0drv/linux/mp-r0drv-linux.c \
3580 r0drv/linux/mpnotification-r0drv-linux.c \
3581 r0drv/linux/process-r0drv-linux.c \
3582 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
3583 r0drv/linux/semevent-r0drv-linux.c \
3584 r0drv/linux/semeventmulti-r0drv-linux.c \
3585 r0drv/linux/semfastmutex-r0drv-linux.c \
3586 r0drv/linux/semmutex-r0drv-linux.c \
3587 r0drv/linux/spinlock-r0drv-linux.c \
3588 r0drv/linux/thread-r0drv-linux.c \
3589 r0drv/linux/thread2-r0drv-linux.c \
3590 r0drv/linux/threadctxhooks-r0drv-linux.c \
3591 r0drv/linux/time-r0drv-linux.c \
3592 r0drv/linux/timer-r0drv-linux.c \
3593 r0drv/memobj-r0drv.cpp \
3594 r0drv/mpnotification-r0drv.c \
3595 r0drv/powernotification-r0drv.c
3596
3597RuntimeR0Drv_SOURCES.win = \
3598 common/ldr/ldr.cpp \
3599 common/ldr/ldrEx.cpp \
3600 common/ldr/ldrPE.cpp \
3601 common/asn1/asn1-basics.cpp \
3602 common/asn1/asn1-dump.cpp \
3603 common/asn1/asn1-cursor.cpp \
3604 common/asn1/asn1-default-allocator.cpp \
3605 common/asn1/asn1-safer-allocator.cpp \
3606 common/asn1/asn1-encode.cpp \
3607 common/asn1/asn1-ut-bitstring.cpp \
3608 common/asn1/asn1-ut-bitstring-decode.cpp \
3609 common/asn1/asn1-ut-boolean.cpp \
3610 common/asn1/asn1-ut-boolean-decode.cpp \
3611 common/asn1/asn1-ut-core.cpp \
3612 common/asn1/asn1-ut-core-decode.cpp \
3613 common/asn1/asn1-ut-dyntype.cpp \
3614 common/asn1/asn1-ut-dyntype-decode.cpp \
3615 common/asn1/asn1-ut-integer.cpp \
3616 common/asn1/asn1-ut-integer-decode.cpp \
3617 common/asn1/asn1-ut-null.cpp \
3618 common/asn1/asn1-ut-null-decode.cpp \
3619 common/asn1/asn1-ut-objid.cpp \
3620 common/asn1/asn1-ut-objid-decode.cpp \
3621 common/asn1/asn1-ut-octetstring.cpp \
3622 common/asn1/asn1-ut-octetstring-decode.cpp \
3623 common/asn1/asn1-ut-string.cpp \
3624 common/asn1/asn1-ut-string-decode.cpp \
3625 common/asn1/asn1-ut-time.cpp \
3626 common/asn1/asn1-ut-time-decode.cpp \
3627 common/crypto/digest-core.cpp \
3628 common/crypto/digest-builtin.cpp \
3629 common/crypto/key.cpp \
3630 common/crypto/rsa-asn1-decoder.cpp \
3631 common/crypto/rsa-core.cpp \
3632 common/crypto/rsa-init.cpp \
3633 common/crypto/rsa-sanity.cpp \
3634 common/crypto/pkcs7-asn1-decoder.cpp \
3635 common/crypto/pkcs7-core.cpp \
3636 common/crypto/pkcs7-init.cpp \
3637 common/crypto/pkcs7-sanity.cpp \
3638 common/crypto/pkcs7-verify.cpp \
3639 common/crypto/pkix-signature-builtin.cpp \
3640 common/crypto/pkix-signature-core.cpp \
3641 common/crypto/pkix-signature-rsa.cpp \
3642 common/crypto/pkix-util.cpp \
3643 common/crypto/pkix-verify.cpp \
3644 common/crypto/spc-asn1-decoder.cpp \
3645 common/crypto/spc-core.cpp \
3646 common/crypto/spc-init.cpp \
3647 common/crypto/spc-sanity.cpp \
3648 common/crypto/x509-asn1-decoder.cpp \
3649 common/crypto/x509-certpaths.cpp \
3650 common/crypto/x509-core.cpp \
3651 common/crypto/x509-init.cpp \
3652 common/crypto/x509-sanity.cpp \
3653 common/crypto/x509-verify.cpp \
3654 common/crypto/store.cpp \
3655 common/crypto/store-inmem.cpp \
3656 common/crypto/taf-asn1-decoder.cpp \
3657 common/crypto/taf-core.cpp \
3658 common/crypto/taf-init.cpp \
3659 common/crypto/taf-sanity.cpp \
3660 common/crypto/tsp-asn1-decoder.cpp \
3661 common/crypto/tsp-core.cpp \
3662 common/crypto/tsp-init.cpp \
3663 common/crypto/tsp-sanity.cpp \
3664 common/checksum/alt-md2.cpp \
3665 common/checksum/alt-sha1.cpp \
3666 common/checksum/alt-sha256.cpp \
3667 common/checksum/alt-sha512.cpp \
3668 common/checksum/alt-sha3.cpp \
3669 common/checksum/md2str.cpp \
3670 common/checksum/md4str.cpp \
3671 common/checksum/md5str.cpp \
3672 common/checksum/sha1str.cpp \
3673 common/checksum/sha224str.cpp \
3674 common/checksum/sha256str.cpp \
3675 common/checksum/sha384str.cpp \
3676 common/checksum/sha512str.cpp \
3677 common/checksum/sha512t224str.cpp \
3678 common/checksum/sha512t256str.cpp \
3679 common/err/errinfolog.cpp \
3680 common/path/RTPathFilenameUtf16.cpp \
3681 common/path/RTPathChangeToUnixSlashes.cpp \
3682 common/math/bignum.cpp \
3683 common/misc/zero.asm \
3684 common/string/RTStrPrintHexBytes.cpp \
3685 common/string/RTUtf16Copy.cpp \
3686 common/string/RTUtf16CopyAscii.cpp \
3687 common/string/RTUtf16CopyEx.cpp \
3688 common/string/RTUtf16Cat.cpp \
3689 common/string/RTUtf16CatAscii.cpp \
3690 common/string/RTUtf16End.cpp \
3691 common/string/RTUtf16NLen.cpp \
3692 common/string/RTUtf16NLenEx.cpp \
3693 common/string/RTUtf16PrintHexBytes.cpp \
3694 common/string/strstrip.cpp \
3695 generic/memsafer-generic.cpp \
3696 common/misc/thread.cpp \
3697 common/string/memcmp.asm \
3698 common/string/memchr.asm \
3699 common/string/memcpy.asm \
3700 common/string/memset.asm \
3701 common/string/memmove.asm \
3702 common/string/strlen.asm \
3703 common/string/strncmp.cpp \
3704 common/string/strpbrk.cpp \
3705 generic/RTAssertShouldPanic-generic.cpp \
3706 generic/RTLogWriteStdOut-stub-generic.cpp \
3707 generic/RTMpGetCoreCount-generic.cpp \
3708 generic/RTTimerCreate-generic.cpp \
3709 generic/mppresent-generic-online.cpp \
3710 generic/rtStrFormatKernelAddress-generic.cpp \
3711 nt/RTErrConvertFromNtStatus.cpp \
3712 nt/RTNtPathExpand8dot3Path.cpp \
3713 nt/RTNtPathExpand8dot3PathA.cpp \
3714 nt/RTNtPathFindPossible8dot3Name.cpp \
3715 nt/semevent-nt.cpp \
3716 nt/RTSemEventGetResolution-nt.cpp \
3717 nt/semeventmulti-nt.cpp \
3718 nt/RTSemEventMultiGetResolution-nt.cpp \
3719 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
3720 r0drv/alloc-ef-r0drv.cpp \
3721 r0drv/memobj-r0drv.cpp \
3722 r0drv/mpnotification-r0drv.c \
3723 r0drv/powernotification-r0drv.c \
3724 r0drv/nt/alloc-r0drv-nt.cpp \
3725 r0drv/nt/assert-r0drv-nt.cpp \
3726 r0drv/nt/dbgkrnlinfo-r0drv-nt.cpp \
3727 r0drv/nt/initterm-r0drv-nt.cpp \
3728 r0drv/nt/memobj-r0drv-nt.cpp \
3729 r0drv/nt/memuserkernel-r0drv-nt.cpp \
3730 r0drv/nt/mp-r0drv-nt.cpp \
3731 r0drv/nt/process-r0drv-nt.cpp \
3732 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
3733 r0drv/nt/semfastmutex-r0drv-nt.cpp \
3734 r0drv/nt/semmutex-r0drv-nt.cpp \
3735 r0drv/nt/spinlock-r0drv-nt.cpp \
3736 r0drv/nt/thread-r0drv-nt.cpp \
3737 r0drv/nt/thread2-r0drv-nt.cpp \
3738 r0drv/nt/time-r0drv-nt.cpp \
3739 r0drv/nt/timer-r0drv-nt.cpp \
3740 r0drv/nt/toxic-chkstk-r0drv-nt.asm \
3741 r0drv/nt/RTTimerGetSystemGranularity-r0drv-nt.cpp
3742
3743RuntimeR0Drv_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
3744RuntimeR0Drv_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES) \
3745 r0drv/nt/nt3fakes-stub-r0drv-nt.cpp \
3746 r0drv/nt/alloca-x86-r0drv-nt.asm
3747
3748
3749RuntimeR0Drv_SOURCES.darwin = \
3750 common/ldr/ldr.cpp \
3751 common/ldr/ldrEx.cpp \
3752 common/ldr/ldrMachO.cpp \
3753 common/ldr/ldrMemory.cpp \
3754 common/asn1/asn1-basics.cpp \
3755 common/asn1/asn1-dump.cpp \
3756 common/asn1/asn1-cursor.cpp \
3757 common/asn1/asn1-default-allocator.cpp \
3758 common/asn1/asn1-safer-allocator.cpp \
3759 common/asn1/asn1-encode.cpp \
3760 common/asn1/asn1-ut-bitstring.cpp \
3761 common/asn1/asn1-ut-bitstring-decode.cpp \
3762 common/asn1/asn1-ut-boolean.cpp \
3763 common/asn1/asn1-ut-boolean-decode.cpp \
3764 common/asn1/asn1-ut-core.cpp \
3765 common/asn1/asn1-ut-core-decode.cpp \
3766 common/asn1/asn1-ut-dyntype.cpp \
3767 common/asn1/asn1-ut-dyntype-decode.cpp \
3768 common/asn1/asn1-ut-integer.cpp \
3769 common/asn1/asn1-ut-integer-decode.cpp \
3770 common/asn1/asn1-ut-null.cpp \
3771 common/asn1/asn1-ut-null-decode.cpp \
3772 common/asn1/asn1-ut-objid.cpp \
3773 common/asn1/asn1-ut-objid-decode.cpp \
3774 common/asn1/asn1-ut-octetstring.cpp \
3775 common/asn1/asn1-ut-octetstring-decode.cpp \
3776 common/asn1/asn1-ut-string.cpp \
3777 common/asn1/asn1-ut-string-decode.cpp \
3778 common/asn1/asn1-ut-time.cpp \
3779 common/asn1/asn1-ut-time-decode.cpp \
3780 common/crypto/digest-core.cpp \
3781 common/crypto/digest-builtin.cpp \
3782 common/crypto/key.cpp \
3783 common/crypto/rsa-asn1-decoder.cpp \
3784 common/crypto/rsa-core.cpp \
3785 common/crypto/rsa-init.cpp \
3786 common/crypto/rsa-sanity.cpp \
3787 common/crypto/pkcs7-asn1-decoder.cpp \
3788 common/crypto/pkcs7-core.cpp \
3789 common/crypto/pkcs7-init.cpp \
3790 common/crypto/pkcs7-sanity.cpp \
3791 common/crypto/pkcs7-verify.cpp \
3792 common/crypto/pkix-signature-builtin.cpp \
3793 common/crypto/pkix-signature-core.cpp \
3794 common/crypto/pkix-signature-rsa.cpp \
3795 common/crypto/pkix-util.cpp \
3796 common/crypto/pkix-verify.cpp \
3797 common/crypto/spc-asn1-decoder.cpp \
3798 common/crypto/spc-core.cpp \
3799 common/crypto/spc-init.cpp \
3800 common/crypto/spc-sanity.cpp \
3801 common/crypto/x509-asn1-decoder.cpp \
3802 common/crypto/x509-certpaths.cpp \
3803 common/crypto/x509-core.cpp \
3804 common/crypto/x509-init.cpp \
3805 common/crypto/x509-sanity.cpp \
3806 common/crypto/x509-verify.cpp \
3807 common/crypto/store.cpp \
3808 common/crypto/store-inmem.cpp \
3809 common/crypto/taf-asn1-decoder.cpp \
3810 common/crypto/taf-core.cpp \
3811 common/crypto/taf-init.cpp \
3812 common/crypto/taf-sanity.cpp \
3813 common/crypto/tsp-asn1-decoder.cpp \
3814 common/crypto/tsp-core.cpp \
3815 common/crypto/tsp-init.cpp \
3816 common/crypto/tsp-sanity.cpp \
3817 common/checksum/alt-md2.cpp \
3818 common/checksum/alt-sha1.cpp \
3819 common/checksum/alt-sha256.cpp \
3820 common/checksum/alt-sha512.cpp \
3821 common/checksum/alt-sha3.cpp \
3822 common/checksum/md2str.cpp \
3823 common/checksum/md4str.cpp \
3824 common/checksum/md5str.cpp \
3825 common/checksum/sha1str.cpp \
3826 common/checksum/sha224str.cpp \
3827 common/checksum/sha256str.cpp \
3828 common/checksum/sha384str.cpp \
3829 common/checksum/sha512str.cpp \
3830 common/checksum/sha512t224str.cpp \
3831 common/checksum/sha512t256str.cpp \
3832 common/err/errinfolog.cpp \
3833 common/math/bignum.cpp \
3834 common/misc/thread.cpp \
3835 common/string/base64.cpp \
3836 common/string/memchr.asm \
3837 common/string/mempcpy.asm \
3838 common/string/strpbrk.cpp \
3839 common/string/strstrip.cpp \
3840 common/string/RTStrPrintHexBytes.cpp \
3841 darwin/RTErrConvertFromDarwin.cpp \
3842 darwin/RTErrConvertFromDarwinIO.cpp \
3843 darwin/RTErrConvertFromDarwinKern.cpp \
3844 generic/RTAssertShouldPanic-generic.cpp \
3845 generic/RTFileReadAll-generic.cpp \
3846 generic/RTFileReadAllByHandle-generic.cpp \
3847 generic/RTFileReadAllByHandleEx-generic.cpp \
3848 generic/RTFileReadAllEx-generic.cpp \
3849 generic/RTFileReadAllFree-generic.cpp \
3850 generic/RTMpGetCoreCount-generic.cpp \
3851 generic/RTMpOnPair-generic.cpp \
3852 generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
3853 generic/RTTimerCreate-generic.cpp \
3854 generic/memsafer-generic.cpp \
3855 generic/mppresent-generic.cpp \
3856 generic/timer-generic.cpp \
3857 r0drv/generic/mpnotification-r0drv-generic.cpp \
3858 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
3859 r0drv/darwin/alloc-r0drv-darwin.cpp \
3860 r0drv/darwin/assert-r0drv-darwin.cpp \
3861 r0drv/darwin/initterm-r0drv-darwin.cpp \
3862 r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp \
3863 r0drv/darwin/fileio-r0drv-darwin.cpp \
3864 r0drv/darwin/memobj-r0drv-darwin.cpp \
3865 r0drv/darwin/mp-r0drv-darwin.cpp \
3866 r0drv/darwin/memuserkernel-r0drv-darwin.cpp \
3867 r0drv/darwin/process-r0drv-darwin.cpp \
3868 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
3869 r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
3870 r0drv/darwin/rtStrFormatKernelAddress-r0drv-darwin.cpp \
3871 r0drv/darwin/semevent-r0drv-darwin.cpp \
3872 r0drv/darwin/semeventmulti-r0drv-darwin.cpp \
3873 r0drv/darwin/semfastmutex-r0drv-darwin.cpp \
3874 r0drv/darwin/semmutex-r0drv-darwin.cpp \
3875 r0drv/darwin/spinlock-r0drv-darwin.cpp \
3876 r0drv/darwin/thread-r0drv-darwin.cpp \
3877 r0drv/darwin/thread2-r0drv-darwin.cpp \
3878 r0drv/darwin/threadpreempt-r0drv-darwin.cpp \
3879 r0drv/darwin/time-r0drv-darwin.cpp \
3880 r0drv/alloc-ef-r0drv.cpp \
3881 r0drv/memobj-r0drv.cpp \
3882 r0drv/powernotification-r0drv.c
3883# - The xnu memcpy implementation in osfmk/x86_64/bcopy.s returned 'void' rather than 'void *' for a long time, so use our own.
3884# - The memcmp and strlen implementations are still C implementations living in osfmk/x86_64/loose_ends.c, so use our asm code.
3885RuntimeR0Drv_SOURCES.darwin.amd64 = \
3886 common/string/memcpy.asm
3887# common/string/strlen.asm - try again later \
3888# common/string/memcmp.asm
3889
3890RuntimeR0Drv_SOURCES.os2 = \
3891 common/path/RTPathFilenameUtf16.cpp \
3892 common/string/RTUtf16Chr.cpp \
3893 common/string/RTUtf16CmpAscii.cpp \
3894 common/string/memchr.asm \
3895 common/string/memcmp.asm \
3896 common/string/memcpy.asm \
3897 common/string/mempcpy.asm \
3898 common/string/memmove.asm \
3899 common/string/memset.asm \
3900 common/string/strchr.asm \
3901 common/string/strcmp.asm \
3902 common/string/strcpy.asm \
3903 common/string/strlen.asm \
3904 common/string/strncmp.cpp \
3905 common/string/strpbrk.cpp \
3906 common/misc/thread.cpp \
3907 generic/RTAssertShouldPanic-generic.cpp \
3908 generic/RTLogWriteDebugger-generic.cpp \
3909 generic/RTLogWriteStdOut-stub-generic.cpp \
3910 generic/RTMpCpuId-generic.cpp \
3911 generic/RTMpCpuIdFromSetIndex-generic.cpp \
3912 generic/RTMpCpuIdToSetIndex-generic.cpp \
3913 generic/RTMpIsCpuPossible-generic.cpp \
3914 generic/RTMpGetCount-generic.cpp \
3915 generic/RTMpGetMaxCpuId-generic.cpp \
3916 generic/RTMpGetOnlineCount-generic.cpp \
3917 generic/RTMpGetOnlineSet-generic.cpp \
3918 generic/RTMpGetSet-generic.cpp \
3919 generic/RTMpIsCpuOnline-generic.cpp \
3920 generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
3921 generic/RTTimerCreate-generic.cpp \
3922 generic/mppresent-generic.cpp \
3923 generic/rtStrFormatKernelAddress-generic.cpp \
3924 os2/RTErrConvertFromOS2.cpp \
3925 os2/rtSemWaitOs2ConvertTimeout.cpp \
3926 os2/sys0.asm \
3927 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
3928 r0drv/generic/RTMpOn-r0drv-generic.cpp \
3929 r0drv/generic/mpnotification-r0drv-generic.cpp \
3930 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
3931 r0drv/memobj-r0drv.cpp \
3932 r0drv/powernotification-r0drv.c \
3933 r0drv/os2/alloc-r0drv-os2.cpp \
3934 r0drv/os2/assert-r0drv-os2.cpp \
3935 r0drv/os2/assertA-r0drv-os2.asm \
3936 r0drv/os2/initterm-r0drv-os2.cpp \
3937 r0drv/os2/memobj-r0drv-os2.cpp \
3938 r0drv/os2/memuserkernel-r0drv-os2.cpp \
3939 r0drv/os2/os2imports.imp \
3940 r0drv/os2/process-r0drv-os2.cpp \
3941 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
3942 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
3943 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
3944 r0drv/os2/semevent-r0drv-os2.cpp \
3945 r0drv/os2/semeventmulti-r0drv-os2.cpp \
3946 r0drv/os2/semfastmutex-r0drv-os2.cpp \
3947 r0drv/os2/spinlock-r0drv-os2.cpp \
3948 r0drv/os2/thread-r0drv-os2.cpp \
3949 r0drv/os2/thread2-r0drv-os2.cpp \
3950 r0drv/os2/time-r0drv-os2.cpp \
3951 r0drv/os2/timer-r0drv-os2.cpp \
3952 r0drv/os2/timerA-r0drv-os2.asm
3953ifndef VBOX_USE_WATCOM_FOR_OS2
3954 RuntimeR0Drv_SOURCES.os2 += \
3955 common/math/gcc/adddi3.c \
3956 common/math/gcc/anddi3.c \
3957 common/math/gcc/ashldi3.c \
3958 common/math/gcc/ashrdi3.c \
3959 common/math/gcc/cmpdi2.c \
3960 common/math/gcc/divdi3.c \
3961 common/math/gcc/divmoddi4.c \
3962 common/math/gcc/iordi3.c \
3963 common/math/gcc/lshldi3.c \
3964 common/math/gcc/lshrdi3.c \
3965 common/math/gcc/moddi3.c \
3966 common/math/gcc/muldi3.c \
3967 common/math/gcc/negdi2.c \
3968 common/math/gcc/notdi2.c \
3969 common/math/gcc/qdivrem.c \
3970 common/math/gcc/subdi3.c \
3971 common/math/gcc/ucmpdi2.c \
3972 common/math/gcc/udivdi3.c \
3973 common/math/gcc/udivmoddi4.c \
3974 common/math/gcc/umoddi3.c \
3975 common/math/gcc/xordi3.c
3976else
3977 RuntimeR0Drv_SOURCES.os2 += \
3978 common/math/watcom/I8D-x86-32.asm \
3979 common/math/watcom/U8D-x86-32.asm \
3980 common/math/watcom/RTWatcomUInt64Div.c \
3981 common/math/watcom/U8LS-x86-32.asm \
3982 common/math/watcom/U8RS-x86-32.asm \
3983 common/math/watcom/U8M-I8M-x86-32.asm \
3984 common/string/watcom/bzero.asm \
3985 common/string/watcom/memchr.asm \
3986 common/string/watcom/memcmp.asm \
3987 common/string/watcom/memcpy.asm \
3988 common/string/watcom/memmove.asm \
3989 common/string/watcom/mempcpy.asm \
3990 common/string/watcom/memrchr.asm \
3991 common/string/watcom/memset.asm \
3992 common/string/watcom/strchr.asm \
3993 common/string/watcom/strcmp.asm \
3994 common/string/watcom/strcpy.asm \
3995 common/string/watcom/strlen.asm \
3996 common/string/watcom/strncmp.asm \
3997 common/string/watcom/strncpy.asm
3998endif
3999
4000RuntimeR0Drv_SOURCES.freebsd = \
4001 common/misc/thread.cpp \
4002 common/string/memchr.asm \
4003 common/string/memmove.asm \
4004 common/string/strpbrk.cpp \
4005 common/string/memcmp.asm \
4006 common/string/strchr.asm \
4007 generic/RTAssertShouldPanic-generic.cpp \
4008 generic/RTLogWriteDebugger-generic.cpp \
4009 generic/RTLogWriteStdOut-stub-generic.cpp \
4010 generic/RTMpOnPair-generic.cpp \
4011 generic/RTTimerCreate-generic.cpp \
4012 generic/mppresent-generic.cpp \
4013 generic/rtStrFormatKernelAddress-generic.cpp \
4014 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
4015 r0drv/generic/mpnotification-r0drv-generic.cpp \
4016 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
4017 r0drv/freebsd/alloc-r0drv-freebsd.c \
4018 r0drv/freebsd/assert-r0drv-freebsd.c \
4019 r0drv/freebsd/initterm-r0drv-freebsd.c \
4020 r0drv/freebsd/memobj-r0drv-freebsd.c \
4021 r0drv/freebsd/memuserkernel-r0drv-freebsd.c \
4022 r0drv/freebsd/process-r0drv-freebsd.c \
4023 r0drv/freebsd/semevent-r0drv-freebsd.c \
4024 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
4025 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
4026 r0drv/freebsd/semmutex-r0drv-freebsd.c \
4027 r0drv/freebsd/spinlock-r0drv-freebsd.c \
4028 r0drv/freebsd/thread-r0drv-freebsd.c \
4029 r0drv/freebsd/thread2-r0drv-freebsd.c \
4030 r0drv/freebsd/time-r0drv-freebsd.c \
4031 r0drv/freebsd/mp-r0drv-freebsd.c \
4032 generic/timer-generic.cpp \
4033 r0drv/alloc-ef-r0drv.cpp \
4034 r0drv/memobj-r0drv.cpp \
4035 r0drv/powernotification-r0drv.c
4036
4037RuntimeR0Drv_SOURCES.netbsd = \
4038 common/misc/thread.cpp \
4039 common/string/strpbrk.cpp \
4040 generic/RTAssertShouldPanic-generic.cpp \
4041 generic/RTLogWriteDebugger-generic.cpp \
4042 generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
4043 generic/RTTimerCreate-generic.cpp \
4044 generic/mppresent-generic.cpp \
4045 generic/rtStrFormatKernelAddress-generic.cpp \
4046 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
4047 r0drv/generic/mpnotification-r0drv-generic.cpp \
4048 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
4049 r0drv/netbsd/RTLogWriteStdOut-r0drv-netbsd.c \
4050 r0drv/netbsd/alloc-r0drv-netbsd.c \
4051 r0drv/netbsd/assert-r0drv-netbsd.c \
4052 r0drv/netbsd/initterm-r0drv-netbsd.c \
4053 r0drv/netbsd/memobj-r0drv-netbsd.c \
4054 r0drv/netbsd/memuserkernel-r0drv-netbsd.c \
4055 r0drv/netbsd/process-r0drv-netbsd.c \
4056 r0drv/netbsd/semevent-r0drv-netbsd.c \
4057 r0drv/netbsd/semeventmulti-r0drv-netbsd.c \
4058 r0drv/netbsd/semfastmutex-r0drv-netbsd.c \
4059 r0drv/netbsd/spinlock-r0drv-netbsd.c \
4060 r0drv/netbsd/thread-r0drv-netbsd.c \
4061 r0drv/netbsd/thread2-r0drv-netbsd.c \
4062 r0drv/netbsd/time-r0drv-netbsd.c \
4063 r0drv/netbsd/mp-r0drv-netbsd.c \
4064 generic/timer-generic.cpp \
4065 r0drv/memobj-r0drv.cpp \
4066 r0drv/powernotification-r0drv.c
4067
4068RuntimeR0Drv_SOURCES.solaris = \
4069 common/misc/thread.cpp \
4070 common/string/memchr.asm \
4071 generic/RTAssertShouldPanic-generic.cpp \
4072 generic/RTLogWriteStdOut-stub-generic.cpp \
4073 generic/RTMpGetCoreCount-generic.cpp \
4074 generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
4075 generic/RTTimerCreate-generic.cpp \
4076 generic/mppresent-generic.cpp \
4077 generic/rtStrFormatKernelAddress-generic.cpp \
4078 r0drv/memobj-r0drv.cpp \
4079 r0drv/mpnotification-r0drv.c \
4080 r0drv/powernotification-r0drv.c \
4081 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
4082 r0drv/solaris/RTMpPokeCpu-r0drv-solaris.c \
4083 r0drv/solaris/alloc-r0drv-solaris.c \
4084 r0drv/solaris/assert-r0drv-solaris.c \
4085 r0drv/solaris/dbgkrnlinfo-r0drv-solaris.c \
4086 r0drv/solaris/initterm-r0drv-solaris.c \
4087 r0drv/solaris/memuserkernel-r0drv-solaris.c \
4088 r0drv/solaris/mpnotification-r0drv-solaris.c \
4089 r0drv/solaris/memobj-r0drv-solaris.c \
4090 r0drv/solaris/mp-r0drv-solaris.c \
4091 r0drv/solaris/process-r0drv-solaris.c \
4092 r0drv/solaris/semevent-r0drv-solaris.c \
4093 r0drv/solaris/semeventmulti-r0drv-solaris.c \
4094 r0drv/solaris/semfastmutex-r0drv-solaris.c \
4095 r0drv/solaris/semmutex-r0drv-solaris.c \
4096 r0drv/solaris/spinlock-r0drv-solaris.c \
4097 r0drv/solaris/thread-r0drv-solaris.c \
4098 r0drv/solaris/thread2-r0drv-solaris.c \
4099 r0drv/solaris/threadctxhooks-r0drv-solaris.c \
4100 r0drv/solaris/time-r0drv-solaris.c \
4101 r0drv/solaris/timer-r0drv-solaris.c
4102
4103RuntimeR0Drv_SOURCES.haiku = \
4104 common/misc/thread.cpp \
4105 common/string/memchr.asm \
4106 common/string/memmove.asm \
4107 common/string/strpbrk.cpp \
4108 common/string/memcmp.asm \
4109 common/string/strchr.asm \
4110 generic/RTAssertShouldPanic-generic.cpp \
4111 generic/RTMpOnPair-generic.cpp \
4112 generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
4113 generic/RTTimerCreate-generic.cpp \
4114 generic/mppresent-generic.cpp \
4115 generic/rtStrFormatKernelAddress-generic.cpp \
4116 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
4117 r0drv/generic/mpnotification-r0drv-generic.cpp \
4118 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
4119 r0drv/haiku/alloc-r0drv-haiku.c \
4120 r0drv/haiku/assert-r0drv-haiku.c \
4121 r0drv/haiku/initterm-r0drv-haiku.c \
4122 r0drv/haiku/memobj-r0drv-haiku.c \
4123 r0drv/haiku/mp-r0drv-haiku.c \
4124 r0drv/haiku/process-r0drv-haiku.c \
4125 r0drv/haiku/RTLogWriteDebugger-r0drv-haiku.c \
4126 r0drv/haiku/RTLogWriteStdOut-r0drv-haiku.c \
4127 r0drv/haiku/semevent-r0drv-haiku.c \
4128 r0drv/haiku/semeventmulti-r0drv-haiku.c \
4129 r0drv/haiku/semfastmutex-r0drv-haiku.c \
4130 r0drv/haiku/semmutex-r0drv-haiku.c \
4131 r0drv/haiku/spinlock-r0drv-haiku.c \
4132 r0drv/haiku/thread-r0drv-haiku.c \
4133 r0drv/haiku/thread2-r0drv-haiku.c \
4134 r0drv/haiku/time-r0drv-haiku.c \
4135 generic/timer-generic.cpp \
4136 r0drv/memobj-r0drv.cpp \
4137 r0drv/powernotification-r0drv.c
4138
4139## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
4140
4141RuntimeR0Drv_ORDERDEPS.freebsd = \
4142 $(PATH_STAGE)/gen-sys-hdrs/bus_if.h \
4143 $(PATH_STAGE)/gen-sys-hdrs/device_if.h
4144
4145
4146#
4147# RuntimeGuestR0 - Guest driver runtime.
4148# This is almost the same as the RuntimeR0Drv, the main difference
4149# is in the backdoor logging and the lack of sup.h (which should be
4150# made irrelevant even for RuntimeR0Drv).
4151#
4152RuntimeGuestR0_TEMPLATE := VBoxGuestR0DrvLib
4153RuntimeGuestR0_EXTENDS = RuntimeR0Drv
4154RuntimeGuestR0_DEFS.win.x86 = $(RuntimeR0Drv_DEFS.win.x86) IPRT_TARGET_NT4 # The 32-bit version needs to work on NT4 too.
4155RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
4156RuntimeGuestR0_SOURCES += \
4157 VBox/logbackdoor.cpp
4158RuntimeGuestR0_SOURCES.win := \
4159 $(filter-out common/checksum/md% common/checksum/sha%, $(RuntimeR0Drv_SOURCES.win))
4160
4161
4162ifdef VBOX_WITH_RAW_MODE
4163 #
4164 # RuntimeRC - Raw-mode context library.
4165 #
4166 RuntimeRC_TEMPLATE = VBoxRc
4167 RuntimeRC_DEFS = IN_RT_RC RT_WITH_VBOX IN_SUP_RC IN_VMM_RC NOFILEID
4168 RuntimeRC_INCS = include
4169 RuntimeRC_SOURCES := \
4170 common/asm/ASMMemFirstMismatchingU8.asm \
4171 common/asm/ASMGetXcr0.asm \
4172 common/asm/ASMSetXcr0.asm \
4173 common/asm/ASMXSave.asm \
4174 common/asm/ASMXRstor.asm \
4175 common/asm/ASMFxSave.asm \
4176 common/asm/ASMFxRstor.asm \
4177 common/checksum/alt-md5.cpp \
4178 common/checksum/crc32.cpp \
4179 common/checksum/crc64.cpp \
4180 common/log/log.cpp \
4181 common/log/log-weak.cpp \
4182 common/log/log-weak-assert.cpp \
4183 common/log/log-weak-rel.cpp \
4184 common/log/logellipsis.cpp \
4185 common/log/logrel.cpp \
4186 common/log/logrelellipsis.cpp \
4187 common/log/logcom.cpp \
4188 common/log/logformat.cpp \
4189 common/log/tracebuf.cpp \
4190 common/log/tracedefault.cpp \
4191 common/log/RTLogCreateEx.cpp \
4192 common/misc/RTAssertMsg1Weak.cpp \
4193 common/misc/RTAssertMsg2.cpp \
4194 common/misc/RTAssertMsg2Add.cpp \
4195 common/misc/RTAssertMsg2AddWeak.cpp \
4196 common/misc/RTAssertMsg2AddWeakV.cpp \
4197 common/misc/RTAssertMsg2Weak.cpp \
4198 common/misc/RTAssertMsg2WeakV.cpp \
4199 common/misc/assert.cpp \
4200 common/misc/buildconfig.cpp \
4201 common/misc/sanity-c.c \
4202 common/misc/sanity-cpp.cpp \
4203 common/path/RTPathFilename.cpp \
4204 common/string/strformat.cpp \
4205 common/string/RTStrFormat.cpp \
4206 common/string/strformatnum.cpp \
4207 common/string/strformatrt.cpp \
4208 common/string/strformattype.cpp \
4209 common/string/strncmp.cpp \
4210 common/string/strpbrk.cpp \
4211 common/string/strprintf.cpp \
4212 common/string/strprintf-ellipsis.cpp \
4213 common/string/strprintf2.cpp \
4214 common/string/strprintf2-ellipsis.cpp \
4215 common/string/RTStrCmp.cpp \
4216 common/string/RTStrCopy.cpp \
4217 common/string/RTStrCopyEx.cpp \
4218 common/string/RTStrEnd.asm \
4219 common/string/RTStrICmpAscii.cpp \
4220 common/table/avllu32.cpp \
4221 common/table/avlou32.cpp \
4222 common/table/avlogcphys.cpp \
4223 common/table/avlogcptr.cpp \
4224 common/table/avlohcphys.cpp \
4225 common/table/avloioport.cpp \
4226 common/table/avlrogcphys.cpp \
4227 common/table/avlrogcptr.cpp \
4228 common/table/avlroioport.cpp \
4229 common/table/avlroogcptr.cpp \
4230 common/table/avlu32.cpp \
4231 common/time/timeprog.cpp \
4232 common/time/timesup.cpp \
4233 gc/initterm-gc.cpp \
4234 generic/RTAssertShouldPanic-generic.cpp \
4235 generic/rtStrFormatKernelAddress-generic.cpp \
4236 generic/errvars-generic.cpp \
4237 \
4238 $(RuntimeNoCrt_SOURCES)
4239
4240 #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
4241 # RuntimeRC_SOURCES += common/time/timesupA.asm
4242 #else
4243 RuntimeRC_SOURCES += common/time/timesupref.cpp
4244 #endif
4245
4246 RuntimeRC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
4247
4248 ifeq ($(VBOX_LDR_FMT32),lx)
4249 RuntimeRC_SOURCES += os2/sys0.asm
4250 endif
4251
4252 if1of ($(KBUILD_TARGET), darwin solaris freebsd os2)
4253 RuntimeRC_SOURCES += \
4254 common/math/gcc/adddi3.c \
4255 common/math/gcc/anddi3.c \
4256 common/math/gcc/ashldi3.c \
4257 common/math/gcc/ashrdi3.c \
4258 common/math/gcc/cmpdi2.c \
4259 common/math/gcc/divdi3.c \
4260 common/math/gcc/divmoddi4.c \
4261 common/math/gcc/iordi3.c \
4262 common/math/gcc/lshldi3.c \
4263 common/math/gcc/lshrdi3.c \
4264 common/math/gcc/moddi3.c \
4265 common/math/gcc/muldi3.c \
4266 common/math/gcc/negdi2.c \
4267 common/math/gcc/notdi2.c \
4268 common/math/gcc/qdivrem.c \
4269 common/math/gcc/subdi3.c \
4270 common/math/gcc/ucmpdi2.c \
4271 common/math/gcc/udivdi3.c \
4272 common/math/gcc/udivmoddi4.c \
4273 common/math/gcc/umoddi3.c \
4274 common/math/gcc/xordi3.c
4275 endif
4276
4277
4278 #
4279 # RuntimeRCStub - Raw-mode context startup stub for Windows.
4280 #
4281 RuntimeRCStub_TEMPLATE = VBoxRc
4282 RuntimeRCStub_SOURCES.win = \
4283 nt/NtProcessStartup-stub.cpp
4284
4285
4286endif # VBOX_WITH_RAW_MODE
4287
4288
4289#
4290# Static library for new & delete for the electric fence.
4291#
4292RuntimeEFCPP_TEMPLATE := $(VBoxRT_TEMPLATE)
4293RuntimeEFCPP_SDKS := $(RuntimeR3_SDKS)
4294RuntimeEFCPP_SDKS.$(KBUILD_TARGET) := $(RuntimeR3_SDKS.$(KBUILD_TARGET))
4295RuntimeEFCPP_DEFS := $(RuntimeR3_DEFS)
4296RuntimeEFCPP_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
4297RuntimeEFCPP_INCS := $(RuntimeR3_INCS)
4298RuntimeEFCPP_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
4299RuntimeEFCPP_SOURCES := r3/alloc-ef-cpp.cpp
4300
4301
4302
4303#
4304# The NTDLL mini import library.
4305#
4306# Note! The reason for doing this is to avoid importing CRT symbols from the
4307# NTDLL. We do not wish to do this because:
4308# - Our compiler is usually a different one and we should use the
4309# matching CRT,
4310# - Older versions of NTDLL may not sport all the exports our w2k3 or
4311# later WINDDK ntdll.lib have and thus we may easily end up with
4312# images that does not load on older windows versions.
4313#
4314if1of (win, $(KBUILD_TARGET) $(KBUILD_HOST))
4315 RuntimeR3NtDll-amd64_TEMPLATE = VBoxR3Dll
4316 RuntimeR3NtDll-amd64_BLD_TRG_ARCH = amd64
4317 RuntimeR3NtDll-amd64_ARFLAGS = /NODEFAULTLIB /MACHINE:amd64
4318 RuntimeR3NtDll-amd64_SOURCES = \
4319 r3/win/ntdll-mini-implib.def
4320
4321 RuntimeR3NtDll-x86_TEMPLATE = VBoxR3Dll
4322 RuntimeR3NtDll-x86_BLD_TRG_ARCH = x86
4323 RuntimeR3NtDll-x86_ARFLAGS = /NODEFAULTLIB /MACHINE:x86
4324 RuntimeR3NtDll-x86_SOURCES = \
4325 r3/win/ntdll-mini-implib.def \
4326 $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
4327 RuntimeR3NtDll-x86_CLEAN = \
4328 $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
4329
4330 $$(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm: $(PATH_SUB_CURRENT)/r3/win/ntdll-mini-implib.def | $$(dir $$@)
4331 $(call MSG_GENERATE,,$@,$<)
4332 $(QUIET)$(APPEND) -nt "$@" \
4333 ';Autogenerated, do not edit' \
4334 '%include "iprt/asmdefs.mac"' \
4335 'BEGINCODE' \
4336 '%macro IMPLIB_EXPORT 1' \
4337 'global %1:function' \
4338 '%1: nop' \
4339 '%endm' \
4340 ''
4341 $(QUIET)$(SED) -e '1,/EXPORTS/d' \
4342 -e 's/^.*;;=[[:space:]]*\([^[:space:]]*\)[[:space:]]*$$/IMPLIB_EXPORT \1/' \
4343 $< --append $@
4344endif
4345
4346#
4347# Bag of tricks required for making VCC100 output binaries work on NT4, W2K
4348# early XP and early W2K3. Used by validation kit.
4349#
4350ifndef VBOX_WITH_NOCRT_STATIC
4351 RuntimeR3VccTricks_TEMPLATE = VBoxR3Static
4352 RuntimeR3VccTricks_DEFS = VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
4353 RuntimeR3VccTricks_SOURCES = \
4354 r3/win/vcc-fakes-kernel32.cpp \
4355 r3/win/vcc-fakes-kernel32-A.asm \
4356 r3/win/vcc-fakes-shell32.cpp \
4357 r3/win/vcc-fakes-shell32-A.asm \
4358 r3/win/vcc-fakes-ntdll.cpp \
4359 r3/win/vcc-fakes-ntdll-A.asm
4360endif
4361
4362if defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES) && "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86" # Ugly hacks... :-)
4363 LIBRARIES += RuntimeR3VccTricks2
4364 RuntimeR3VccTricks2_TEMPLATE = VBoxR3Dll
4365 RuntimeR3VccTricks2_DEFS += $(RuntimeR3VccTricks_DEFS)
4366 RuntimeR3VccTricks2_SOURCES = $(RuntimeR3VccTricks_SOURCES)
4367 RuntimeR3VccTricks2_SOURCES += $(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib
4368 RuntimeR3VccTricks2_CLEAN = $(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib
4369 RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED =
4370
4371 $$(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib: \
4372 $$(PATH_TOOL_$$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/msvcrt$(VBOX_VCC_CRT_TYPE).lib \
4373 $$(PATH_TOOL_$$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib \
4374 $$(LIB_RUNTIME) \
4375 $(MAKEFILE) | $$(dir $$@)
4376 $(RM) -f -- "$@"
4377 # $(REDIRECT) -C $(dir $@) -- $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib \
4378 # $(PATH_TOOL_$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib \
4379 # $(foreach file, $(RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED), *$(file))
4380 $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib -o=$@.tmp.lib $< \
4381 -MSVCR100.dll \
4382 $(addprefix $(RuntimeR3VccTricks2_0_OUTDIR)/, $(RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED)) \
4383 -chandler4gs.obj
4384 $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib -o=$@ \
4385 $(LIB_RUNTIME) \
4386 +$@.tmp.lib
4387 $(RM) -f -- $@.tmp.lib $(addprefix $(RuntimeR3VccTricks2_0_OUTDIR)/, $(RuntimeR3VccTricks_VBOX_LIBCMT_NEEDED))
4388endif
4389
4390
4391#
4392# errmsg.cpp depends on a generated header.
4393#
4394common/err/errmsg.cpp_DEPS = \
4395 $(IPRT_OUT_DIR)/errmsgdata-all.h \
4396 $(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h \
4397 $(IPRT_OUT_DIR)/errmsgdata-only-defines.h
4398common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
4399
4400win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgwindata-only-defines.h
4401win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
4402
4403# Our COM errors only for R3 libraries on the host
4404define def_errmsgwin_deps
4405 $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
4406 $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
4407endef
4408$(foreach lib,RuntimeR3 RuntimeBldProg VBoxRT VBoxRT-x86,$(eval $(def_errmsgwin_deps)))
4409
4410
4411#
4412# Generate the status code data.
4413#
4414$(IPRT_OUT_DIR)/errmsgdata.h: \
4415 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
4416 $(PATH_ROOT)/include/iprt/err.h \
4417 $(PATH_ROOT)/include/VBox/err.h \
4418 | $$(dir $$@)
4419 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
4420 $(QUIET)$(SED) -f $< --output "$@" $(filter %.h,$^)
4421
4422$(IPRT_OUT_DIR)/errmsgdata-all.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-all.h: \
4423 $$(bldRTErrMsgSorter_1_TARGET)
4424 $(call MSG_GENERATE,,$@,$<)
4425 $(QUIET)"$<" --all "$(IPRT_OUT_DIR)/errmsgdata-all.h.ts"
4426 $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-all.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-all.h"
4427
4428$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h: \
4429 $$(bldRTErrMsgSorter_1_TARGET)
4430 $(call MSG_GENERATE,,$@,$<)
4431 $(QUIET)"$<" --no-full-msg "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts"
4432 $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h"
4433
4434$(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-only-defines.h: \
4435 $$(bldRTErrMsgSorter_1_TARGET)
4436 $(call MSG_GENERATE,,$@,$<)
4437 $(QUIET)"$<" --only-defines "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts"
4438 $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h"
4439
4440
4441$(IPRT_OUT_DIR)/errmsgwindata.h: \
4442 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
4443 $$(qwildcard ,$$(qaddsuffix ,/WinError.h,$$(SDK_$$(VBOX_WINPSDK)_INCS))) \
4444 | $$(dir $$@)
4445 $(call MSG_GENERATE,,$@,$(deps $@, 2))
4446 $(QUIET)$(SED) -f "$<" --output "$@" $(qdeps sh,$@,2)
4447
4448$(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts +| $(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
4449 $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
4450 $(VBOX_XIDL_FILE_SRC) \
4451 | $$(dir $$@)
4452 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
4453 $(QUIET)$(VBOX_XSLTPROC) -o $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $< $(filter %.xidl,$^)
4454 $(QUIET)$(CP) --changed -fv -- $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
4455
4456$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts +| $(IPRT_OUT_DIR)/errmsgwindata-only-defines.h: \
4457 $$(bldRTErrMsgWinSorter_1_TARGET)
4458 $(call MSG_GENERATE,,$@,$<)
4459 $(QUIET)"$<" --only-defines "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts"
4460 $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts" "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h"
4461
4462
4463#
4464# Sorter for the IPRT status codes.
4465#
4466BLDPROGS += bldRTErrMsgSorter
4467bldRTErrMsgSorter_TEMPLATE = VBoxBldProg
4468bldRTErrMsgSorter_INCS = $(IPRT_OUT_DIR)
4469bldRTErrMsgSorter_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
4470bldRTErrMsgSorter_SOURCES = common/err/errmsg-sorter.cpp
4471
4472#
4473# Sorter for the windows error codes.
4474#
4475BLDPROGS.win += bldRTErrMsgWinSorter
4476bldRTErrMsgWinSorter_TEMPLATE = VBoxBldProg
4477bldRTErrMsgWinSorter_INCS = $(IPRT_OUT_DIR)
4478bldRTErrMsgWinSorter_DEPS = \
4479 $(IPRT_OUT_DIR)/errmsgwindata.h \
4480 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
4481bldRTErrMsgWinSorter_SOURCES = win/errmsgwin-sorter.cpp
4482
4483
4484
4485if "$(KBUILD_TARGET)" == "freebsd"
4486 #
4487 # FreeBSDGeneratedKernelHeaders - Generate some kernel interface headers.
4488 #
4489 # These are used by:
4490 # - The RTMp* API in IPRT.
4491 # - VBoxGuest
4492 #
4493 # Note! We cannot give a output path to the awk program, it will always
4494 # generate the header next to the source. So, we'll have to temporarily copy
4495 # the source file to the destination directory to work.
4496 #
4497 VBOX_AWK := /usr/bin/awk
4498 INSTALLS += FreeBSDGeneratedKernelHeaders
4499 FreeBSDGeneratedKernelHeaders_INST = gen-sys-hdrs/
4500 FreeBSDGeneratedKernelHeaders_SOURCES = \
4501 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h \
4502 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h \
4503 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h
4504 FreeBSDGeneratedKernelHeaders_CLEAN = $(FreeBSDGeneratedKernelHeaders_SOURCES)
4505
4506 $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h: $(VBOX_FREEBSD_SRC)/kern/bus_if.m | $$(dir $$@)
4507 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
4508 $(QUIET)$(CP) -f $< $(@D)/bus_if.m
4509 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/bus_if.m -h -p
4510 $(QUIET)$(RM) $(@D)/bus_if.m
4511
4512 $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h: $(VBOX_FREEBSD_SRC)/kern/device_if.m | $$(dir $$@)
4513 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
4514 $(QUIET)$(CP) -f $< $(@D)/device_if.m
4515 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/device_if.m -h -p
4516 $(QUIET)$(RM) $(@D)/device_if.m
4517
4518 $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h: $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m | $$(dir $$@)
4519 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
4520 $(QUIET)$(CP) -f $< $(@D)/pci_if.m
4521 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/pci_if.m -h -p
4522 $(QUIET)$(RM) $(@D)/pci_if.m
4523endif # FreeBSD
4524
4525
4526#
4527# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
4528#
4529ldrELFRelocatable.cpp.o: ldrELF.o
4530ldrELFRelocatable.cpp.obj: ldrELF.obj
4531
4532
4533#
4534# Doxygen documentation.
4535#
4536IPRT_DOXYFILE_INPUT_DIRS = \
4537 $(PATH_ROOT)/include/iprt \
4538 $(PATH_ROOT)/include/iprt/cpp \
4539 $(PATH_ROOT)/include/iprt/linux \
4540 $(PATH_ROOT)/include/iprt/nocrt \
4541 $(PATH_ROOT)/include/iprt/nocrt/x86 \
4542 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
4543 $(PATH_ROOT)/include/iprt/nocrt/compiler \
4544 $(VBOX_PATH_RUNTIME_SRC)/include/internal \
4545 $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
4546 $(VBOX_PATH_RUNTIME_SRC)/common/asm \
4547 $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
4548 $(VBOX_PATH_RUNTIME_SRC)/common/dbg \
4549 $(VBOX_PATH_RUNTIME_SRC)/common/err \
4550 $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
4551 $(VBOX_PATH_RUNTIME_SRC)/common/log \
4552 $(VBOX_PATH_RUNTIME_SRC)/common/math \
4553 $(VBOX_PATH_RUNTIME_SRC)/common/math/amd64 \
4554 $(VBOX_PATH_RUNTIME_SRC)/common/math/gcc \
4555 $(VBOX_PATH_RUNTIME_SRC)/common/math/x86 \
4556 $(VBOX_PATH_RUNTIME_SRC)/common/misc \
4557 $(VBOX_PATH_RUNTIME_SRC)/common/path \
4558 $(VBOX_PATH_RUNTIME_SRC)/common/rand \
4559 $(VBOX_PATH_RUNTIME_SRC)/common/string \
4560 $(VBOX_PATH_RUNTIME_SRC)/common/table \
4561 $(VBOX_PATH_RUNTIME_SRC)/common/time \
4562 $(VBOX_PATH_RUNTIME_SRC)/VBox \
4563 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv, \
4564 $(dir) \
4565 $(dir)/darwin \
4566 $(dir)/haiku \
4567 $(dir)/linux \
4568 $(dir)/nt \
4569 $(dir)/os2 \
4570 $(dir)/solaris \
4571 $(dir)/win \
4572 $(dir)/win32 \
4573 $(dir)/win64 \
4574 $(dir)/generic \
4575 )
4576
4577# These must come first in order to make things look nice.
4578IPRT_DOXYFILE_INPUT_FIRST = \
4579 $(PATH_ROOT)/include/iprt/cdefs.h \
4580 $(PATH_ROOT)/include/iprt/types.h \
4581 $(PATH_ROOT)/include/iprt/runtime.h \
4582 $(PATH_ROOT)/include/iprt/param.h \
4583 $(PATH_ROOT)/include/iprt/assert.h \
4584 $(PATH_ROOT)/include/iprt/asm.h
4585
4586IPRT_DOXYFILE_INPUT := \
4587 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
4588 $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
4589IPRT_DOXYFILE_INPUT := \
4590 $(IPRT_DOXYFILE_INPUT_FIRST) \
4591 $(sort $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT)))
4592
4593
4594IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
4595BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
4596
4597includedep $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt.dep
4598
4599# Generate the Doxyfile
4600$(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt: \
4601 $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
4602 $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
4603 $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_IPRT_INPUT_PREV,FORCE) \
4604 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_IPRT_OUTPUT_PREV,FORCE) \
4605 | $$(dir $$@)
4606 $(QUIET)$(RM) -f $@ $@.tmp $@.dep
4607 $(QUIET)$(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile $@.tmp
4608 $(QUIET)$(APPEND) $@.tmp
4609 $(QUIET)$(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
4610 $(QUIET)$(APPEND) $@.tmp "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
4611 $(QUIET)$(APPEND) $@.tmp 'INCLUDE_PATH = ' \
4612 '$(PATH_ROOT)/include' \
4613 '$(VBOX_PATH_RUNTIME_SRC)/include' \
4614 '$(VBOX_PATH_RUNTIME_SRC)/' \
4615 '$(VBOX_PATH_RUNTIME_SRC)/common/table'
4616 $(QUIET)$(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
4617 $(QUIET)$(APPEND) $@.tmp "PREDEFINED += $(ARCH_BITS_DEFS)"
4618 $(QUIET)$(APPEND) $@.tmp 'EXCLUDE = '\
4619 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-flags.cpp' \
4620 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-lower.cpp' \
4621 '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-upper.cpp' \
4622 $(QUIET)$(APPEND) $@.tmp
4623 $(QUIET)$(APPEND) $@.tmp 'INPUT = $(foreach x,$(IPRT_DOXYFILE_INPUT),\$(NLTAB)$(x))'
4624 $(QUIET)$(APPEND) $@.tmp
4625 $(QUIET)$(MV) -f $@.tmp $@
4626 $(QUIET)$(APPEND) $@.dep "DOXYGEN_IPRT_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
4627 $(QUIET)$(APPEND) $@.dep "DOXYGEN_IPRT_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
4628
4629# Do the actual job.
4630$(IPRT_DOXYFILE_OUTPUT)/docs.iprt: $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) \
4631 | $(IPRT_DOXYFILE_OUTPUT)/
4632 $(QUIET)$(RM) -f $@
4633 $(QUIET)$(RM) -Rf $(IPRT_DOXYFILE_OUTPUT)/html/
4634 doxygen $(DOXYGEN_OPTS) $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt
4635 $(SED) -e '/warning. Unexpected tag .dd. found/d' \
4636 -e '/warning. Unsupported xml.html tag .globalScope. found/d' \
4637 --output $(IPRT_DOXYFILE_OUTPUT)/errors2 \
4638 $(IPRT_DOXYFILE_OUTPUT)/errors
4639 $(CAT) $(IPRT_DOXYFILE_OUTPUT)/errors2
4640 $(SED) -e "/[^ ]/q 1" $(IPRT_DOXYFILE_OUTPUT)/errors2
4641 $(APPEND) $@
4642
4643# aliases
4644docs.iprt: $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
4645if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
4646 docs: $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
4647endif
4648
4649test-doxygen::
4650 @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_IPRT_OUTPUT_PREV,FORCE)
4651 @echo $(IPRT_DOXYFILE_OUTPUT)
4652 @echo $(DOXYGEN_IPRT_OUTPUT_PREV)
4653 @echo $(IPRT_DOXYFILE_INPUT)
4654
4655
4656#
4657# Test mangling.
4658#
4659if1of ($(LIBRARIES), RuntimeR3 RuntimeR0 RuntimeR0Drv RuntimeRC)
4660 test-mangling:: $(IPRT_OUT_DIR)/mangling.run
4661 OTHERS += $(IPRT_OUT_DIR)/mangling.run
4662 OTHER_CLEAN += $(IPRT_OUT_DIR)/mangling.run
4663 $(IPRT_OUT_DIR)/mangling.run: \
4664 $$(RuntimeR3_1_TARGET) \
4665 $$(RuntimeR0_1_TARGET) \
4666 $$(RuntimeR0Drv_1_TARGET) \
4667 $$(RuntimeRC_1_TARGET)
4668 if1of ($(KBUILD_TARGET), win os2)
4669 $(call MSG_L1,IPRT: skipped mangling test.)
4670 else
4671 # Generate a SED script from mangling.h that checks for known symbols.
4672 $(QUIET)$(SED) \
4673 -e '/^# *define.*RT_MANGLER/!d' \
4674 -e 's/^.*RT_MANGLER(\([^)][^)]*\)).*$(DOLLAR)/\/^\1$(DOLLAR)\/b ok/' \
4675 $(PATH_ROOT)/include/iprt/mangling.h \
4676 --output "$@"
4677 $(QUIET)$(APPEND) -n '$@' \
4678 ':bad' \
4679 's/^\(.*\)$(DOLLAR)/error: Missing # define \1 /' \
4680 ':bad-pad' \
4681 '/^.\{0,70\}$(DOLLAR)/ { s/$(DOLLAR)/ /; bbad-pad; }' \
4682 's/define \([^ ]*\) \([ ]*\)$(DOLLAR)/define \1 \2RT_MANGLER(\1)/' \
4683 'p' \
4684 $(if-expr !defined(IPRT_IGNORE_TEST_MANGLING),'q 1') \
4685 '' \
4686 ':ok' \
4687 'd'
4688 # Find the best way to generate a symbol list and subject it to mangling.h.
4689 if $(intersects $(KBUILD_TARGET), linux) && "$(VBOX_GCC_fvisibility-hidden)"
4690 $(call MSG_L1,IPRT: Testing mangling and visiblity for newer gcc...)
4691 $(QUIET)readelf -Ws $^ \
4692 | $(SED) \
4693 -e 's/[[:space:]]\+/ /g' \
4694 -e '/^ *[[:digit:]]\+:/!d' \
4695 -e 's/^ \+[[:digit:]]\+: \+[[:xdigit:]]\+ \+[[:digit:]]\+ \+//' \
4696 -e '/^SECTION/d' \
4697 -e '/^FILE/d' \
4698 -e 's/^[[:alpha:]]\+ \+//' \
4699 -e '/LOCAL/d' \
4700 -e 's/^[[:alpha:]]\+ \+//' \
4701 -e '/^HIDDEN [[:xdigit:]]\+ RT/bkeep-hidden' \
4702 -e '/^HIDDEN [[:xdigit:]]\+ g_[a-z0-9]*RT/bkeep-hidden' \
4703 -e '/^HIDDEN/d' \
4704 -e ':keep-hidden' \
4705 -e 's/^[[:alpha:]]\+ \+//' \
4706 -e '/^UND/d' \
4707 -e 's/^[[:digit:]]\+ \+//' \
4708 \
4709 -e '/^nocrt_/d' \
4710 -e '/^bzero/d' \
4711 -e '/^memchr/d' \
4712 -e '/^memcmp/d' \
4713 -e '/^memcpy/d' \
4714 -e '/^mempcpy/d' \
4715 -e '/^memmove/d' \
4716 -e '/^memset/d' \
4717 -e '/^strchr/d' \
4718 -e '/^strpbrk/d' \
4719 -e '/^_Z7strpbrk/d' \
4720 -e '/^strcmp/d' \
4721 -e '/^strcpy/d' \
4722 -e '/^strncpy/d' \
4723 -e '/^strlen/d' \
4724 -e '/^setjmp/d' \
4725 -e '/^longjmp/d' \
4726 -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
4727 -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
4728 \
4729 -e '/^_ZnwjPv/d' \
4730 -e '/^_ZnwmPv/d' \
4731 -e '/^_ZNSt[1-9]/d' \
4732 \
4733 -e '/^_ZN[a-zA-Z]*St[[:digit:]]*_*[lL]ist/d' \
4734 -e '/^_ZN[a-zA-Z]*[[:digit:]]*__gnu_cxx/d' \
4735 -e '/^_ZNSa.*ElementNode.*/d' \
4736 -e '/^_ZSt.*ElementNode.*/d' \
4737 \
4738 -e '/^_Z[[:digit:]]\+dbus/d' \
4739 -e '/^_Z13RTDBusLoadLibv/d' \
4740 \
4741 -e '/^g_[ac]VTG/d' \
4742 -e '/^g_VTGObjHeader/d' \
4743 -e '/^g_VTGProbeData/d' \
4744 -e '/^VTGProbeStub/d' \
4745 -e '/^g_achVTGStringTable/d' \
4746 -e '/^g_acVTGProbeEnabled/d' \
4747 \
4748 -e '/^VBoxHost_/d'\
4749 -e '/^VBoxGuest_/d'\
4750 | $(SED) -nf "$@"
4751 endif
4752 $(call MSG_L1,IPRT: Testing mangling using nm...)
4753 $(QUIET)$(VBOX_NM) $^ 2> /dev/null \
4754 | $(SED) -n \
4755 -e 's/^[0-9a-f][0-9a-f]* //' \
4756 -e '/^[TUDB] /!d' \
4757 -e 's/^. //' \
4758 $(if-expr "$(KBUILD_TARGET)" == "darwin" || "$(KBUILD_TARGET)" == "os2" || "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86", \
4759 -e 's/^_//',) \
4760 \
4761 -e '/^g_cchrt/d'\
4762 -e '/^g_crt/d'\
4763 -e '/^g_frt/d'\
4764 -e '/^g_offrt/d'\
4765 -e '/^g_pfnrt/d'\
4766 -e '/^g_rt/d'\
4767 -e '/^g_szrt/d'\
4768 -e '/^g_ProcessSelf/d'\
4769 -e '/^g_u64ProgramStart/d'\
4770 -e '/^g_enmProcessPriority/d'\
4771 -e '/^g_hDbgModStrCache/d'\
4772 -e '/^g_pfnR0Darwin/d'\
4773 -e '/^g_pDarwinLockGroup/d'\
4774 $(if-expr "$(KBUILD_TARGET)" == "solaris", \
4775 -e '/^g_kLdrRdrFileOps/d' \
4776 -e '/^g_pSUPGlobalInfoPage/d' \
4777 -e '/^g_Logger/d' \
4778 -e '/^g_RelLogger/d' \
4779 -e '/^g_VM/d',) \
4780 $(if-expr "$(KBUILD_TARGET)" == "linux", \
4781 -e '/^g_kLdrRdrFileOps/d',) \
4782 \
4783 -e '/^g_[ac]VTG/d' \
4784 -e '/^g_VTGObjHeader/d' \
4785 -e '/^g_VTGProbeData/d' \
4786 -e '/^VTGProbeStub/d' \
4787 -e '/^g_achVTGStringTable/d' \
4788 -e '/^g_acVTGProbeEnabled/d' \
4789 \
4790 -e '/^RTDBusLoadLib/d' \
4791 \
4792 -e '/^RT/p' \
4793 -e '/^g_/p' \
4794 | $(SED) -nf "$@"
4795 endif
4796endif
4797 $(QUIET)$(APPEND) -t $@
4798
4799if !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_VALIDATIONKIT) && !defined(VBOX_ONLY_DOCS)
4800 #
4801 # Windows build tool.
4802 #
4803 BLDPROGS.win += ntBldSymDb
4804 ntBldSymDb_TEMPLATE = VBoxAdvBldProg
4805 ntBldSymDb_INCS = .
4806 ntBldSymDb_SOURCES = r0drv/nt/ntBldSymDb.cpp
4807endif
4808
4809
4810#
4811# Generate the rules (we're the to sub-makefile).
4812#
4813include $(FILE_KBUILD_SUB_FOOTER)
4814
4815
4816#
4817# Aliases for code templates.
4818#
4819rsa-template.o rsa-template.obj: rsa-core.o rsa-asn1-decoder.o rsa-sanity.o rsa-init.o
4820spc-template.o spc-template.obj: spc-core.o spc-asn1-decoder.o spc-sanity.o spc-init.o
4821taf-template.o taf-template.obj: taf-core.o taf-asn1-decoder.o taf-sanity.o taf-init.o
4822tsp-template.o tsp-template.obj: tsp-core.o tsp-asn1-decoder.o tsp-sanity.o tsp-init.o
4823x509-template.o x509-template.obj: x509-core.o x509-asn1-decoder.o x509-sanity.o x509-init.o
4824pkcs7-template.o pkcs7-template.obj: pkcs7-core.o pkcs7-asn1-decoder.o pkcs7-sanity.o pkcs7-init.o
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