VirtualBox

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

Last change on this file since 52320 was 52290, checked in by vboxsync, 10 years ago

RTBigNum: Two assembly optimizations related to RTBigNumModExp. Use 64-bit element type on 64-bit hosts (instead of 32-bit everywhere). Fixed some bugs in the bit operations, which apparently didn't affect x86 or AMD64.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 87.0 KB
Line 
1# $Id: Makefile.kmk 52290 2014-08-06 10:14:47Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT.
4#
5
6#
7# Copyright (C) 2006-2013 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30ifdef VBOX_ONLY_ADDITIONS
31 #
32 # Only build the additions, sort out the legacy names first.
33 #
34 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
35 LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
36 ifdef VBOX_WITH_ADDITION_DRIVERS
37 LIBRARIES += RuntimeGuestR0
38 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
39 LIBRARIES.win.x86 += RuntimeGuestR0NT4
40 endif
41
42else ifdef VBOX_ONLY_VALIDATIONKIT
43 #
44 # Only build the Validation Kit.
45 #
46 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeR3 RuntimeR0 RuntimeBldProg
47 LIBRARIES.solaris += RuntimeR0Stub
48 LIBRARIES.win += RuntimeR0Stub
49 LIBRARIES.win.x86 += RuntimeR3VccTricks
50 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
51
52else ifdef VBOX_ONLY_DOCS
53 #
54 # Build docs only - need just regular R3 runtime.
55 #
56 LIBRARIES += RuntimeR3 RuntimeBldProg
57
58else ifdef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
59 #
60 # Build docs only - need just regular R3 runtime.
61 #
62 LIBRARIES += RuntimeBldProg
63 LIBRARIES.solaris += RuntimeR0Stub
64 LIBRARIES.win += RuntimeR0Stub RuntimeRCStub
65 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
66
67else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_VALIDATIONKIT && !VBOX_ONLY_DOCS
68
69 #
70 # Normal build.
71 #
72 ifndef VBOX_ONLY_EXTPACKS
73 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
74 endif
75 include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
76
77 BLDPROGS += uniread
78 LIBRARIES += RuntimeR3 RuntimeBldProg RuntimeR0 RuntimeEFCPP RuntimeR3NoCRTGCC
79 LIBRARIES.solaris += RuntimeR0Stub
80 LIBRARIES.win += RuntimeR0Stub
81 ifdef VBOX_WITH_RAW_MODE
82 LIBRARIES += RuntimeRC
83 LIBRARIES.win += RuntimeRCStub
84 endif
85 ifdef VBOX_WITH_VBOXDRV
86 LIBRARIES += RuntimeR0Drv
87 endif
88 ifdef VBOX_WITH_ADDITIONS
89 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
90 LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
91 ifdef VBOX_WITH_ADDITION_DRIVERS
92 LIBRARIES += RuntimeGuestR0
93 endif
94 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
95 LIBRARIES.win.x86 += RuntimeGuestR0NT4
96 endif # VBOX_WITH_ADDITIONS
97 LIBRARIES.win.x86 += RuntimeR3VccTricks
98 DLLS += VBoxRT
99 ifdef VBOX_WITH_32_ON_64_MAIN_API
100 DLLS += VBoxRT-x86
101 endif
102endif
103
104
105# Always build the ntdll import libraries on windows.
106LIBRARIES.win += RuntimeR3NtDll-x86
107if1of (amd64, $(KBUILD_TARGET_ARCH) $(KBUILD_HOST_ARCH))
108 LIBRARIES.win += RuntimeR3NtDll-amd64
109endif
110
111
112# Always build the import library.
113IMPORT_LIBS += VBoxRTImp
114
115
116# Where the generated stuff goes.
117IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
118BLDDIRS += $(IPRT_OUT_DIR)
119OTHER_CLEAN += \
120 $(IPRT_OUT_DIR)/errmsgdata.h \
121 $(IPRT_OUT_DIR)/errmsgcomdata.h \
122 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
123 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts \
124 $(IPRT_OUT_DIR)/Doxyfile.iprt \
125 $(IPRT_OUT_DIR)/Doxyfile.iprt.dep \
126 $(IPRT_OUT_DIR)/docs.iprt
127
128
129#
130# Globals
131#
132VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
133
134
135#
136# Set the defines that buildconfig.cpp needs. Its used by several targets.
137#
138common/misc/buildconfig.cpp_DEFS = \
139 IPRT_BLDCFG_SCM_REV=$(VBOX_SVN_REV) \
140 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \
141 IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \
142 IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \
143 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD) \
144 IPRT_BLDCFG_TARGET=\"$(KBUILD_TARGET)\" \
145 IPRT_BLDCFG_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\" \
146 IPRT_BLDCFG_TYPE=\"$(KBUILD_TYPE)\"
147
148#
149# Unicode Specification reader used to regenerate unidata-*.cpp.
150#
151uniread_TEMPLATE = VBoxBldProg
152uniread_SOURCES = common/string/uniread.cpp
153uniread_INCS = include
154
155#
156# Win64 assembly sources.
157#
158RuntimeWin64ASM_SOURCES = \
159 win/amd64/ASMAtomicBitClear.asm \
160 win/amd64/ASMAtomicBitTestAndToggle.asm \
161 win/amd64/ASMAtomicBitToggle.asm \
162 win/amd64/ASMAtomicReadU64.asm \
163 win/amd64/ASMAtomicXchgU16.asm \
164 win/amd64/ASMAtomicXchgU8.asm \
165 win/amd64/ASMBitFirstClear.asm \
166 win/amd64/ASMBitFirstSet.asm \
167 win/amd64/ASMGetCS.asm \
168 win/amd64/ASMGetDS.asm \
169 win/amd64/ASMGetES.asm \
170 win/amd64/ASMGetFlags.asm \
171 win/amd64/ASMGetFS.asm \
172 win/amd64/ASMGetGS.asm \
173 win/amd64/ASMGetSS.asm \
174 win/amd64/ASMProbeReadByte.asm \
175 win/amd64/ASMSetFlags.asm \
176 win/amd64/ASMGetDR0.asm \
177 win/amd64/ASMGetDR1.asm \
178 win/amd64/ASMGetDR2.asm \
179 win/amd64/ASMGetDR3.asm \
180 win/amd64/ASMGetDR6.asm \
181 win/amd64/ASMGetDR7.asm \
182 common/asm/ASMAtomicCmpXchgU8.asm \
183 common/asm/ASMMultU64ByU32DivByU32.asm \
184 common/asm/ASMCpuId_Idx_ECX.asm \
185 common/asm/ASMNopPause.asm \
186 common/asm/ASMGetIDTR.asm \
187 common/asm/ASMSetIDTR.asm \
188 common/asm/ASMGetGDTR.asm \
189 common/asm/ASMSetGDTR.asm \
190 common/asm/ASMGetLDTR.asm \
191 common/asm/ASMGetSegAttr.asm \
192 common/asm/ASMGetTR.asm
193
194#
195# Win32 assembly sources.
196#
197RuntimeWin32ASM_SOURCES = \
198 common/asm/ASMAtomicCmpXchgU8.asm \
199 common/asm/ASMMultU64ByU32DivByU32.asm \
200 common/asm/ASMCpuId_Idx_ECX.asm \
201 common/asm/ASMGetSegAttr.asm
202
203#
204# NoCRT sources (minus math stuff).
205#
206if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
207RuntimeNoCrt_SOURCES = \
208 common/misc/setjmp.asm \
209 common/string/memchr.asm \
210 common/string/memcmp.asm \
211 common/string/memcpy.asm \
212 common/string/mempcpy.asm \
213 common/string/memmove.asm \
214 common/string/memset.asm \
215 common/string/strchr.asm \
216 common/string/strcpy.asm \
217 common/string/strncpy.asm \
218 common/string/strcmp.asm \
219 common/string/strlen.asm
220endif
221
222
223#
224# RuntimeR3 - Static Runtime for Ring-3 executables.
225#
226RuntimeR3_TEMPLATE = VBoxR3Static
227RuntimeR3_SDKS = VBOX_OPENSSL VBOX_LIBXML2
228RuntimeR3_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK)
229RuntimeR3_DEFS = \
230 IN_RT_R3 \
231 IN_SUP_R3 \
232 LDR_WITH_NATIVE \
233 LDR_WITH_ELF32 \
234 LDR_WITH_PE \
235 RT_WITH_VBOX \
236 RT_NO_GIP \
237 RT_WITHOUT_NOCRT_WRAPPERS \
238 IPRT_WITH_OPENSSL
239#RuntimeR3_DEFS += RTMEM_WRAP_TO_EF_APIS
240ifdef IPRT_WITH_KSTUFF
241 RuntimeR3_DEFS += LDR_WITH_KLDR
242endif
243ifdef IPRT_WITH_LZJB
244 RuntimeR3_DEFS += RTZIP_USE_LZJB
245endif
246ifdef IPRT_WITH_LZO
247 RuntimeR3_DEFS += RTZIP_USE_LZO
248endif
249ifn1of ($(KBUILD_TARGET), win)
250 RuntimeR3_DEFS += RT_WITH_ICONV_CACHE
251endif
252ifdef IPRT_WITH_FUTEX_BASED_SEMS
253 RuntimeR3_DEFS.linux += IPRT_WITH_FUTEX_BASED_SEMS
254endif
255RuntimeR3_INCS = \
256 include \
257 $(SDK_VBOX_ZLIB_INCS)
258RuntimeR3_INCS += \
259 $(PATH_ROOT)/src/libs/liblzf-3.4
260ifdef IPRT_WITH_KSTUFF
261 RuntimeR3_INCS += \
262 $(PATH_ROOT)/src/libs/kStuff/kStuff/include
263endif
264
265# RuntimeR3_INCS.solaris = \
266# /usr/include
267
268RuntimeR3_SOURCES = \
269 common/alloc/alloc.cpp \
270 common/alloc/heapsimple.cpp \
271 common/alloc/heapoffset.cpp \
272 common/alloc/memcache.cpp \
273 common/alloc/memtracker.cpp \
274 common/asn1/asn1-basics.cpp \
275 common/asn1/asn1-cursor.cpp \
276 common/asn1/asn1-default-allocator.cpp \
277 common/asn1/asn1-dump.cpp \
278 common/asn1/asn1-encode.cpp \
279 common/asn1/asn1-ut-bitstring.cpp \
280 common/asn1/asn1-ut-bitstring-decode.cpp \
281 common/asn1/asn1-ut-boolean.cpp \
282 common/asn1/asn1-ut-boolean-decode.cpp \
283 common/asn1/asn1-ut-core.cpp \
284 common/asn1/asn1-ut-core-decode.cpp \
285 common/asn1/asn1-ut-dyntype.cpp \
286 common/asn1/asn1-ut-dyntype-decode.cpp \
287 common/asn1/asn1-ut-integer.cpp \
288 common/asn1/asn1-ut-integer-decode.cpp \
289 common/asn1/asn1-ut-null.cpp \
290 common/asn1/asn1-ut-null-decode.cpp \
291 common/asn1/asn1-ut-objid.cpp \
292 common/asn1/asn1-ut-objid-decode.cpp \
293 common/asn1/asn1-ut-octetstring.cpp \
294 common/asn1/asn1-ut-octetstring-decode.cpp \
295 common/asn1/asn1-ut-string.cpp \
296 common/asn1/asn1-ut-string-decode.cpp \
297 common/asn1/asn1-ut-time.cpp \
298 common/asn1/asn1-ut-time-decode.cpp \
299 common/checksum/adler32.cpp \
300 common/checksum/crc32.cpp \
301 common/checksum/crc32c.cpp \
302 common/checksum/crc64.cpp \
303 common/checksum/alt-md2.cpp \
304 common/checksum/alt-md5.cpp \
305 common/checksum/alt-sha1.cpp \
306 common/checksum/alt-sha256.cpp \
307 common/checksum/alt-sha512.cpp \
308 common/checksum/md2str.cpp \
309 common/checksum/md5str.cpp \
310 common/checksum/ipv4.cpp \
311 common/checksum/ipv6.cpp \
312 common/checksum/manifest.cpp \
313 common/checksum/manifest2.cpp \
314 common/checksum/manifest3.cpp \
315 common/checksum/manifest-file.cpp \
316 common/checksum/RTSha1Digest.cpp \
317 common/checksum/RTSha256Digest.cpp \
318 common/checksum/sha1str.cpp \
319 common/checksum/sha224str.cpp \
320 common/checksum/sha256str.cpp \
321 common/checksum/sha384str.cpp \
322 common/checksum/sha512str.cpp \
323 common/checksum/sha512t224str.cpp \
324 common/checksum/sha512t256str.cpp \
325 common/checksum/x509.cpp \
326 common/crypto/digest-core.cpp \
327 common/crypto/digest-builtin.cpp \
328 common/crypto/iprt-openssl.cpp \
329 common/crypto/rsa-asn1-decoder.cpp \
330 common/crypto/rsa-core.cpp \
331 common/crypto/rsa-init.cpp \
332 common/crypto/rsa-sanity.cpp \
333 common/crypto/pemfile.cpp \
334 common/crypto/pkcs7-asn1-decoder.cpp \
335 common/crypto/pkcs7-core.cpp \
336 common/crypto/pkcs7-init.cpp \
337 common/crypto/pkcs7-sanity.cpp \
338 common/crypto/pkcs7-verify.cpp \
339 common/crypto/pkix-signature-builtin.cpp \
340 common/crypto/pkix-signature-core.cpp \
341 common/crypto/pkix-signature-rsa.cpp \
342 common/crypto/pkix-util.cpp \
343 common/crypto/pkix-verify.cpp \
344 common/crypto/spc-asn1-decoder.cpp \
345 common/crypto/spc-core.cpp \
346 common/crypto/spc-init.cpp \
347 common/crypto/spc-sanity.cpp \
348 common/crypto/x509-asn1-decoder.cpp \
349 common/crypto/x509-certpaths.cpp \
350 common/crypto/x509-core.cpp \
351 common/crypto/x509-file.cpp \
352 common/crypto/x509-init.cpp \
353 common/crypto/x509-sanity.cpp \
354 common/crypto/x509-verify.cpp \
355 common/crypto/taf-asn1-decoder.cpp \
356 common/crypto/taf-core.cpp \
357 common/crypto/taf-init.cpp \
358 common/crypto/taf-sanity.cpp \
359 common/crypto/store.cpp \
360 common/crypto/store-inmem.cpp \
361 common/crypto/RTCrStoreCertAddFromFile.cpp \
362 common/dbg/dbg.cpp \
363 common/dbg/dbgas.cpp \
364 common/dbg/dbgcfg.cpp \
365 common/dbg/dbgmod.cpp \
366 common/dbg/dbgmodldr.cpp \
367 common/dbg/dbgmodcontainer.cpp \
368 common/dbg/dbgmoddeferred.cpp \
369 common/dbg/dbgmodexports.cpp \
370 common/dbg/dbgmodcodeview.cpp \
371 common/dbg/dbgmoddwarf.cpp \
372 common/dbg/dbgmodnm.cpp \
373 common/dvm/dvm.cpp \
374 common/dvm/dvmbsdlabel.cpp \
375 common/dvm/dvmgpt.cpp \
376 common/dvm/dvmmbr.cpp \
377 common/dvm/dvmvfs.cpp \
378 common/err/errinfo.cpp \
379 common/err/errinfo-alloc.cpp \
380 common/err/errmsg.cpp \
381 common/err/RTErrConvertFromErrno.cpp \
382 common/err/RTErrConvertToErrno.cpp \
383 common/filesystem/filesystem.cpp \
384 common/filesystem/filesystemext.cpp \
385 common/ldr/ldr.cpp \
386 common/ldr/ldrELF.cpp \
387 common/ldr/ldrEx.cpp \
388 common/ldr/ldrFile.cpp \
389 common/ldr/ldrMemory.cpp \
390 common/ldr/ldrNative.cpp \
391 common/ldr/ldrPE.cpp \
392 common/log/log.cpp \
393 common/log/logellipsis.cpp \
394 common/log/logrel.cpp \
395 common/log/logrelellipsis.cpp \
396 common/log/logcom.cpp \
397 common/log/logformat.cpp \
398 common/log/tracebuf.cpp \
399 common/log/tracedefault.cpp \
400 common/math/bignum.cpp \
401 common/misc/RTAssertMsg1Weak.cpp \
402 common/misc/RTAssertMsg2.cpp \
403 common/misc/RTAssertMsg2Add.cpp \
404 common/misc/RTAssertMsg2AddWeak.cpp \
405 common/misc/RTAssertMsg2AddWeakV.cpp \
406 common/misc/RTAssertMsg2Weak.cpp \
407 common/misc/RTAssertMsg2WeakV.cpp \
408 common/misc/RTFileModeToFlags.cpp \
409 common/misc/RTFileOpenF.cpp \
410 common/misc/RTFileOpenV.cpp \
411 common/misc/RTMemWipeThoroughly.cpp \
412 common/misc/assert.cpp \
413 common/misc/buildconfig.cpp \
414 common/misc/cidr.cpp \
415 common/misc/getopt.cpp \
416 common/misc/getoptargv.cpp \
417 common/misc/handle.cpp \
418 common/misc/handletable.cpp \
419 common/misc/handletablectx.cpp \
420 common/misc/handletablesimple.cpp \
421 common/misc/lockvalidator.cpp \
422 common/misc/message.cpp \
423 common/misc/once.cpp \
424 common/misc/req.cpp \
425 common/misc/reqpool.cpp \
426 common/misc/reqqueue.cpp \
427 common/misc/sanity-c.c \
428 common/misc/sanity-cpp.cpp \
429 common/misc/semspingpong.cpp \
430 common/misc/sg.cpp \
431 common/misc/circbuf.cpp \
432 common/misc/thread.cpp \
433 common/misc/term.cpp \
434 common/misc/uri.cpp \
435 common/misc/zero.asm \
436 common/net/netaddrstr2.cpp \
437 common/net/macstr.cpp \
438 common/path/rtPathRootSpecLen.cpp \
439 common/path/rtPathVolumeSpecLen.cpp \
440 common/path/RTPathAbsDup.cpp \
441 common/path/RTPathAbsEx.cpp \
442 common/path/RTPathAbsExDup.cpp \
443 common/path/RTPathAppend.cpp \
444 common/path/RTPathAppendEx.cpp \
445 common/path/RTPathCalcRelative.cpp \
446 common/path/RTPathChangeToDosSlashes.cpp \
447 common/path/RTPathChangeToUnixSlashes.cpp \
448 common/path/RTPathCopyComponents.cpp \
449 common/path/RTPathCountComponents.cpp \
450 common/path/RTPathExt.cpp \
451 common/path/RTPathFilename.cpp \
452 common/path/RTPathHasExt.cpp \
453 common/path/RTPathHasPath.cpp \
454 common/path/RTPathJoin.cpp \
455 common/path/RTPathJoinA.cpp \
456 common/path/RTPathJoinEx.cpp \
457 common/path/RTPathParse.cpp \
458 common/path/RTPathParsedReassemble.cpp \
459 common/path/RTPathParseSimple.cpp \
460 common/path/RTPathRealDup.cpp \
461 common/path/RTPathRmCmd.cpp \
462 common/path/RTPathSplit.cpp \
463 common/path/RTPathSplitA.cpp \
464 common/path/RTPathSplitReassemble.cpp \
465 common/path/RTPathStartsWithRoot.cpp \
466 common/path/RTPathStripExt.cpp \
467 common/path/RTPathStripFilename.cpp \
468 common/path/RTPathStripTrailingSlash.cpp \
469 common/path/RTPathTraverseList.cpp \
470 common/path/comparepaths.cpp \
471 common/rand/rand.cpp \
472 common/rand/randadv.cpp \
473 common/rand/randparkmiller.cpp \
474 common/sort/RTSortIsSorted.cpp \
475 common/sort/RTSortApvIsSorted.cpp \
476 common/sort/shellsort.cpp \
477 common/string/RTStrCat.cpp \
478 common/string/RTStrCatEx.cpp \
479 common/string/RTStrCatP.cpp \
480 common/string/RTStrCatPEx.cpp \
481 common/string/RTStrCmp.cpp \
482 common/string/RTStrCopy.cpp \
483 common/string/RTStrCopyEx.cpp \
484 common/string/RTStrCopyP.cpp \
485 common/string/RTStrCopyPEx.cpp \
486 common/string/RTStrNCmp.cpp \
487 common/string/RTStrNLen.cpp \
488 common/string/RTStrNLenEx.cpp \
489 common/string/RTStrPrintHexBytes.cpp \
490 common/string/RTStrStr.cpp \
491 common/string/RTUtf16Copy.cpp \
492 common/string/RTUtf16CopyAscii.cpp \
493 common/string/RTUtf16Cat.cpp \
494 common/string/RTUtf16CatAscii.cpp \
495 common/string/RTUtf16CmpAscii.cpp \
496 common/string/RTUtf16ICmpAscii.cpp \
497 common/string/RTUtf16End.cpp \
498 common/string/RTUtf16NLen.cpp \
499 common/string/RTUtf16NLenEx.cpp \
500 common/string/RTUtf16PrintHexBytes.cpp \
501 common/string/base64.cpp \
502 common/string/simplepattern.cpp \
503 common/string/straprintf.cpp \
504 common/string/strformat.cpp \
505 common/string/strformatnum.cpp \
506 common/string/strformatrt.cpp \
507 common/string/strformattype.cpp \
508 common/string/strhash1.cpp \
509 common/string/stringalloc.cpp \
510 common/string/strprintf.cpp \
511 common/string/strcache.cpp \
512 common/string/strspace.cpp \
513 common/string/strstrip.cpp \
514 common/string/strtonum.cpp \
515 common/string/strversion.cpp \
516 common/string/uni.cpp \
517 common/string/unidata-flags.cpp \
518 common/string/unidata-lower.cpp \
519 common/string/unidata-upper.cpp \
520 common/string/utf-16.cpp \
521 common/string/utf-16-case.cpp \
522 common/string/utf-16-latin-1.cpp \
523 common/string/utf-8.cpp \
524 common/string/utf-8-case.cpp \
525 common/string/utf-8-case2.cpp \
526 common/string/ministring.cpp \
527 common/table/avlgcptr.cpp \
528 common/table/avlhcphys.cpp \
529 common/table/avlgcphys.cpp \
530 common/table/avllu32.cpp \
531 common/table/avlou32.cpp \
532 common/table/avlogcphys.cpp \
533 common/table/avlogcptr.cpp \
534 common/table/avlohcphys.cpp \
535 common/table/avloioport.cpp \
536 common/table/avlpv.cpp \
537 common/table/avlrgcptr.cpp \
538 common/table/avlrogcphys.cpp \
539 common/table/avlrogcptr.cpp \
540 common/table/avlroioport.cpp \
541 common/table/avlroogcptr.cpp \
542 common/table/avlrpv.cpp \
543 common/table/avlruintptr.cpp \
544 common/table/avlrfoff.cpp \
545 common/table/avlru64.cpp \
546 common/table/avlu32.cpp \
547 common/table/avluintptr.cpp \
548 common/table/avlul.cpp \
549 common/table/table.cpp \
550 common/time/time.cpp \
551 common/time/timeprog.cpp \
552 common/time/timesup.cpp \
553 common/vfs/vfsbase.cpp \
554 common/vfs/vfschain.cpp \
555 common/vfs/vfsiosmisc.cpp \
556 common/vfs/vfsmemory.cpp \
557 common/vfs/vfsmisc.cpp \
558 common/vfs/vfsstdfile.cpp \
559 common/zip/tar.cpp \
560 common/zip/tarcmd.cpp \
561 common/zip/unzipcmd.cpp \
562 common/zip/tarvfs.cpp \
563 common/zip/gzipvfs.cpp \
564 common/zip/pkzip.cpp \
565 common/zip/pkzipvfs.cpp \
566 common/zip/zip.cpp \
567 generic/createtemp-generic.cpp \
568 generic/critsect-generic.cpp \
569 generic/critsectrw-generic.cpp \
570 generic/env-generic.cpp \
571 generic/RTDirCreateUniqueNumbered-generic.cpp \
572 generic/RTEnvDupEx-generic.cpp \
573 generic/RTFileCopy-generic.cpp \
574 generic/RTFileQuerySize-generic.cpp \
575 generic/RTFileReadAll-generic.cpp \
576 generic/RTFileReadAllEx-generic.cpp \
577 generic/RTFileReadAllByHandle-generic.cpp \
578 generic/RTFileReadAllByHandleEx-generic.cpp \
579 generic/RTFileReadAllFree-generic.cpp \
580 generic/RTLogWriteStdErr-generic.cpp \
581 generic/RTLogWriteStdOut-generic.cpp \
582 generic/RTLogWriteUser-generic.cpp \
583 generic/RTPathIsSame-generic.cpp \
584 generic/RTProcessQueryUsernameA-generic.cpp \
585 generic/RTTimerLRCreate-generic.cpp \
586 generic/mempool-generic.cpp \
587 generic/semfastmutex-generic.cpp \
588 generic/semxroads-generic.cpp \
589 generic/spinlock-generic.cpp \
590 generic/timerlr-generic.cpp \
591 r3/alloc-ef.cpp \
592 r3/alloc.cpp \
593 r3/allocex.cpp \
594 r3/dir.cpp \
595 r3/dir2.cpp \
596 r3/fileio.cpp \
597 r3/fs.cpp \
598 r3/init.cpp \
599 r3/isofs.cpp \
600 r3/memsafer-r3.cpp \
601 r3/path.cpp \
602 r3/poll.cpp \
603 r3/process.cpp \
604 r3/socket.cpp \
605 r3/stream.cpp \
606 r3/test.cpp \
607 r3/testi.cpp \
608 r3/tcp.cpp \
609 r3/udp.cpp \
610 r3/generic/semspinmutex-r3-generic.cpp \
611 r3/xml.cpp \
612 common/zip/xarvfs.cpp
613
614
615#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
616# RuntimeR3_SOURCES += common/time/timesupA.asm
617#else
618 RuntimeR3_SOURCES += common/time/timesupref.cpp
619#endif
620
621RuntimeR3_SOURCES.x86 += \
622 generic/RTMpGetDescription-generic.cpp
623RuntimeR3_SOURCES.amd64 += \
624 generic/RTMpGetDescription-generic.cpp
625RuntimeR3_SOURCES.sparc32 += \
626 generic/RTMpGetDescription-generic-stub.cpp \
627 common/asm/asm-fake.cpp
628RuntimeR3_SOURCES.sparc64 += \
629 generic/RTMpGetDescription-generic-stub.cpp \
630 common/asm/asm-fake.cpp
631
632ifdef IPRT_WITH_LZJB
633 RuntimeR3_SOURCES += common/misc/lzjb.c
634endif
635
636# AMD64 / x86 assembly code.
637RuntimeR3_SOURCES.x86 += \
638 common/asm/ASMCpuIdExSlow.asm \
639 common/asm/ASMAtomicUoAndU64.asm \
640 common/asm/ASMAtomicUoAndU32.asm \
641 common/asm/ASMAtomicUoOrU64.asm \
642 common/asm/ASMAtomicUoOrU32.asm \
643 common/asm/ASMRdMsrEx.asm \
644 common/asm/ASMWrMsrEx.asm \
645 common/math/bignum-amd64-x86.asm
646RuntimeR3_SOURCES.amd64 += \
647 common/asm/ASMCpuIdExSlow.asm \
648 common/asm/ASMAtomicUoAndU64.asm \
649 common/asm/ASMAtomicUoAndU32.asm \
650 common/asm/ASMAtomicUoOrU64.asm \
651 common/asm/ASMAtomicUoOrU32.asm \
652 common/asm/ASMRdMsrEx.asm \
653 common/asm/ASMWrMsrEx.asm \
654 common/math/bignum-amd64-x86.asm
655
656# Some versions of GCC might require this.
657RuntimeR3_SOURCES.x86 += \
658 common/asm/ASMAtomicXchgU64.asm \
659 common/asm/ASMAtomicCmpXchgU64.asm \
660 common/asm/ASMAtomicCmpXchgExU64.asm \
661 common/asm/ASMAtomicReadU64.asm \
662 common/asm/ASMAtomicUoReadU64.asm
663
664
665ifdef IPRT_WITH_KSTUFF
666 RuntimeR3_SOURCES += \
667 common/ldr/ldrkStuff.cpp
668endif
669
670# VBox specific stuff.
671RuntimeR3_SOURCES += \
672 VBox/RTAssertShouldPanic-vbox.cpp \
673 VBox/log-vbox.cpp
674ifneq ($(KBUILD_TARGET),win)
675RuntimeR3_SOURCES += \
676 common/err/errmsgxpcom.cpp
677endif
678if1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris)
679RuntimeR3_SOURCES += \
680 $(if $(VBOX_WITH_DBUS),VBox/dbus.cpp,)
681endif
682
683VBOX_WITH_NT_DIRENUM = 1
684RuntimeR3_SOURCES.win = \
685 common/dbg/dbgmoddbghelp.cpp \
686 generic/cdrom-generic.cpp \
687 generic/RTDirExists-generic.cpp \
688 generic/RTDirQueryInfo-generic.cpp \
689 generic/RTDirSetTimes-generic.cpp \
690 generic/RTFileExists-generic.cpp \
691 generic/RTMpGetCurFrequency-generic.cpp \
692 generic/RTMpGetMaxFrequency-generic.cpp \
693 generic/RTRandAdvCreateSystemFaster-generic.cpp \
694 generic/RTRandAdvCreateSystemTruer-generic.cpp \
695 generic/RTSemEventWait-generic.cpp \
696 generic/RTSemEventMultiWait-2-ex-generic.cpp \
697 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
698 generic/RTSemMutexRequest-generic.cpp \
699 generic/RTSemMutexRequestDebug-generic.cpp \
700 generic/RTThreadSetAffinityToCpu-generic.cpp \
701 generic/mppresent-generic.cpp \
702 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
703 generic/uuid-generic.cpp \
704 generic/RTProcDaemonize-generic.cpp \
705 generic/RTProcIsRunningByName-generic.cpp \
706 generic/RTThreadGetNativeState-generic.cpp \
707 nt/RTErrConvertFromNtStatus.cpp \
708 r3/nt/fs-nt.cpp \
709 r3/nt/pathint-nt.cpp \
710 r3/nt/RTProcQueryParent-r3-nt.cpp \
711 r3/win/env-win.cpp \
712 r3/win/RTHandleGetStandard-win.cpp \
713 r3/win/RTSystemQueryOSInfo-win.cpp \
714 r3/win/RTSystemShutdown-win.cpp \
715 r3/win/RTSystemQueryDmiString-win.cpp \
716 r3/win/RTSystemQueryTotalRam-win.cpp \
717 r3/win/alloc-win.cpp \
718 r3/win/allocex-win.cpp \
719 r3/win/dir-win.cpp \
720 $(if-expr defined(VBOX_WITH_NT_DIRENUM),r3/nt/direnum-r3-nt.cpp,r3/win/direnum-win.cpp) \
721 r3/win/errvars-win.cpp \
722 r3/win/fileio-win.cpp \
723 r3/win/init-win.cpp \
724 r3/win/ldrNative-win.cpp \
725 r3/win/localipc-win.cpp \
726 r3/win/mp-win.cpp \
727 r3/win/path-win.cpp \
728 r3/win/pipe-win.cpp \
729 r3/win/process-win.cpp \
730 r3/win/RTLogWriteDebugger-win.cpp \
731 r3/win/rtProcInitExePath-win.cpp \
732 r3/win/sched-win.cpp \
733 r3/win/semevent-win.cpp \
734 r3/win/semeventmulti-win.cpp \
735 r3/win/semmutex-win.cpp \
736 r3/win/symlink-win.cpp \
737 r3/win/rtFileNativeSetAttributes-win.cpp \
738 r3/win/thread-win.cpp \
739 r3/win/thread2-win.cpp \
740 r3/win/time-win.cpp \
741 r3/win/timer-win.cpp \
742 r3/win/tls-win.cpp \
743 r3/win/utf16locale-win.cpp \
744 r3/win/utf8-win.cpp \
745 r3/win/RTUuidCreate-win.cpp \
746 win/errmsgwin.cpp \
747 win/RTErrConvertFromWin32.cpp \
748 common/string/mempcpy.asm
749
750RuntimeR3_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
751RuntimeR3_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES)
752
753RuntimeR3_SOURCES.linux = \
754 generic/cdrom-generic.cpp \
755 generic/RTDirQueryInfo-generic.cpp \
756 generic/RTDirSetTimes-generic.cpp \
757 generic/RTFileMove-generic.cpp \
758 generic/RTLogWriteDebugger-generic.cpp \
759 generic/RTProcDaemonize-generic.cpp \
760 generic/RTSemEventMultiWait-2-ex-generic.cpp \
761 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
762 generic/RTTimeLocalNow-generic.cpp \
763 generic/RTTimerCreate-generic.cpp \
764 generic/RTThreadSetAffinityToCpu-generic.cpp \
765 generic/RTUuidCreate-generic.cpp \
766 generic/mppresent-generic.cpp \
767 generic/utf16locale-generic.cpp \
768 generic/uuid-generic.cpp \
769 r3/posix/allocex-r3-posix.cpp \
770 r3/linux/RTThreadGetNativeState-linux.cpp \
771 r3/linux/mp-linux.cpp \
772 r3/linux/rtProcInitExePath-linux.cpp \
773 r3/linux/sched-linux.cpp \
774 r3/linux/sysfs.cpp \
775 r3/linux/time-linux.cpp \
776 r3/linux/thread-affinity-linux.cpp \
777 r3/linux/RTProcIsRunningByName-linux.cpp \
778 r3/linux/RTSystemQueryDmiString-linux.cpp \
779 r3/linux/RTSystemShutdown-linux.cpp \
780 r3/posix/RTFileQueryFsSizes-posix.cpp \
781 r3/posix/RTHandleGetStandard-posix.cpp \
782 r3/posix/RTMemProtect-posix.cpp \
783 r3/posix/RTPathUserHome-posix.cpp \
784 r3/posix/RTSystemQueryOSInfo-posix.cpp \
785 r3/linux/systemmem-linux.cpp \
786 r3/posix/RTTimeNow-posix.cpp \
787 r3/posix/RTTimeSet-posix.cpp \
788 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
789 r3/posix/dir-posix.cpp \
790 r3/posix/env-posix.cpp \
791 r3/posix/errvars-posix.cpp \
792 r3/posix/fileio-posix.cpp \
793 r3/posix/fileio2-posix.cpp \
794 r3/posix/filelock-posix.cpp \
795 r3/posix/fs-posix.cpp \
796 r3/posix/fs2-posix.cpp \
797 r3/posix/fs3-posix.cpp \
798 r3/posix/ldrNative-posix.cpp \
799 r3/posix/path-posix.cpp \
800 r3/posix/path2-posix.cpp \
801 r3/posix/pathhost-posix.cpp \
802 r3/posix/RTPathUserDocuments-posix.cpp \
803 r3/posix/pipe-posix.cpp \
804 r3/posix/process-posix.cpp \
805 r3/posix/process-creation-posix.cpp \
806 r3/posix/rand-posix.cpp \
807 r3/posix/semrw-posix.cpp \
808 r3/posix/symlink-posix.cpp \
809 r3/posix/thread-posix.cpp \
810 r3/posix/thread2-posix.cpp \
811 r3/posix/timelocal-posix.cpp \
812 r3/posix/timer-posix.cpp \
813 r3/posix/tls-posix.cpp \
814 r3/posix/utf8-posix.cpp
815ifdef IPRT_WITH_FUTEX_BASED_SEMS
816 RuntimeR3_SOURCES.linux += \
817 r3/linux/semevent-linux.cpp \
818 r3/linux/semeventmulti-linux.cpp \
819 r3/linux/semmutex-linux.cpp
820else
821 RuntimeR3_SOURCES.linux.x86 += \
822 r3/posix/semevent-posix.cpp \
823 r3/posix/semeventmulti-posix.cpp \
824 r3/posix/semmutex-posix.cpp
825 RuntimeR3_SOURCES.linux.amd64 += \
826 r3/linux/semevent-linux.cpp \
827 r3/linux/semeventmulti-linux.cpp
828 ifdef RT_NEW_LINUX_MUTEX_CODE
829 RuntimeR3_SOURCES.linux.amd64 += \
830 r3/linux/semmutex-linux.cpp
831 else
832 RuntimeR3_SOURCES.linux.amd64 += \
833 r3/posix/semmutex-posix.cpp
834 endif
835endif
836
837RuntimeR3_SOURCES.os2 = \
838 generic/cdrom-generic.cpp \
839 generic/RTDirQueryInfo-generic.cpp \
840 generic/RTDirSetTimes-generic.cpp \
841 generic/RTFileMove-generic.cpp \
842 generic/RTLogWriteDebugger-generic.cpp \
843 generic/RTProcDaemonize-generic.cpp \
844 generic/RTRandAdvCreateSystemFaster-generic.cpp \
845 generic/RTRandAdvCreateSystemTruer-generic.cpp \
846 generic/RTSystemQueryDmiString-generic.cpp \
847 generic/RTSystemShutdown-generic.cpp \
848 generic/RTTimeLocalNow-generic.cpp \
849 generic/RTTimerCreate-generic.cpp \
850 generic/RTThreadSetAffinityToCpu-generic.cpp \
851 generic/RTUuidCreate-generic.cpp \
852 generic/mppresent-generic.cpp \
853 generic/RTSemEventWait-generic.cpp \
854 generic/RTSemEventMultiWait-generic.cpp \
855 generic/RTSemMutexRequest-generic.cpp \
856 generic/RTSemMutexRequestDebug-generic.cpp \
857 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
858 generic/timer-generic.cpp \
859 generic/utf16locale-generic.cpp \
860 generic/uuid-generic.cpp \
861 generic/RTMpGetCoreCount-generic.cpp \
862 generic/RTMpGetOnlineCoreCount-generic.cpp \
863 generic/RTMpGetCurFrequency-generic.cpp \
864 generic/RTMpGetMaxFrequency-generic.cpp \
865 generic/RTProcIsRunningByName-generic.cpp \
866 generic/RTThreadGetNativeState-generic.cpp \
867 os2/RTErrConvertFromOS2.cpp \
868 r3/generic/allocex-r3-generic.cpp \
869 r3/os2/filelock-os2.cpp \
870 r3/os2/mp-os2.cpp \
871 r3/os2/pipe-os2.cpp \
872 r3/os2/rtProcInitExePath-os2.cpp \
873 r3/os2/sched-os2.cpp \
874 r3/os2/sems-os2.cpp \
875 r3/os2/systemmem-os2.cpp \
876 r3/os2/thread-os2.cpp \
877 r3/os2/time-os2.cpp \
878 r3/posix/RTFileQueryFsSizes-posix.cpp \
879 r3/posix/RTHandleGetStandard-posix.cpp \
880 r3/posix/RTMemProtect-posix.cpp \
881 r3/posix/RTPathUserHome-posix.cpp \
882 r3/posix/RTSystemQueryOSInfo-posix.cpp \
883 r3/posix/RTTimeNow-posix.cpp \
884 r3/posix/RTTimeSet-posix.cpp \
885 r3/posix/dir-posix.cpp \
886 r3/posix/env-posix.cpp \
887 r3/posix/errvars-posix.cpp \
888 r3/posix/fileio-posix.cpp \
889 r3/posix/fileio2-posix.cpp \
890 r3/posix/fs-posix.cpp \
891 r3/posix/fs2-posix.cpp \
892 r3/posix/fs3-posix.cpp \
893 r3/posix/ldrNative-posix.cpp \
894 r3/posix/path-posix.cpp \
895 r3/posix/path2-posix.cpp \
896 r3/posix/pathhost-posix.cpp \
897 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
898 r3/posix/RTPathUserDocuments-posix.cpp \
899 r3/posix/process-posix.cpp \
900 r3/posix/process-creation-posix.cpp \
901 r3/posix/symlink-posix.cpp \
902 r3/posix/timelocal-posix.cpp \
903 r3/posix/utf8-posix.cpp
904
905RuntimeR3_SOURCES.darwin = \
906 darwin/RTErrConvertFromDarwin.cpp \
907 darwin/RTErrConvertFromDarwinCOM.cpp \
908 darwin/RTErrConvertFromDarwinIO.cpp \
909 darwin/RTErrConvertFromDarwinKern.cpp \
910 generic/cdrom-generic.cpp \
911 generic/RTDirQueryInfo-generic.cpp \
912 generic/RTDirSetTimes-generic.cpp \
913 generic/RTFileMove-generic.cpp \
914 generic/RTLogWriteDebugger-generic.cpp \
915 generic/RTProcDaemonize-generic.cpp \
916 generic/RTThreadGetAffinity-stub-generic.cpp \
917 generic/RTThreadSetAffinity-stub-generic.cpp \
918 generic/RTThreadSetAffinityToCpu-generic.cpp \
919 generic/RTTimeLocalNow-generic.cpp \
920 generic/RTTimerCreate-generic.cpp \
921 generic/RTUuidCreate-generic.cpp \
922 generic/mppresent-generic.cpp \
923 generic/RTMpGetOnlineCoreCount-generic.cpp \
924 generic/RTSemEventMultiWait-2-ex-generic.cpp \
925 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
926 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
927 generic/RTSystemShutdown-generic.cpp \
928 generic/timer-generic.cpp \
929 generic/utf16locale-generic.cpp \
930 generic/uuid-generic.cpp\
931 generic/RTProcIsRunningByName-generic.cpp \
932 generic/RTThreadGetNativeState-generic.cpp \
933 r3/darwin/filelock-darwin.cpp \
934 r3/darwin/mp-darwin.cpp \
935 r3/darwin/pathhost-darwin.cpp \
936 r3/darwin/rtProcInitExePath-darwin.cpp \
937 r3/darwin/RTSystemQueryDmiString-darwin.cpp \
938 r3/darwin/sched-darwin.cpp \
939 r3/darwin/systemmem-darwin.cpp \
940 r3/darwin/time-darwin.cpp \
941 r3/darwin/RTPathUserDocuments-darwin.cpp \
942 r3/generic/allocex-r3-generic.cpp \
943 r3/posix/RTFileQueryFsSizes-posix.cpp \
944 r3/posix/RTHandleGetStandard-posix.cpp \
945 r3/posix/RTMemProtect-posix.cpp \
946 r3/posix/RTPathUserHome-posix.cpp \
947 r3/posix/RTSystemQueryOSInfo-posix.cpp \
948 r3/posix/RTTimeSet-posix.cpp \
949 r3/posix/dir-posix.cpp \
950 r3/posix/env-posix.cpp \
951 r3/posix/errvars-posix.cpp \
952 r3/posix/fileio-posix.cpp \
953 r3/posix/fileio2-posix.cpp \
954 r3/posix/fs-posix.cpp \
955 r3/posix/fs2-posix.cpp \
956 r3/posix/fs3-posix.cpp \
957 r3/posix/ldrNative-posix.cpp \
958 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
959 r3/posix/path-posix.cpp \
960 r3/posix/path2-posix.cpp \
961 r3/posix/pipe-posix.cpp \
962 r3/posix/process-posix.cpp \
963 r3/posix/process-creation-posix.cpp \
964 r3/posix/rand-posix.cpp \
965 r3/posix/semevent-posix.cpp \
966 r3/posix/semeventmulti-posix.cpp \
967 r3/posix/semmutex-posix.cpp \
968 r3/posix/symlink-posix.cpp \
969 r3/posix/thread-posix.cpp \
970 r3/posix/thread2-posix.cpp \
971 r3/posix/timelocal-posix.cpp \
972 r3/posix/tls-posix.cpp \
973 r3/posix/utf8-posix.cpp
974
975## @todo Make BSD sched, implement RTMP*.
976RuntimeR3_SOURCES.freebsd = \
977 generic/cdrom-generic.cpp \
978 generic/RTDirQueryInfo-generic.cpp \
979 generic/RTDirSetTimes-generic.cpp \
980 generic/RTFileMove-generic.cpp \
981 generic/RTLogWriteDebugger-generic.cpp \
982 generic/RTSemEventMultiWait-2-ex-generic.cpp \
983 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
984 generic/RTSystemQueryDmiString-generic.cpp \
985 generic/RTSystemShutdown-generic.cpp \
986 generic/RTThreadGetAffinity-stub-generic.cpp \
987 generic/RTThreadSetAffinity-stub-generic.cpp \
988 generic/RTThreadSetAffinityToCpu-generic.cpp \
989 generic/RTTimeLocalNow-generic.cpp \
990 generic/RTTimerCreate-generic.cpp \
991 generic/RTUuidCreate-generic.cpp \
992 generic/mppresent-generic.cpp \
993 generic/sched-generic.cpp \
994 generic/utf16locale-generic.cpp \
995 generic/uuid-generic.cpp \
996 generic/RTMpCpuId-generic.cpp \
997 generic/RTMpGetCoreCount-generic.cpp \
998 generic/RTMpGetOnlineCoreCount-generic.cpp \
999 generic/RTProcDaemonize-generic.cpp \
1000 generic/RTProcIsRunningByName-generic.cpp \
1001 generic/RTThreadGetNativeState-generic.cpp \
1002 r3/freebsd/mp-freebsd.cpp \
1003 r3/freebsd/rtProcInitExePath-freebsd.cpp \
1004 r3/generic/allocex-r3-generic.cpp \
1005 r3/posix/RTFileQueryFsSizes-posix.cpp \
1006 r3/posix/RTHandleGetStandard-posix.cpp \
1007 r3/posix/RTMemProtect-posix.cpp \
1008 r3/posix/RTPathUserHome-posix.cpp \
1009 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1010 r3/posix/RTSystemQueryTotalRam-posix.cpp \
1011 r3/posix/RTTimeNow-posix.cpp \
1012 r3/posix/RTTimeSet-posix.cpp \
1013 r3/posix/dir-posix.cpp \
1014 r3/posix/env-posix.cpp \
1015 r3/posix/errvars-posix.cpp \
1016 r3/posix/fileio-posix.cpp \
1017 r3/posix/fileio2-posix.cpp \
1018 r3/posix/filelock-posix.cpp \
1019 r3/posix/fs-posix.cpp \
1020 r3/posix/fs2-posix.cpp \
1021 r3/posix/fs3-posix.cpp \
1022 r3/posix/ldrNative-posix.cpp \
1023 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1024 r3/posix/path-posix.cpp \
1025 r3/posix/path2-posix.cpp \
1026 r3/posix/pathhost-posix.cpp \
1027 r3/posix/RTPathUserDocuments-posix.cpp \
1028 r3/posix/pipe-posix.cpp \
1029 r3/posix/process-posix.cpp \
1030 r3/posix/process-creation-posix.cpp \
1031 r3/posix/rand-posix.cpp \
1032 r3/posix/semevent-posix.cpp \
1033 r3/posix/semeventmulti-posix.cpp \
1034 r3/posix/semmutex-posix.cpp \
1035 r3/posix/semrw-posix.cpp \
1036 r3/posix/symlink-posix.cpp \
1037 r3/posix/thread-posix.cpp \
1038 r3/posix/thread2-posix.cpp \
1039 r3/posix/time-posix.cpp \
1040 r3/posix/timelocal-posix.cpp \
1041 r3/posix/timer-posix.cpp \
1042 r3/posix/tls-posix.cpp \
1043 r3/posix/utf8-posix.cpp
1044
1045RuntimeR3_SOURCES.solaris = \
1046 generic/cdrom-generic.cpp \
1047 generic/RTDirQueryInfo-generic.cpp \
1048 generic/RTDirSetTimes-generic.cpp \
1049 generic/RTFileMove-generic.cpp \
1050 generic/RTLogWriteDebugger-generic.cpp \
1051 generic/RTProcDaemonize-generic.cpp \
1052 generic/RTProcIsRunningByName-generic.cpp \
1053 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1054 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1055 generic/RTThreadSetAffinityToCpu-generic.cpp \
1056 generic/RTTimeLocalNow-generic.cpp \
1057 generic/RTTimerCreate-generic.cpp \
1058 generic/RTUuidCreate-generic.cpp \
1059 generic/sched-generic.cpp \
1060 generic/utf16locale-generic.cpp \
1061 generic/uuid-generic.cpp \
1062 generic/RTThreadGetNativeState-generic.cpp \
1063 r3/generic/allocex-r3-generic.cpp \
1064 r3/posix/RTFileQueryFsSizes-posix.cpp \
1065 r3/posix/RTHandleGetStandard-posix.cpp \
1066 r3/posix/RTMemProtect-posix.cpp \
1067 r3/posix/RTPathUserHome-posix.cpp \
1068 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1069 r3/posix/RTTimeNow-posix.cpp \
1070 r3/posix/RTTimeSet-posix.cpp \
1071 r3/posix/dir-posix.cpp \
1072 r3/posix/env-posix.cpp \
1073 r3/posix/errvars-posix.cpp \
1074 r3/posix/fileio-posix.cpp \
1075 r3/posix/fileio2-posix.cpp \
1076 r3/posix/filelock-posix.cpp \
1077 r3/posix/fs-posix.cpp \
1078 r3/posix/fs2-posix.cpp \
1079 r3/posix/fs3-posix.cpp \
1080 r3/posix/ldrNative-posix.cpp \
1081 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1082 r3/posix/path-posix.cpp \
1083 r3/posix/path2-posix.cpp \
1084 r3/posix/pathhost-posix.cpp \
1085 r3/posix/RTPathUserDocuments-posix.cpp \
1086 r3/posix/pipe-posix.cpp \
1087 r3/posix/process-posix.cpp \
1088 r3/posix/process-creation-posix.cpp \
1089 r3/posix/rand-posix.cpp \
1090 r3/posix/semevent-posix.cpp \
1091 r3/posix/semeventmulti-posix.cpp \
1092 r3/posix/semmutex-posix.cpp \
1093 r3/posix/semrw-posix.cpp \
1094 r3/posix/symlink-posix.cpp \
1095 r3/posix/thread-posix.cpp \
1096 r3/posix/thread2-posix.cpp \
1097 r3/posix/time-posix.cpp \
1098 r3/posix/timelocal-posix.cpp \
1099 r3/posix/timer-posix.cpp \
1100 r3/posix/tls-posix.cpp \
1101 r3/posix/utf8-posix.cpp \
1102 r3/solaris/systemmem-solaris.cpp \
1103 r3/solaris/mp-solaris.cpp \
1104 r3/solaris/rtProcInitExePath-solaris.cpp \
1105 r3/solaris/RTSystemShutdown-solaris.cpp \
1106 r3/solaris/thread-affinity-solaris.cpp
1107RuntimeR3_SOURCES.solaris.amd64 = \
1108 r3/solaris/coredumper-solaris.cpp \
1109 r3/solaris/RTSystemQueryDmiString-solaris.cpp
1110RuntimeR3_SOURCES.solaris.x86 = \
1111 r3/solaris/coredumper-solaris.cpp \
1112 r3/solaris/RTSystemQueryDmiString-solaris.cpp
1113RuntimeR3_SOURCES.solaris.sparc32 = \
1114 generic/RTSystemQueryDmiString-generic.cpp
1115RuntimeR3_SOURCES.solaris.sparc64 = \
1116 generic/RTSystemQueryDmiString-generic.cpp
1117
1118RuntimeR3_SOURCES.haiku = \
1119 generic/RTDirQueryInfo-generic.cpp \
1120 generic/RTDirSetTimes-generic.cpp \
1121 generic/RTFileMove-generic.cpp \
1122 generic/RTLogWriteDebugger-generic.cpp \
1123 generic/RTProcDaemonize-generic.cpp \
1124 generic/RTTimeLocalNow-generic.cpp \
1125 generic/RTTimerCreate-generic.cpp \
1126 generic/RTUuidCreate-generic.cpp \
1127 generic/mppresent-generic.cpp \
1128 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1129 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1130 generic/sched-generic.cpp \
1131 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),ockless-,)generic.cpp \
1132 generic/timer-generic.cpp \
1133 generic/utf16locale-generic.cpp \
1134 generic/uuid-generic.cpp\
1135 generic/RTProcIsRunningByName-generic.cpp \
1136 generic/RTThreadGetNativeState-generic.cpp \
1137 generic/RTMpGetCoreCount-generic.cpp \
1138 generic/RTMpGetOnlineCoreCount-generic.cpp \
1139 r3/haiku/rtProcInitExePath-haiku.cpp \
1140 r3/haiku/time-haiku.cpp \
1141 r3/generic/allocex-r3-generic.cpp \
1142 r3/posix/RTFileQueryFsSizes-posix.cpp \
1143 r3/posix/RTHandleGetStandard-posix.cpp \
1144 r3/posix/RTMemProtect-posix.cpp \
1145 r3/posix/RTPathUserHome-posix.cpp \
1146 r3/posix/RTSystemQueryOSInfo-posix.cpp \
1147 r3/posix/RTSystemQueryTotalRam-posix.cpp \
1148 r3/posix/RTTimeNow-posix.cpp \
1149 r3/posix/dir-posix.cpp \
1150 r3/posix/env-posix.cpp \
1151 r3/posix/errvars-posix.cpp \
1152 r3/posix/fileio-posix.cpp \
1153 r3/posix/fileio2-posix.cpp \
1154 r3/posix/filelock-posix.cpp \
1155 r3/posix/fs-posix.cpp \
1156 r3/posix/fs2-posix.cpp \
1157 r3/posix/fs3-posix.cpp \
1158 r3/posix/ldrNative-posix.cpp \
1159 r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
1160 r3/posix/path-posix.cpp \
1161 r3/posix/path2-posix.cpp \
1162 r3/posix/pathhost-posix.cpp \
1163 r3/posix/pipe-posix.cpp \
1164 r3/posix/process-posix.cpp \
1165 r3/posix/process-creation-posix.cpp \
1166 r3/posix/rand-posix.cpp \
1167 r3/posix/semevent-posix.cpp \
1168 r3/posix/semeventmulti-posix.cpp \
1169 r3/posix/semmutex-posix.cpp \
1170 r3/posix/symlink-posix.cpp \
1171 r3/posix/thread-posix.cpp \
1172 r3/posix/thread2-posix.cpp \
1173 r3/posix/timelocal-posix.cpp \
1174 r3/posix/tls-posix.cpp \
1175 r3/posix/utf8-posix.cpp
1176
1177## PORTME: Porters add their selection of platform specific files for Ring-3 here.
1178
1179
1180#
1181# RuntimeBldProg - Static Runtime for build programs.
1182#
1183# Note! This is a bit of hacky since kBuild doesn't support building libraries
1184# for build programs.
1185#
1186RuntimeBldProg_TEMPLATE := VBoxAdvBldProg
1187RuntimeBldProg_EXTENDS := RuntimeR3
1188RuntimeBldProg_BLD_TRG := $(KBUILD_HOST)
1189RuntimeBldProg_BLD_TRG_ARCH := $(KBUILD_HOST_ARCH)
1190RuntimeBldProg_BLD_TRG_CPU := $(KBUILD_HOST_CPU)
1191RuntimeBldProg_DEFS := $(filter-out IN_SUP_R3 IN_SUP, $(RuntimeR3_DEFS)) IPRT_WITHOUT_LDR_VERIFY RT_NO_GIP
1192RuntimeBldProg_SOURCES = $(filter-out \
1193 r3/xml.cpp \
1194 common/zip/xarvfs.cpp \
1195 , $(RuntimeR3_SOURCES))
1196
1197
1198
1199#
1200# RuntimeGuestR3 - Guest Additions Runtime (static/exe).
1201# (The KBUILD_HOST inheritance here is for cross building the linux
1202# additions, while .x86 is for cross building x86 while targeting amd64.)
1203#
1204RuntimeGuestR3_TEMPLATE := VBoxGuestR3Lib
1205## @todo change this to EXTEND the RuntimeR3 target.
1206RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
1207RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT RT_NO_GIP IPRT_WITH_OPENSSL, $(RuntimeR3_DEFS))
1208RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
1209RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
1210RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
1211RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
1212RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
1213RuntimeGuestR3_SOURCES := $(filter-out \
1214 common/time/timesupref.cpp \
1215 common/time/timesupA.asm \
1216 common/time/timesup.cpp \
1217 common/checksum/x509.cpp \
1218 generic/RTLogWriteUser-generic.cpp \
1219 r3/xml.cpp \
1220 common/zip/xarvfs.cpp \
1221 , $(RuntimeR3_SOURCES))
1222RuntimeGuestR3_SOURCES += \
1223 common/time/timesysalias.cpp \
1224 VBox/logbackdoor.cpp
1225RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
1226RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
1227RuntimeGuestR3_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
1228RuntimeGuestR3_SOURCES.x86 := $(RuntimeR3_SOURCES.x86)
1229RuntimeGuestR3_SOURCES.amd64 := $(RuntimeR3_SOURCES.amd64)
1230RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
1231RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).x86)
1232RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).amd64:= $(RuntimeR3_SOURCES.$(KBUILD_TARGET).amd64)
1233RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))
1234RuntimeGuestR3_SOURCES.win.x86 += \
1235 r3/win/vcc100-kernel32-fakes.cpp \
1236 r3/win/vcc100-kernel32-fakesA.asm
1237
1238#
1239# RuntimeGuestR3-x86 - Same as RuntimeGuestR3, except that it's targeting x86.
1240#
1241RuntimeGuestR3-x86_EXTENDS := RuntimeGuestR3
1242RuntimeGuestR3-x86_BLD_TRG_ARCH := x86
1243
1244
1245#
1246# RuntimeGuestR3Shared - Guest Additions Runtime (static/dll).
1247#
1248RuntimeGuestR3Shared_TEMPLATE := VBoxGuestR3Dll
1249RuntimeGuestR3Shared_EXTENDS := RuntimeGuestR3
1250RuntimeGuestR3Shared_INST = $(INST_ADDITIONS_LIB)
1251
1252
1253#
1254# RuntimeGuestR3Shared-x86 - Same as RuntimeGuestR3Shared, except that it's targeting x86.
1255#
1256RuntimeGuestR3Shared-x86_EXTENDS := RuntimeGuestR3Shared
1257RuntimeGuestR3Shared-x86_BLD_TRG_ARCH := x86
1258
1259
1260#
1261# VBoxRT - Shared Object / DLL version.
1262#
1263VBoxRT_TEMPLATE = VBoxR3DllNoPic
1264VBoxRT_SDKS = VBOX_LIBXML2
1265ifdef VBOX_WITH_LIBCURL
1266 VBoxRT_SDKS += VBOX_LIBCURL
1267endif
1268VBoxRT_SDKS += VBOX_OPENSSL
1269VBoxRT_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
1270if1of ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING), darwin win$(VBOX_WITH_HARDENING))
1271VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
1272endif
1273VBoxRT_DEFS := $(filter-out RT_NO_GIP, $(RuntimeR3_DEFS)) \
1274 IN_SUP_R3 IN_SUP_R3 IPRT_WITH_XAR \
1275 $(if-expr !defined(VBOX_WITH_ALT_HASH_CODE),IPRT_WITHOUT_SHA512T224 IPRT_WITHOUT_SHA512T256,)
1276ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1277 VBoxRT_DEFS += RT_NO_GIP
1278endif
1279ifdef VBOX_WITH_LIBCURL
1280 VBoxRT_DEFS += IPRT_WITH_HTTP
1281endif
1282VBoxRT_DEFS.$(KBUILD_TYPE) := $(RuntimeR3_DEFS.$(KBUILD_TYPE))
1283VBoxRT_SOURCES := \
1284 VBox/VBoxRTDeps.cpp \
1285 $(filter-out common/checksum/crc32.cpp, \
1286 $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeR3_SOURCES), \
1287 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeR3_SOURCES)) ) ) \
1288 common/checksum/crc32-zlib.cpp \
1289 common/misc/aiomgr.cpp
1290ifdef VBOX_WITH_LIBCURL
1291 VBoxRT_SOURCES += common/misc/s3.cpp
1292 VBoxRT_SOURCES += common/misc/http.cpp
1293endif
1294VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
1295VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
1296VBoxRT_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).x86)
1297VBoxRT_SOURCES.$(KBUILD_TARGET).amd64 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).amd64)
1298VBoxRT_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
1299VBoxRT_SOURCES.x86 := $(RuntimeR3_SOURCES.x86)
1300VBoxRT_SOURCES.amd64 := $(RuntimeR3_SOURCES.amd64)
1301VBoxRT_SOURCES.win += \
1302 r3/win/dllmain-win.cpp \
1303 r3/win/fileaio-win.cpp \
1304 $(VBoxRT_0_OUTDIR)/VBoxRT.def
1305VBoxRT_SOURCES.linux += \
1306 r3/linux/fileaio-linux.cpp
1307VBoxRT_SOURCES.solaris += \
1308 r3/solaris/fileaio-solaris.cpp
1309VBoxRT_SOURCES.darwin += \
1310 r3/posix/fileaio-posix.cpp
1311VBoxRT_SOURCES.freebsd += \
1312 r3/freebsd/fileaio-freebsd.cpp
1313VBoxRT_INCS := $(RuntimeR3_INCS)
1314VBoxRT_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
1315VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
1316VBoxRT_LIBS = \
1317 $(PATH_STAGE_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
1318if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1319VBoxRT_LIBS += \
1320 $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
1321endif
1322ifdef IPRT_WITH_KSTUFF
1323 VBoxRT_LIBS += \
1324 $(PATH_STAGE_LIB)/VBox-kStuff$(VBOX_SUFF_LIB)
1325endif
1326ifndef SDK_VBOX_LIBXML2_LIBS
1327 VBoxRT_LIBS += \
1328 $(PATH_STAGE_LIB)/VBox-libxml2$(VBOX_SUFF_LIB)
1329endif
1330VBoxRT_LIBS += \
1331 $(SDK_VBOX_ZLIB_LIBS)
1332ifndef SDK_VBOX_OPENSSL_LIBS
1333 VBoxRT_LIBS += \
1334 $(PATH_STAGE_LIB)/VBox-libcrypto$(VBOX_SUFF_LIB) \
1335 $(PATH_STAGE_LIB)/VBox-libssl$(VBOX_SUFF_LIB)
1336endif
1337ifdef IPRT_WITH_LZO
1338 VBoxRT_LIBS += lzo2
1339endif
1340VBoxRT_LIBS.linux = \
1341 crypt
1342VBoxRT_LIBS.darwin = \
1343 iconv
1344VBoxRT_LIBS.freebsd = \
1345 iconv \
1346 rt
1347VBoxRT_LIBS.haiku = \
1348 iconv
1349VBoxRT_LIBS.solaris = \
1350 kstat \
1351 contract
1352ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
1353 # SMBIOS not available on Solaris SPARC.
1354 VBoxRT_LIBS.solaris += smbios
1355endif
1356VBoxRT_LIBS.win = \
1357 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/vccomsup.lib \
1358 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/wbemuuid.lib \
1359 $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
1360VBoxRT_LDFLAGS.darwin = -framework IOKit -framework CoreFoundation -framework CoreServices -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
1361VBoxRT_LDFLAGS.win = /MANIFEST \
1362 /delayload:gdi32.dll \
1363 /delayload:user32.dll \
1364 /delayload:shell32.dll \
1365 /delayload:ole32.dll \
1366 /delayload:oleaut32.dll \
1367 /delayload:advapi32.dll
1368
1369if1of ($(DLLS), VBoxRT)
1370$$(VBoxRT_0_OUTDIR)/VBoxRT.def: \
1371 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-$$(if-expr $$(KBUILD_TARGET_ARCH) == amd64,win64,win32).def \
1372 $(PATH_SUB_CURRENT)/r3/win/$(if $(VBOX_OSE),VBoxRT-openssl-ose.def,VBoxRT-openssl.def)
1373 $(RM) -f -- $@
1374 $(REDIRECT) -wto $@ -- $(CAT_EXT) $^
1375endif
1376
1377
1378#
1379# HACK ALERT! Make testcase run during build on SELinux boxes.
1380# Create a dummy DLL that ensure that VBoxRT is installed
1381# during the DLL pass and cleaned up later.
1382#
1383ifeq ($(KBUILD_TARGET),linux)
1384 if1of (VBoxRT, $(DLLS))
1385 ifneq ($(wildcard /usr/bin/chcon),)
1386VBoxRT_INSTTYPE = none
1387VBoxRT_DEBUG_INSTTYPE = both
1388
1389DLLS += VBoxRTDummy
1390VBoxRTDummy_TEMPLATE = VBoxR3Dll
1391VBoxRTDummy_INSTTYPE = none
1392VBoxRTDummy_LIBS = $(PATH_STAGE_BIN)/VBoxRT.so
1393VBoxRTDummy_CLEAN = $(PATH_STAGE_BIN)/VBoxRT.so
1394BLDDIRS += $(PATH_STAGE_BIN)
1395
1396$(PATH_STAGE_BIN)/VBoxRT.so: $$(VBoxRT_1_TARGET) | $$(dir $$@)
1397 $(INSTALL) $< $@
1398 chcon -t texrel_shlib_t $@ || true
1399
1400VBoxRT:: VBoxRTDummy
1401 endif # chcon present.
1402 endif # building VBoxRT
1403endif # linux
1404
1405
1406#
1407# VBoxRT-x86 - 32-bit version of VBoxRT
1408#
1409VBoxRT-x86_EXTENDS = VBoxRT
1410VBoxRT-x86_TEMPLATE = VBoxR3Dll-x86
1411VBoxRT-x86_INST.win = $(INST_DLL)x86/
1412VBoxRT-x86_SDKS = VBOX_LIBXML2
1413ifdef VBOX_WITH_LIBCURL
1414 VBoxRT-x86_SDKS += VBOX_LIBCURL-x86
1415endif
1416VBoxRT-x86_SDKS += VBOX_OPENSSL-x86
1417
1418VBoxRT-x86_LIBS = \
1419 $(PATH_STAGE_LIB)/VBox-liblzf-x86$(VBOX_SUFF_LIB)
1420if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1421VBoxRT-x86_LIBS += \
1422 $(PATH_STAGE_LIB)/SUPR3-x86$(VBOX_SUFF_LIB)
1423endif
1424ifdef IPRT_WITH_KSTUFF
1425 VBoxRT-x86_LIBS += \
1426 $(PATH_STAGE_LIB)/VBox-kStuff-x86$(VBOX_SUFF_LIB)
1427endif
1428ifndef SDK_VBOX_LIBXML2_LIBS
1429 VBoxRT-x86_LIBS += \
1430 $(PATH_STAGE_LIB)/VBox-libxml2-x86$(VBOX_SUFF_LIB)
1431endif
1432VBoxRT-x86_LIBS += \
1433 $(SDK_VBOX_ZLIB_LIBS-x86)
1434ifndef SDK_VBOX_OPENSSL_LIBS
1435 VBoxRT-x86_LIBS += \
1436 $(PATH_STAGE_LIB)/VBox-libcrypto-x86$(VBOX_SUFF_LIB) \
1437 $(PATH_STAGE_LIB)/VBox-libssl-x86$(VBOX_SUFF_LIB)
1438endif
1439ifdef IPRT_WITH_LZO
1440 VBoxRT-x86_LIBS += lzo2
1441endif
1442VBoxRT-x86_LIBS.linux = \
1443 crypt
1444VBoxRT-x86_LIBS.darwin = \
1445 iconv
1446VBoxRT-x86_LIBS.freebsd = \
1447 iconv \
1448 rt
1449VBoxRT-x86_LIBS.haiku = \
1450 iconv
1451VBoxRT-x86_LIBS.solaris = \
1452 kstat \
1453 contract
1454ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
1455 # SMBIOS not available on Solaris SPARC.
1456 VBoxRT-x86_LIBS.solaris += smbios
1457endif
1458VBoxRT-x86_LIBS.win = \
1459 $(PATH_SDK_$(VBOX_WINDDK)_LIB.x86)/vccomsup.lib \
1460 $(PATH_SDK_$(VBOX_WINDDK)_LIB.x86)/wbemuuid.lib \
1461 $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/delayimp.lib
1462
1463VBoxRT-x86_SOURCES.win = $(filter-out %.def,$(VBoxRT_SOURCES.win)) \
1464 $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def
1465if1of ($(DLLS), VBoxRT-x86)
1466$$(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def: \
1467 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win32.def \
1468 $(PATH_SUB_CURRENT)/r3/win/$(if $(VBOX_OSE),VBoxRT-openssl-ose.def,VBoxRT-openssl.def)
1469 $(RM) -f -- $@
1470 $(REDIRECT) -wto $@ -- $(CAT_EXT) $^
1471endif
1472
1473#
1474# VBoxRTImp - Import library/hack.
1475#
1476ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
1477$(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def r3/win/VBoxRT-openssl-ose.def r3/win/VBoxRT-win64.def)
1478else ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
1479$(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def r3/win/VBoxRT-openssl-ose.def r3/win/VBoxRT-win32.def)
1480else
1481$(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def r3/win/VBoxRT-openssl-ose.def)
1482endif
1483
1484
1485#
1486# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
1487# This is used together with VBoxRT.
1488#
1489## @todo the *_alias.c stuff is busted, remove and use RT_WITH_NOCRT_ALIASES instead.
1490RuntimeR3NoCRTGCC_TEMPLATE = VBoxNoCrtGccLib
1491RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
1492ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1493 RuntimeR3NoCRTGCC_DEFS += RT_NO_GIP
1494endif
1495RuntimeR3NoCRTGCC_INCS = include
1496RuntimeR3NoCRTGCC_SOURCES := \
1497 common/misc/sanity-cpp.cpp \
1498 common/misc/sanity-c.c \
1499 \
1500 $(RuntimeNoCrt_SOURCES)
1501
1502if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1503RuntimeR3NoCRTGCC_SOURCES += \
1504 common/math/ceill.asm \
1505 common/math/cosl.asm \
1506 common/math/fabs.asm \
1507 common/math/fabsf.asm \
1508 common/math/fabsl.asm \
1509 common/math/floor.asm \
1510 common/math/floorf.asm \
1511 common/math/floorl.asm \
1512 common/math/ldexpl.asm \
1513 common/math/llrint.asm \
1514 common/math/llrintf.asm \
1515 common/math/llrintl.asm \
1516 common/math/logl.asm \
1517 common/math/lrint.asm \
1518 common/math/lrintf.asm \
1519 common/math/lrintl.asm \
1520 common/math/remainder.asm \
1521 common/math/remainderf.asm \
1522 common/math/remainderl.asm \
1523 common/math/sinl.asm \
1524 common/math/tanl.asm \
1525 common/math/trunc.asm \
1526 common/math/truncf.asm \
1527 common/math/truncl.asm \
1528 \
1529 common/string/memchr_alias.c \
1530 common/string/memcmp_alias.c \
1531 common/string/memcpy_alias.c \
1532 common/string/memmove_alias.c \
1533 common/string/memset_alias.c \
1534 common/string/strchr_alias.c \
1535 common/string/strcmp_alias.c \
1536 common/string/strlen_alias.c
1537endif
1538
1539RuntimeR3NoCRTGCC_SOURCES.x86 = \
1540 common/math/x86/fenv-x86.c \
1541 common/math/gcc/adddi3.c \
1542 common/math/gcc/anddi3.c \
1543 common/math/gcc/ashldi3.c \
1544 common/math/gcc/ashrdi3.c \
1545 common/math/gcc/cmpdi2.c \
1546 common/math/gcc/divdi3.c \
1547 common/math/gcc/iordi3.c \
1548 common/math/gcc/lshldi3.c \
1549 common/math/gcc/lshrdi3.c \
1550 common/math/gcc/moddi3.c \
1551 common/math/gcc/muldi3.c \
1552 common/math/gcc/negdi2.c \
1553 common/math/gcc/notdi2.c \
1554 common/math/gcc/qdivrem.c \
1555 common/math/gcc/subdi3.c \
1556 common/math/gcc/ucmpdi2.c \
1557 common/math/gcc/udivdi3.c \
1558 common/math/gcc/umoddi3.c \
1559 common/math/gcc/xordi3.c
1560
1561
1562#
1563# RuntimeR0 - Ring-0 library for VMMR0.
1564#
1565RuntimeR0_TEMPLATE = VBoxR0
1566RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
1567ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1568 RuntimeR0_DEFS += RT_NO_GIP
1569endif
1570RuntimeR0_INCS = include
1571RuntimeR0_SOURCES := \
1572 common/log/logellipsis.cpp \
1573 common/log/logrelellipsis.cpp \
1574 common/log/logcom.cpp \
1575 common/log/logformat.cpp \
1576 common/log/tracebuf.cpp \
1577 common/log/tracedefault.cpp \
1578 common/misc/RTAssertMsg1Weak.cpp \
1579 common/misc/RTAssertMsg2.cpp \
1580 common/misc/RTAssertMsg2Add.cpp \
1581 common/misc/RTAssertMsg2AddWeak.cpp \
1582 common/misc/RTAssertMsg2AddWeakV.cpp \
1583 common/misc/RTAssertMsg2Weak.cpp \
1584 common/misc/RTAssertMsg2WeakV.cpp \
1585 common/misc/buildconfig.cpp \
1586 common/misc/once.cpp \
1587 common/misc/sanity-c.c \
1588 common/misc/sanity-cpp.cpp \
1589 common/misc/term.cpp \
1590 common/path/RTPathFilename.cpp \
1591 common/string/strhash1.cpp \
1592 common/string/strncmp.cpp \
1593 common/string/strpbrk.cpp \
1594 common/string/RTStrCat.cpp \
1595 common/string/RTStrCatEx.cpp \
1596 common/string/RTStrCatP.cpp \
1597 common/string/RTStrCatPEx.cpp \
1598 common/string/RTStrCopy.cpp \
1599 common/string/RTStrCopyEx.cpp \
1600 common/string/RTStrCopyP.cpp \
1601 common/string/RTStrCopyPEx.cpp \
1602 common/string/RTStrNLen.cpp \
1603 common/string/RTStrNLenEx.cpp \
1604 common/table/avlgcptr.cpp \
1605 common/table/avlhcphys.cpp \
1606 common/table/avllu32.cpp \
1607 common/table/avlogcphys.cpp \
1608 common/table/avlogcptr.cpp \
1609 common/table/avlohcphys.cpp \
1610 common/table/avloioport.cpp \
1611 common/table/avlpv.cpp \
1612 common/table/avlrogcphys.cpp \
1613 common/table/avlrogcptr.cpp \
1614 common/table/avlroioport.cpp \
1615 common/table/avlroogcptr.cpp \
1616 common/table/avlu32.cpp \
1617 common/table/avlou32.cpp \
1618 common/time/timesup.cpp \
1619 generic/RTAssertShouldPanic-generic.cpp \
1620 generic/critsect-generic.cpp \
1621 \
1622 $(RuntimeNoCrt_SOURCES)
1623
1624if1of ($(KBUILD_TARGET), darwin solaris freebsd)
1625RuntimeR0_SOURCES += \
1626 common/math/gcc/adddi3.c \
1627 common/math/gcc/anddi3.c \
1628 common/math/gcc/ashldi3.c \
1629 common/math/gcc/ashrdi3.c \
1630 common/math/gcc/cmpdi2.c \
1631 common/math/gcc/divdi3.c \
1632 common/math/gcc/iordi3.c \
1633 common/math/gcc/lshldi3.c \
1634 common/math/gcc/lshrdi3.c \
1635 common/math/gcc/moddi3.c \
1636 common/math/gcc/muldi3.c \
1637 common/math/gcc/negdi2.c \
1638 common/math/gcc/notdi2.c \
1639 common/math/gcc/qdivrem.c \
1640 common/math/gcc/subdi3.c \
1641 common/math/gcc/ucmpdi2.c \
1642 common/math/gcc/udivdi3.c \
1643 common/math/gcc/umoddi3.c \
1644 common/math/gcc/xordi3.c
1645endif
1646
1647RuntimeR0_SOURCES.x86 += \
1648 common/asm/ASMCpuIdExSlow.asm \
1649 common/asm/ASMAtomicUoAndU64.asm \
1650 common/asm/ASMAtomicUoAndU32.asm \
1651 common/asm/ASMAtomicUoOrU64.asm \
1652 common/asm/ASMAtomicUoOrU32.asm \
1653 common/asm/ASMRdMsrEx.asm \
1654 common/asm/ASMWrMsrEx.asm
1655RuntimeR0_SOURCES.amd64 += \
1656 common/asm/ASMCpuIdExSlow.asm \
1657 common/asm/ASMAtomicUoAndU64.asm \
1658 common/asm/ASMAtomicUoAndU32.asm \
1659 common/asm/ASMAtomicUoOrU64.asm \
1660 common/asm/ASMAtomicUoOrU32.asm \
1661 common/asm/ASMRdMsrEx.asm \
1662 common/asm/ASMWrMsrEx.asm
1663
1664#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
1665# RuntimeR0_SOURCES += common/time/timesupA.asm
1666#else
1667 RuntimeR0_SOURCES += common/time/timesupref.cpp
1668#endif
1669
1670RuntimeR0_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
1671RuntimeR0_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES)
1672RuntimeR0_SOURCES.win = \
1673 nt/NtProcessStartup-stub.cpp
1674
1675RuntimeR0_SOURCES.os2 = \
1676 os2/sys0.asm
1677
1678
1679#
1680# RuntimeR0Stub - Ring-0 context startup stub for Windows and Solaris.
1681#
1682RuntimeR0Stub_TEMPLATE = $(if-expr "$(KBUILD_TARGET)" == "solaris",VBoxR0DrvLib,VBoxR0)
1683RuntimeR0Stub_SOURCES.win = \
1684 nt/NtProcessStartup-stub.cpp
1685RuntimeR0Stub_SOURCES.solaris = \
1686 r0drv/solaris/modulestub-r0drv-solaris.c
1687
1688
1689#
1690# RuntimeR0Drv - Ring-0 library for host drivers.
1691#
1692RuntimeR0Drv_TEMPLATE = VBoxR0DrvLib
1693RuntimeR0Drv_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS VBOX_OPENSSL
1694RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS RT_NO_EXPORT_SYMBOL
1695RuntimeR0Drv_DEFS.win = IN_SUP_R0 LDR_ONLY_PE
1696RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0
1697
1698RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
1699RuntimeR0Drv_INCS.freebsd = \
1700 $(PATH_STAGE)/gen-sys-hdrs
1701RuntimeR0Drv_INCS.linux = \
1702 r0drv/linux
1703RuntimeR0Drv_INCS.solaris = \
1704 r0drv/solaris/vbi/i86pc \
1705 r0drv/solaris/vbi/i86pc/sys
1706
1707RuntimeR0Drv_SOURCES = \
1708 common/alloc/alloc.cpp \
1709 common/alloc/heapsimple.cpp \
1710 common/alloc/heapoffset.cpp \
1711 common/checksum/alt-md5.cpp \
1712 common/checksum/crc32.cpp \
1713 common/checksum/crc64.cpp \
1714 common/checksum/ipv4.cpp \
1715 common/checksum/ipv6.cpp \
1716 common/err/RTErrConvertToErrno.cpp \
1717 common/err/RTErrConvertFromErrno.cpp \
1718 common/log/log.cpp \
1719 common/log/logellipsis.cpp \
1720 common/log/logrel.cpp \
1721 common/log/logrelellipsis.cpp \
1722 common/log/logcom.cpp \
1723 common/log/logformat.cpp \
1724 common/log/tracebuf.cpp \
1725 common/log/tracedefault.cpp \
1726 common/misc/RTAssertMsg1Weak.cpp \
1727 common/misc/RTAssertMsg2.cpp \
1728 common/misc/RTAssertMsg2Add.cpp \
1729 common/misc/RTAssertMsg2AddWeak.cpp \
1730 common/misc/RTAssertMsg2AddWeakV.cpp \
1731 common/misc/RTAssertMsg2Weak.cpp \
1732 common/misc/RTAssertMsg2WeakV.cpp \
1733 common/misc/assert.cpp \
1734 common/misc/buildconfig.cpp \
1735 common/misc/handletable.cpp \
1736 common/misc/handletablectx.cpp \
1737 common/misc/handletablesimple.cpp \
1738 common/misc/once.cpp \
1739 common/misc/sanity-c.c \
1740 common/misc/sanity-cpp.cpp \
1741 common/misc/term.cpp \
1742 common/misc/RTMemWipeThoroughly.cpp \
1743 common/path/rtPathVolumeSpecLen.cpp \
1744 common/path/RTPathAbsDup.cpp \
1745 common/path/RTPathAbsEx.cpp \
1746 common/path/RTPathAbsExDup.cpp \
1747 common/path/RTPathAppend.cpp \
1748 common/path/RTPathAppendEx.cpp \
1749 common/path/RTPathExt.cpp \
1750 common/path/RTPathFilename.cpp \
1751 common/path/RTPathHasExt.cpp \
1752 common/path/RTPathHasPath.cpp \
1753 common/path/RTPathParseSimple.cpp \
1754 common/path/RTPathRealDup.cpp \
1755 common/path/RTPathStripExt.cpp \
1756 common/path/RTPathStripFilename.cpp \
1757 common/path/RTPathStripTrailingSlash.cpp \
1758 common/rand/rand.cpp \
1759 common/rand/randadv.cpp \
1760 common/rand/randparkmiller.cpp \
1761 common/string/RTStrCat.cpp \
1762 common/string/RTStrCatEx.cpp \
1763 common/string/RTStrCatP.cpp \
1764 common/string/RTStrCatPEx.cpp \
1765 common/string/RTStrCmp.cpp \
1766 common/string/RTStrCopy.cpp \
1767 common/string/RTStrCopyEx.cpp \
1768 common/string/RTStrCopyP.cpp \
1769 common/string/RTStrCopyPEx.cpp \
1770 common/string/RTStrNCmp.cpp \
1771 common/string/RTStrNLen.cpp \
1772 common/string/RTStrNLenEx.cpp \
1773 common/string/straprintf.cpp \
1774 common/string/strformat.cpp \
1775 common/string/strformatnum.cpp \
1776 common/string/strformatrt.cpp \
1777 common/string/strformattype.cpp \
1778 common/string/strhash1.cpp \
1779 common/string/strprintf.cpp \
1780 common/string/strtonum.cpp \
1781 common/string/stringalloc.cpp \
1782 common/string/unidata-flags.cpp \
1783 common/string/unidata-lower.cpp \
1784 common/string/unidata-upper.cpp \
1785 common/string/utf-8.cpp \
1786 common/string/utf-8-case.cpp \
1787 common/string/utf-8-case2.cpp \
1788 common/string/utf-16.cpp \
1789 common/string/utf-16-case.cpp \
1790 common/string/utf-16-latin-1.cpp \
1791 common/table/avlpv.cpp \
1792 common/time/time.cpp \
1793 generic/RTLogWriteStdErr-stub-generic.cpp \
1794 generic/RTLogWriteUser-generic.cpp \
1795 generic/RTMpGetArraySize-generic.cpp \
1796 generic/RTRandAdvCreateSystemFaster-generic.cpp \
1797 generic/RTSemEventWait-2-ex-generic.cpp \
1798 generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
1799 generic/RTSemEventMultiWait-2-ex-generic.cpp \
1800 generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
1801 generic/critsect-generic.cpp \
1802 generic/errvars-generic.cpp \
1803 generic/uuid-generic.cpp \
1804 r0drv/alloc-r0drv.cpp \
1805 r0drv/initterm-r0drv.cpp \
1806 r0drv/generic/semspinmutex-r0drv-generic.c \
1807 VBox/log-vbox.cpp \
1808
1809RuntimeR0Drv_SOURCES.amd64 = \
1810 common/asm/ASMRdMsrEx.asm \
1811 common/asm/ASMWrMsrEx.asm \
1812 common/math/bignum-amd64-x86.asm
1813RuntimeR0Drv_SOURCES.x86 = \
1814 common/asm/ASMRdMsrEx.asm \
1815 common/asm/ASMWrMsrEx.asm \
1816 common/math/bignum-amd64-x86.asm
1817
1818
1819RuntimeR0Drv_SOURCES.linux = \
1820 common/misc/thread.cpp \
1821 common/string/strpbrk.cpp \
1822 generic/RTAssertShouldPanic-generic.cpp \
1823 generic/RTLogWriteStdOut-stub-generic.cpp \
1824 generic/RTMpGetCoreCount-generic.cpp \
1825 generic/mppresent-generic.cpp \
1826 r0drv/linux/alloc-r0drv-linux.c \
1827 r0drv/linux/assert-r0drv-linux.c \
1828 r0drv/linux/initterm-r0drv-linux.c \
1829 r0drv/linux/memobj-r0drv-linux.c \
1830 r0drv/linux/memuserkernel-r0drv-linux.c \
1831 r0drv/linux/mp-r0drv-linux.c \
1832 r0drv/linux/mpnotification-r0drv-linux.c \
1833 r0drv/linux/process-r0drv-linux.c \
1834 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
1835 r0drv/linux/semevent-r0drv-linux.c \
1836 r0drv/linux/semeventmulti-r0drv-linux.c \
1837 r0drv/linux/semfastmutex-r0drv-linux.c \
1838 r0drv/linux/semmutex-r0drv-linux.c \
1839 r0drv/linux/spinlock-r0drv-linux.c \
1840 r0drv/linux/thread-r0drv-linux.c \
1841 r0drv/linux/thread2-r0drv-linux.c \
1842 r0drv/linux/threadctxhooks-r0drv-linux.c \
1843 r0drv/linux/time-r0drv-linux.c \
1844 r0drv/linux/timer-r0drv-linux.c \
1845 r0drv/memobj-r0drv.cpp \
1846 r0drv/mpnotification-r0drv.c \
1847 r0drv/powernotification-r0drv.c
1848
1849RuntimeR0Drv_SOURCES.win = \
1850 common/ldr/ldr.cpp \
1851 common/ldr/ldrEx.cpp \
1852 common/ldr/ldrPE.cpp \
1853 common/asn1/asn1-basics.cpp \
1854 common/asn1/asn1-dump.cpp \
1855 common/asn1/asn1-cursor.cpp \
1856 common/asn1/asn1-default-allocator.cpp \
1857 common/asn1/asn1-encode.cpp \
1858 common/asn1/asn1-ut-bitstring.cpp \
1859 common/asn1/asn1-ut-bitstring-decode.cpp \
1860 common/asn1/asn1-ut-boolean.cpp \
1861 common/asn1/asn1-ut-boolean-decode.cpp \
1862 common/asn1/asn1-ut-core.cpp \
1863 common/asn1/asn1-ut-core-decode.cpp \
1864 common/asn1/asn1-ut-dyntype.cpp \
1865 common/asn1/asn1-ut-dyntype-decode.cpp \
1866 common/asn1/asn1-ut-integer.cpp \
1867 common/asn1/asn1-ut-integer-decode.cpp \
1868 common/asn1/asn1-ut-null.cpp \
1869 common/asn1/asn1-ut-null-decode.cpp \
1870 common/asn1/asn1-ut-objid.cpp \
1871 common/asn1/asn1-ut-objid-decode.cpp \
1872 common/asn1/asn1-ut-octetstring.cpp \
1873 common/asn1/asn1-ut-octetstring-decode.cpp \
1874 common/asn1/asn1-ut-string.cpp \
1875 common/asn1/asn1-ut-string-decode.cpp \
1876 common/asn1/asn1-ut-time.cpp \
1877 common/asn1/asn1-ut-time-decode.cpp \
1878 common/crypto/digest-core.cpp \
1879 common/crypto/digest-builtin.cpp \
1880 common/crypto/rsa-asn1-decoder.cpp \
1881 common/crypto/rsa-core.cpp \
1882 common/crypto/rsa-init.cpp \
1883 common/crypto/rsa-sanity.cpp \
1884 common/crypto/pkcs7-asn1-decoder.cpp \
1885 common/crypto/pkcs7-core.cpp \
1886 common/crypto/pkcs7-init.cpp \
1887 common/crypto/pkcs7-sanity.cpp \
1888 common/crypto/pkcs7-verify.cpp \
1889 common/crypto/pkix-signature-builtin.cpp \
1890 common/crypto/pkix-signature-core.cpp \
1891 common/crypto/pkix-signature-rsa.cpp \
1892 common/crypto/pkix-util.cpp \
1893 common/crypto/pkix-verify.cpp \
1894 common/crypto/spc-asn1-decoder.cpp \
1895 common/crypto/spc-core.cpp \
1896 common/crypto/spc-init.cpp \
1897 common/crypto/spc-sanity.cpp \
1898 common/crypto/x509-asn1-decoder.cpp \
1899 common/crypto/x509-certpaths.cpp \
1900 common/crypto/x509-core.cpp \
1901 common/crypto/x509-init.cpp \
1902 common/crypto/x509-sanity.cpp \
1903 common/crypto/x509-verify.cpp \
1904 common/crypto/store.cpp \
1905 common/crypto/store-inmem.cpp \
1906 common/crypto/taf-asn1-decoder.cpp \
1907 common/crypto/taf-core.cpp \
1908 common/crypto/taf-init.cpp \
1909 common/crypto/taf-sanity.cpp \
1910 common/checksum/alt-md2.cpp \
1911 common/checksum/alt-sha1.cpp \
1912 common/checksum/alt-sha256.cpp \
1913 common/checksum/alt-sha512.cpp \
1914 common/checksum/md2str.cpp \
1915 common/checksum/md5str.cpp \
1916 common/checksum/sha1str.cpp \
1917 common/checksum/sha224str.cpp \
1918 common/checksum/sha256str.cpp \
1919 common/checksum/sha384str.cpp \
1920 common/checksum/sha512str.cpp \
1921 common/checksum/sha512t224str.cpp \
1922 common/checksum/sha512t256str.cpp \
1923 common/err/errinfo.cpp \
1924 common/path/RTPathChangeToUnixSlashes.cpp \
1925 common/math/bignum.cpp \
1926 common/misc/zero.asm \
1927 common/string/RTStrPrintHexBytes.cpp \
1928 common/string/RTUtf16Copy.cpp \
1929 common/string/RTUtf16CopyAscii.cpp \
1930 common/string/RTUtf16Cat.cpp \
1931 common/string/RTUtf16CatAscii.cpp \
1932 common/string/RTUtf16End.cpp \
1933 common/string/RTUtf16NLen.cpp \
1934 common/string/RTUtf16NLenEx.cpp \
1935 common/string/RTUtf16PrintHexBytes.cpp \
1936 common/string/strstrip.cpp \
1937 generic/memsafer-generic.cpp \
1938 \
1939 common/misc/thread.cpp \
1940 common/string/memcmp.asm \
1941 common/string/memchr.asm \
1942 common/string/memcpy.asm \
1943 common/string/memset.asm \
1944 common/string/memmove.asm \
1945 common/string/strlen.asm \
1946 common/string/strncmp.cpp \
1947 common/string/strpbrk.cpp \
1948 generic/RTAssertShouldPanic-generic.cpp \
1949 generic/RTLogWriteStdOut-stub-generic.cpp \
1950 generic/RTTimerCreate-generic.cpp \
1951 generic/mppresent-generic.cpp \
1952 generic/RTMpGetCoreCount-generic.cpp \
1953 nt/RTErrConvertFromNtStatus.cpp \
1954 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
1955 r0drv/memobj-r0drv.cpp \
1956 r0drv/mpnotification-r0drv.c \
1957 r0drv/powernotification-r0drv.c \
1958 r0drv/nt/alloc-r0drv-nt.cpp \
1959 r0drv/nt/assert-r0drv-nt.cpp \
1960 r0drv/nt/initterm-r0drv-nt.cpp \
1961 r0drv/nt/memobj-r0drv-nt.cpp \
1962 r0drv/nt/memuserkernel-r0drv-nt.cpp \
1963 r0drv/nt/mp-r0drv-nt.cpp \
1964 r0drv/nt/mpnotification-r0drv-nt.cpp \
1965 r0drv/nt/process-r0drv-nt.cpp \
1966 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
1967 r0drv/nt/semevent-r0drv-nt.cpp \
1968 r0drv/nt/semeventmulti-r0drv-nt.cpp \
1969 r0drv/nt/semfastmutex-r0drv-nt.cpp \
1970 r0drv/nt/semmutex-r0drv-nt.cpp \
1971 r0drv/nt/spinlock-r0drv-nt.cpp \
1972 r0drv/nt/thread-r0drv-nt.cpp \
1973 r0drv/nt/thread2-r0drv-nt.cpp \
1974 r0drv/nt/time-r0drv-nt.cpp \
1975 r0drv/nt/timer-r0drv-nt.cpp \
1976 r0drv/nt/toxic-chkstk-r0drv-nt.asm \
1977 r0drv/nt/RTTimerGetSystemGranularity-r0drv-nt.cpp
1978
1979RuntimeR0Drv_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
1980RuntimeR0Drv_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES)
1981
1982RuntimeR0Drv_SOURCES.darwin = \
1983 common/misc/thread.cpp \
1984 common/string/memchr.asm \
1985 common/string/strpbrk.cpp \
1986 darwin/RTErrConvertFromDarwin.cpp \
1987 darwin/RTErrConvertFromDarwinIO.cpp \
1988 darwin/RTErrConvertFromDarwinKern.cpp \
1989 generic/RTAssertShouldPanic-generic.cpp \
1990 generic/RTTimerCreate-generic.cpp \
1991 generic/RTMpGetCoreCount-generic.cpp \
1992 generic/mppresent-generic.cpp \
1993 generic/timer-generic.cpp \
1994 r0drv/generic/mpnotification-r0drv-generic.cpp \
1995 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
1996 r0drv/darwin/alloc-r0drv-darwin.cpp \
1997 r0drv/darwin/assert-r0drv-darwin.cpp \
1998 r0drv/darwin/initterm-r0drv-darwin.cpp \
1999 r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp \
2000 r0drv/darwin/memobj-r0drv-darwin.cpp \
2001 r0drv/darwin/mp-r0drv-darwin.cpp \
2002 r0drv/darwin/memuserkernel-r0drv-darwin.cpp \
2003 r0drv/darwin/process-r0drv-darwin.cpp \
2004 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
2005 r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
2006 r0drv/darwin/semevent-r0drv-darwin.cpp \
2007 r0drv/darwin/semeventmulti-r0drv-darwin.cpp \
2008 r0drv/darwin/semfastmutex-r0drv-darwin.cpp \
2009 r0drv/darwin/semmutex-r0drv-darwin.cpp \
2010 r0drv/darwin/spinlock-r0drv-darwin.cpp \
2011 r0drv/darwin/thread-r0drv-darwin.cpp \
2012 r0drv/darwin/thread2-r0drv-darwin.cpp \
2013 r0drv/darwin/threadpreempt-r0drv-darwin.cpp \
2014 r0drv/darwin/time-r0drv-darwin.cpp \
2015 r0drv/memobj-r0drv.cpp \
2016 r0drv/powernotification-r0drv.c
2017
2018RuntimeR0Drv_SOURCES.os2 = \
2019 common/string/memchr.asm \
2020 common/string/memcmp.asm \
2021 common/string/memcpy.asm \
2022 common/string/mempcpy.asm \
2023 common/string/memmove.asm \
2024 common/string/memset.asm \
2025 common/string/strchr.asm \
2026 common/string/strcmp.asm \
2027 common/string/strcpy.asm \
2028 common/string/strlen.asm \
2029 \
2030 common/string/strncmp.cpp \
2031 common/string/strpbrk.cpp \
2032 \
2033 common/misc/thread.cpp \
2034 generic/RTAssertShouldPanic-generic.cpp \
2035 generic/RTLogWriteDebugger-generic.cpp \
2036 generic/RTLogWriteStdOut-stub-generic.cpp \
2037 generic/RTMpCpuId-generic.cpp \
2038 generic/RTMpCpuIdFromSetIndex-generic.cpp \
2039 generic/RTMpCpuIdToSetIndex-generic.cpp \
2040 generic/RTMpIsCpuPossible-generic.cpp \
2041 generic/RTMpGetCount-generic.cpp \
2042 generic/RTMpGetMaxCpuId-generic.cpp \
2043 generic/RTMpGetOnlineCount-generic.cpp \
2044 generic/RTMpGetOnlineSet-generic.cpp \
2045 generic/RTMpGetSet-generic.cpp \
2046 generic/RTMpIsCpuOnline-generic.cpp \
2047 generic/RTTimerCreate-generic.cpp \
2048 generic/mppresent-generic.cpp \
2049 os2/RTErrConvertFromOS2.cpp \
2050 os2/rtSemWaitOs2ConvertTimeout.cpp \
2051 os2/sys0.asm \
2052 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
2053 r0drv/generic/RTMpOn-r0drv-generic.cpp \
2054 r0drv/generic/mpnotification-r0drv-generic.cpp \
2055 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
2056 r0drv/memobj-r0drv.cpp \
2057 r0drv/powernotification-r0drv.c \
2058 r0drv/os2/alloc-r0drv-os2.cpp \
2059 r0drv/os2/assert-r0drv-os2.cpp \
2060 r0drv/os2/assertA-r0drv-os2.asm \
2061 r0drv/os2/initterm-r0drv-os2.cpp \
2062 r0drv/os2/memobj-r0drv-os2.cpp \
2063 r0drv/os2/memuserkernel-r0drv-os2.cpp \
2064 r0drv/os2/os2imports.imp \
2065 r0drv/os2/process-r0drv-os2.cpp \
2066 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
2067 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
2068 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
2069 r0drv/os2/semevent-r0drv-os2.cpp \
2070 r0drv/os2/semeventmulti-r0drv-os2.cpp \
2071 r0drv/os2/semfastmutex-r0drv-os2.cpp \
2072 r0drv/os2/spinlock-r0drv-os2.cpp \
2073 r0drv/os2/thread-r0drv-os2.cpp \
2074 r0drv/os2/thread2-r0drv-os2.cpp \
2075 r0drv/os2/time-r0drv-os2.cpp \
2076 r0drv/os2/timer-r0drv-os2.cpp \
2077 r0drv/os2/timerA-r0drv-os2.asm
2078
2079RuntimeR0Drv_SOURCES.freebsd = \
2080 common/misc/thread.cpp \
2081 common/string/memchr.asm \
2082 common/string/memmove.asm \
2083 common/string/strpbrk.cpp \
2084 common/string/memcmp.asm \
2085 common/string/strchr.asm \
2086 generic/RTAssertShouldPanic-generic.cpp \
2087 generic/RTLogWriteDebugger-generic.cpp \
2088 generic/RTLogWriteStdOut-stub-generic.cpp \
2089 generic/RTTimerCreate-generic.cpp \
2090 generic/mppresent-generic.cpp \
2091 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
2092 r0drv/generic/mpnotification-r0drv-generic.cpp \
2093 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
2094 r0drv/freebsd/alloc-r0drv-freebsd.c \
2095 r0drv/freebsd/assert-r0drv-freebsd.c \
2096 r0drv/freebsd/initterm-r0drv-freebsd.c \
2097 r0drv/freebsd/memobj-r0drv-freebsd.c \
2098 r0drv/freebsd/memuserkernel-r0drv-freebsd.c \
2099 r0drv/freebsd/process-r0drv-freebsd.c \
2100 r0drv/freebsd/semevent-r0drv-freebsd.c \
2101 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
2102 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
2103 r0drv/freebsd/semmutex-r0drv-freebsd.c \
2104 r0drv/freebsd/spinlock-r0drv-freebsd.c \
2105 r0drv/freebsd/thread-r0drv-freebsd.c \
2106 r0drv/freebsd/thread2-r0drv-freebsd.c \
2107 r0drv/freebsd/time-r0drv-freebsd.c \
2108 r0drv/freebsd/mp-r0drv-freebsd.c \
2109 generic/timer-generic.cpp \
2110 r0drv/memobj-r0drv.cpp \
2111 r0drv/powernotification-r0drv.c
2112
2113RuntimeR0Drv_SOURCES.solaris = \
2114 common/misc/thread.cpp \
2115 common/string/memchr.asm \
2116 generic/RTAssertShouldPanic-generic.cpp \
2117 generic/RTLogWriteStdOut-stub-generic.cpp \
2118 generic/RTMpGetCoreCount-generic.cpp \
2119 generic/RTTimerCreate-generic.cpp \
2120 generic/mppresent-generic.cpp \
2121 r0drv/memobj-r0drv.cpp \
2122 r0drv/mpnotification-r0drv.c \
2123 r0drv/powernotification-r0drv.c \
2124 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
2125 r0drv/solaris/RTMpPokeCpu-r0drv-solaris.c \
2126 r0drv/solaris/alloc-r0drv-solaris.c \
2127 r0drv/solaris/assert-r0drv-solaris.c \
2128 r0drv/solaris/dbgkrnlinfo-r0drv-solaris.c \
2129 r0drv/solaris/initterm-r0drv-solaris.c \
2130 r0drv/solaris/memuserkernel-r0drv-solaris.c \
2131 r0drv/solaris/mpnotification-r0drv-solaris.c \
2132 r0drv/solaris/memobj-r0drv-solaris.c \
2133 r0drv/solaris/mp-r0drv-solaris.c \
2134 r0drv/solaris/process-r0drv-solaris.c \
2135 r0drv/solaris/semevent-r0drv-solaris.c \
2136 r0drv/solaris/semeventmulti-r0drv-solaris.c \
2137 r0drv/solaris/semfastmutex-r0drv-solaris.c \
2138 r0drv/solaris/semmutex-r0drv-solaris.c \
2139 r0drv/solaris/spinlock-r0drv-solaris.c \
2140 r0drv/solaris/thread-r0drv-solaris.c \
2141 r0drv/solaris/thread2-r0drv-solaris.c \
2142 r0drv/solaris/threadctxhooks-r0drv-solaris.c \
2143 r0drv/solaris/time-r0drv-solaris.c \
2144 r0drv/solaris/timer-r0drv-solaris.c
2145
2146RuntimeR0Drv_SOURCES.haiku = \
2147 common/misc/thread.cpp \
2148 common/string/memchr.asm \
2149 common/string/memmove.asm \
2150 common/string/strpbrk.cpp \
2151 common/string/memcmp.asm \
2152 common/string/strchr.asm \
2153 generic/RTAssertShouldPanic-generic.cpp \
2154 generic/RTTimerCreate-generic.cpp \
2155 generic/mppresent-generic.cpp \
2156 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
2157 r0drv/generic/mpnotification-r0drv-generic.cpp \
2158 r0drv/generic/threadctxhooks-r0drv-generic.cpp \
2159 r0drv/haiku/alloc-r0drv-haiku.c \
2160 r0drv/haiku/assert-r0drv-haiku.c \
2161 r0drv/haiku/initterm-r0drv-haiku.c \
2162 r0drv/haiku/memobj-r0drv-haiku.c \
2163 r0drv/haiku/mp-r0drv-haiku.c \
2164 r0drv/haiku/process-r0drv-haiku.c \
2165 r0drv/haiku/RTLogWriteDebugger-r0drv-haiku.c \
2166 r0drv/haiku/RTLogWriteStdOut-r0drv-haiku.c \
2167 r0drv/haiku/semevent-r0drv-haiku.c \
2168 r0drv/haiku/semeventmulti-r0drv-haiku.c \
2169 r0drv/haiku/semfastmutex-r0drv-haiku.c \
2170 r0drv/haiku/semmutex-r0drv-haiku.c \
2171 r0drv/haiku/spinlock-r0drv-haiku.c \
2172 r0drv/haiku/thread-r0drv-haiku.c \
2173 r0drv/haiku/thread2-r0drv-haiku.c \
2174 r0drv/haiku/time-r0drv-haiku.c \
2175 generic/timer-generic.cpp \
2176 r0drv/memobj-r0drv.cpp \
2177 r0drv/powernotification-r0drv.c
2178
2179## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
2180
2181RuntimeR0Drv_ORDERDEPS.freebsd = \
2182 $(PATH_STAGE)/gen-sys-hdrs/bus_if.h \
2183 $(PATH_STAGE)/gen-sys-hdrs/device_if.h
2184
2185
2186#
2187# RuntimeGuestR0 - Guest driver runtime.
2188# This is almost the same as the RuntimeR0Drv, the main difference
2189# is in the backdoor logging and the lack of sup.h (which should be
2190# made irrelevant even for RuntimeR0Drv).
2191#
2192RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
2193RuntimeGuestR0_EXTENDS = RuntimeR0Drv
2194RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
2195RuntimeGuestR0_SOURCES += \
2196 VBox/logbackdoor.cpp
2197RuntimeGuestR0_SOURCES.win := \
2198 $(filter-out common/checksum/md% common/checksum/sha%, $(RuntimeR0Drv_SOURCES.win))
2199
2200
2201#
2202# RuntimeGuestR0NT4 - Win32 NT4 guest driver runtime.
2203#
2204RuntimeGuestR0NT4_EXTENDS = RuntimeGuestR0
2205RuntimeGuestR0NT4_EXTENDS_BY = appending
2206RuntimeGuestR0NT4_DEFS = IPRT_TARGET_NT4
2207
2208
2209ifdef VBOX_WITH_RAW_MODE
2210 #
2211 # RuntimeRC - Raw-mode context library.
2212 #
2213 RuntimeRC_TEMPLATE = VBoxRc
2214 RuntimeRC_DEFS = IN_RT_RC RT_WITH_VBOX
2215 RuntimeRC_INCS = include
2216 RuntimeRC_SOURCES := \
2217 common/checksum/alt-md5.cpp \
2218 common/checksum/crc32.cpp \
2219 common/checksum/crc64.cpp \
2220 common/log/log.cpp \
2221 common/log/logellipsis.cpp \
2222 common/log/logrel.cpp \
2223 common/log/logrelellipsis.cpp \
2224 common/log/logcom.cpp \
2225 common/log/logformat.cpp \
2226 common/log/tracebuf.cpp \
2227 common/log/tracedefault.cpp \
2228 common/misc/RTAssertMsg1Weak.cpp \
2229 common/misc/RTAssertMsg2.cpp \
2230 common/misc/RTAssertMsg2Add.cpp \
2231 common/misc/RTAssertMsg2AddWeak.cpp \
2232 common/misc/RTAssertMsg2AddWeakV.cpp \
2233 common/misc/RTAssertMsg2Weak.cpp \
2234 common/misc/RTAssertMsg2WeakV.cpp \
2235 common/misc/assert.cpp \
2236 common/misc/buildconfig.cpp \
2237 common/misc/sanity-c.c \
2238 common/misc/sanity-cpp.cpp \
2239 common/path/RTPathFilename.cpp \
2240 common/string/strformat.cpp \
2241 common/string/strformatnum.cpp \
2242 common/string/strformatrt.cpp \
2243 common/string/strformattype.cpp \
2244 common/string/strncmp.cpp \
2245 common/string/strpbrk.cpp \
2246 common/string/strprintf.cpp \
2247 common/string/RTStrCopy.cpp \
2248 common/string/RTStrCopyEx.cpp \
2249 common/table/avllu32.cpp \
2250 common/table/avlou32.cpp \
2251 common/table/avlogcphys.cpp \
2252 common/table/avlogcptr.cpp \
2253 common/table/avlohcphys.cpp \
2254 common/table/avloioport.cpp \
2255 common/table/avlrogcphys.cpp \
2256 common/table/avlrogcptr.cpp \
2257 common/table/avlroioport.cpp \
2258 common/table/avlroogcptr.cpp \
2259 common/table/avlu32.cpp \
2260 common/time/timeprog.cpp \
2261 common/time/timesup.cpp \
2262 gc/initterm-gc.cpp \
2263 generic/RTAssertShouldPanic-generic.cpp \
2264 generic/errvars-generic.cpp \
2265 \
2266 $(RuntimeNoCrt_SOURCES)
2267
2268 #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
2269 # RuntimeRC_SOURCES += common/time/timesupA.asm
2270 #else
2271 RuntimeRC_SOURCES += common/time/timesupref.cpp
2272 #endif
2273
2274 RuntimeRC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
2275
2276 ifeq ($(VBOX_LDR_FMT32),lx)
2277 RuntimeRC_SOURCES += os2/sys0.asm
2278 endif
2279
2280 if1of ($(KBUILD_TARGET), darwin solaris freebsd)
2281 RuntimeRC_SOURCES += \
2282 common/math/gcc/adddi3.c \
2283 common/math/gcc/anddi3.c \
2284 common/math/gcc/ashldi3.c \
2285 common/math/gcc/ashrdi3.c \
2286 common/math/gcc/cmpdi2.c \
2287 common/math/gcc/divdi3.c \
2288 common/math/gcc/iordi3.c \
2289 common/math/gcc/lshldi3.c \
2290 common/math/gcc/lshrdi3.c \
2291 common/math/gcc/moddi3.c \
2292 common/math/gcc/muldi3.c \
2293 common/math/gcc/negdi2.c \
2294 common/math/gcc/notdi2.c \
2295 common/math/gcc/qdivrem.c \
2296 common/math/gcc/subdi3.c \
2297 common/math/gcc/ucmpdi2.c \
2298 common/math/gcc/udivdi3.c \
2299 common/math/gcc/umoddi3.c \
2300 common/math/gcc/xordi3.c
2301 endif
2302
2303
2304 #
2305 # RuntimeRCStub - Raw-mode context startup stub for Windows.
2306 #
2307 RuntimeRCStub_TEMPLATE = VBoxRc
2308 RuntimeRCStub_SOURCES.win = \
2309 nt/NtProcessStartup-stub.cpp
2310
2311
2312endif # VBOX_WITH_RAW_MODE
2313
2314
2315#
2316# Static library for new & delete for the electric fence.
2317#
2318RuntimeEFCPP_TEMPLATE := $(VBoxRT_TEMPLATE)
2319RuntimeEFCPP_SDKS := $(RuntimeR3_SDKS)
2320RuntimeEFCPP_SDKS.$(KBUILD_TARGET) := $(RuntimeR3_SDKS.$(KBUILD_TARGET))
2321RuntimeEFCPP_DEFS := $(RuntimeR3_DEFS)
2322RuntimeEFCPP_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
2323RuntimeEFCPP_INCS := $(RuntimeR3_INCS)
2324RuntimeEFCPP_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
2325RuntimeEFCPP_SOURCES := r3/alloc-ef-cpp.cpp
2326
2327
2328
2329#
2330# The NTDLL mini import library.
2331#
2332# Note! The reason for doing this is to avoid importing CRT symbols from the
2333# NTDLL. We do not wish to do this because:
2334# - Our compiler is usually a different one and we should use the
2335# matching CRT,
2336# - Older versions of NTDLL may not sport all the exports our w2k3 or
2337# later WINDDK ntdll.lib have and thus we may easily end up with
2338# images that does not load on older windows versions.
2339#
2340if1of (win,$(KBUILD_TARGET) $(KBUILD_HOST))
2341RuntimeR3NtDll-amd64_TEMPLATE = VBoxR3Dll
2342RuntimeR3NtDll-amd64_BLD_TRG_ARCH = amd64
2343RuntimeR3NtDll-amd64_ARFLAGS = /NODEFAULTLIB /MACHINE:amd64
2344RuntimeR3NtDll-amd64_SOURCES = \
2345 r3/win/ntdll-mini-implib.def
2346
2347RuntimeR3NtDll-x86_TEMPLATE = VBoxR3Dll
2348RuntimeR3NtDll-x86_BLD_TRG_ARCH = x86
2349RuntimeR3NtDll-x86_ARFLAGS = /NODEFAULTLIB /MACHINE:x86
2350RuntimeR3NtDll-x86_SOURCES = \
2351 r3/win/ntdll-mini-implib.def \
2352 $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
2353RuntimeR3NtDll-x86_CLEAN = \
2354 $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
2355
2356$$(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm: $(PATH_SUB_CURRENT)/r3/win/ntdll-mini-implib.def | $$(dir $$@)
2357 $(call MSG_GENERATE,,$@,$<)
2358 $(QUIET)$(APPEND) -nt "$@" \
2359 ';Autogenerated, do not edit' \
2360 '%include "iprt/asmdefs.mac"' \
2361 'BEGINCODE' \
2362 '%macro IMPLIB_EXPORT 1' \
2363 'global %1:function' \
2364 '%1: nop' \
2365 '%endm' \
2366 ''
2367 $(QUIET)$(SED) -e '1,/EXPORTS/d' \
2368 -e 's/^.*;;=[[:space:]]*\([^[:space:]]*\)[[:space:]]*$$/IMPLIB_EXPORT \1/' \
2369 $< --append $@
2370endif
2371
2372#
2373# Bag of tricks required for making VCC100 output binaries work on NT4, W2K
2374# early XP and early W2K3.
2375#
2376RuntimeR3VccTricks_TEMPLATE = VBoxR3Dll
2377RuntimeR3VccTricks_SOURCES = \
2378 r3/win/vcc100-kernel32-fakes.cpp \
2379 r3/win/vcc100-kernel32-fakesA.asm
2380
2381
2382#
2383# errmsg.cpp depends on a generated header.
2384#
2385common/err/errmsg.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
2386common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
2387
2388win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h
2389win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
2390
2391# Our COM errors only for R3 libraries on the host
2392define def_errmsgwin_deps
2393 $(lib)_win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
2394 $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
2395 $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
2396endef
2397$(foreach lib,RuntimeR3 RuntimeBldProg VBoxRT VBoxRT-x86,$(eval $(def_errmsgwin_deps)))
2398
2399
2400#
2401# Generate the status code data.
2402#
2403$(IPRT_OUT_DIR)/errmsgdata.h: \
2404 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
2405 $(PATH_ROOT)/include/iprt/err.h \
2406 $(PATH_ROOT)/include/VBox/err.h \
2407 | $$(dir $$@)
2408 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
2409 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
2410
2411## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
2412$(IPRT_OUT_DIR)/errmsgcomdata.h: \
2413 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
2414 $$(PATH_SDK_$(VBOX_WINPSDK)_INC)/WinError.h \
2415 | $$(dir $$@)
2416 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
2417 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
2418
2419$(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts +| $(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
2420 $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
2421 $(VBOX_XIDL_FILE_SRC) \
2422 | $$(dir $$@)
2423 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
2424 $(QUIET)$(VBOX_XSLTPROC) -o $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $< $(filter %.xidl,$^)
2425 $(QUIET)$(CP) --changed -fv $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
2426
2427
2428if "$(KBUILD_TARGET)" == "freebsd"
2429#
2430# FreeBSDGeneratedKernelHeaders - Generate some kernel interface headers.
2431#
2432# These are used by:
2433# - The RTMp* API in IPRT.
2434# - VBoxGuest
2435#
2436# Note! We cannot give a output path to the awk program, it will always
2437# generate the header next to the source. So, we'll have to temporarily copy
2438# the source file to the destination directory to work.
2439#
2440VBOX_AWK := /usr/bin/awk
2441INSTALLS += FreeBSDGeneratedKernelHeaders
2442FreeBSDGeneratedKernelHeaders_INST = gen-sys-hdrs/
2443FreeBSDGeneratedKernelHeaders_SOURCES = \
2444 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h \
2445 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h \
2446 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h
2447FreeBSDGeneratedKernelHeaders_CLEAN = $(FreeBSDGeneratedKernelHeaders_SOURCES)
2448
2449$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h: $(VBOX_FREEBSD_SRC)/kern/bus_if.m | $$(dir $$@)
2450 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
2451 $(QUIET)$(CP) -f $< $(@D)/bus_if.m
2452 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/bus_if.m -h -p
2453 $(QUIET)$(RM) $(@D)/bus_if.m
2454
2455$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h: $(VBOX_FREEBSD_SRC)/kern/device_if.m | $$(dir $$@)
2456 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
2457 $(QUIET)$(CP) -f $< $(@D)/device_if.m
2458 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/device_if.m -h -p
2459 $(QUIET)$(RM) $(@D)/device_if.m
2460
2461$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h: $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m | $$(dir $$@)
2462 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
2463 $(QUIET)$(CP) -f $< $(@D)/pci_if.m
2464 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/pci_if.m -h -p
2465 $(QUIET)$(RM) $(@D)/pci_if.m
2466endif # FreeBSD
2467
2468
2469#
2470# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
2471#
2472ldrELFRelocatable.cpp.o: ldrELF.o
2473ldrELFRelocatable.cpp.obj: ldrELF.obj
2474
2475
2476#
2477# Doxygen documentation.
2478#
2479IPRT_DOXYFILE_INPUT_DIRS = \
2480 $(PATH_ROOT)/include/iprt \
2481 $(PATH_ROOT)/include/iprt/cpp \
2482 $(PATH_ROOT)/include/iprt/linux \
2483 $(PATH_ROOT)/include/iprt/nocrt \
2484 $(PATH_ROOT)/include/iprt/nocrt/x86 \
2485 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
2486 $(PATH_ROOT)/include/iprt/nocrt/compiler \
2487 $(VBOX_PATH_RUNTIME_SRC)/include/internal \
2488 $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
2489 $(VBOX_PATH_RUNTIME_SRC)/common/asm \
2490 $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
2491 $(VBOX_PATH_RUNTIME_SRC)/common/dbg \
2492 $(VBOX_PATH_RUNTIME_SRC)/common/err \
2493 $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
2494 $(VBOX_PATH_RUNTIME_SRC)/common/log \
2495 $(VBOX_PATH_RUNTIME_SRC)/common/math \
2496 $(VBOX_PATH_RUNTIME_SRC)/common/math/amd64 \
2497 $(VBOX_PATH_RUNTIME_SRC)/common/math/gcc \
2498 $(VBOX_PATH_RUNTIME_SRC)/common/math/x86 \
2499 $(VBOX_PATH_RUNTIME_SRC)/common/misc \
2500 $(VBOX_PATH_RUNTIME_SRC)/common/path \
2501 $(VBOX_PATH_RUNTIME_SRC)/common/rand \
2502 $(VBOX_PATH_RUNTIME_SRC)/common/string \
2503 $(VBOX_PATH_RUNTIME_SRC)/common/table \
2504 $(VBOX_PATH_RUNTIME_SRC)/common/time \
2505 $(VBOX_PATH_RUNTIME_SRC)/VBox \
2506 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv,\
2507 $(dir) \
2508 $(dir)/darwin \
2509 $(dir)/haiku \
2510 $(dir)/linux \
2511 $(dir)/nt \
2512 $(dir)/os2 \
2513 $(dir)/solaris \
2514 $(dir)/win \
2515 $(dir)/win32 \
2516 $(dir)/win64 \
2517 $(dir)/generic \
2518 )
2519
2520# These must come first in order to make things look nice.
2521IPRT_DOXYFILE_INPUT_FIRST =\
2522 $(PATH_ROOT)/include/iprt/cdefs.h \
2523 $(PATH_ROOT)/include/iprt/types.h \
2524 $(PATH_ROOT)/include/iprt/runtime.h \
2525 $(PATH_ROOT)/include/iprt/param.h \
2526 $(PATH_ROOT)/include/iprt/assert.h \
2527 $(PATH_ROOT)/include/iprt/asm.h \
2528
2529IPRT_DOXYFILE_INPUT := \
2530 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
2531 $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
2532IPRT_DOXYFILE_INPUT := \
2533 $(IPRT_DOXYFILE_INPUT_FIRST) \
2534 $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT))
2535
2536
2537IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
2538BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
2539
2540includedep $(IPRT_OUT_DIR)/Doxyfile.iprt.dep
2541
2542# Generate the Doxyfile
2543$(IPRT_OUT_DIR)/Doxyfile.iprt: \
2544 $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
2545 $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
2546 $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
2547 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
2548 | $$(dir $$@)
2549 $(RM) -f $@ [email protected] [email protected]
2550 $(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile [email protected]
2551 $(APPEND) [email protected]
2552 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
2553 $(APPEND) [email protected] "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
2554 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"
2555 $(APPEND) [email protected] "INCLUDE_FILE_PATTERNS = *.cpp.h"
2556 $(APPEND) [email protected] "PREDEFINED += $(ARCH_BITS_DEFS)"
2557 $(APPEND) [email protected]
2558 $(APPEND) [email protected] "INPUT = $(IPRT_DOXYFILE_INPUT)"
2559 $(APPEND) [email protected]
2560 $(MV) -f [email protected] $@
2561 @$(APPEND) [email protected] "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
2562 @$(APPEND) [email protected] "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
2563
2564# Do the actual job.
2565$(IPRT_OUT_DIR)/docs.iprt: $(IPRT_OUT_DIR)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) | $(IPRT_DOXYFILE_OUTPUT)/
2566 $(RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt
2567 doxygen $(IPRT_OUT_DIR)/Doxyfile.iprt
2568 $(APPEND) $(IPRT_OUT_DIR)/docs.iprt
2569
2570# aliases
2571docs.iprt: $(IPRT_OUT_DIR)/docs.iprt
2572if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
2573docs: $(IPRT_OUT_DIR)/docs.iprt
2574endif
2575
2576test-doxygen::
2577 @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
2578 @echo $(IPRT_DOXYFILE_OUTPUT)
2579 @echo $(DOXYGEN_OUTPUT_PREV)
2580 @echo $(IPRT_DOXYFILE_INPUT)
2581
2582
2583#
2584# Test mangling.
2585#
2586if1of ($(LIBRARIES),RuntimeR3 RuntimeR0 RuntimeR0Drv RuntimeRC)
2587 test-mangling:: $(IPRT_OUT_DIR)/mangling.run
2588 OTHERS += $(IPRT_OUT_DIR)/mangling.run
2589 CLEANS += $(IPRT_OUT_DIR)/mangling.run
2590 $(IPRT_OUT_DIR)/mangling.run: \
2591 $$(RuntimeR3_1_TARGET) \
2592 $$(RuntimeR0_1_TARGET) \
2593 $$(RuntimeR0Drv_1_TARGET) \
2594 $$(RuntimeRC_1_TARGET)
2595 if1of ($(KBUILD_TARGET), win os2)
2596 $(call MSG_L1,IPRT: skipped mangling test.)
2597 else
2598# Generate a SED script from mangling.h that checks for known symbols.
2599 $(QUIET)$(SED) \
2600 -e '/# *define.*RT_MANGLER/!d' \
2601 -e 's/^.*RT_MANGLER(\([^)][^)]*\)).*$(DOLLAR)/\/^\1$(DOLLAR)\/b ok/' \
2602 $(PATH_ROOT)/include/iprt/mangling.h \
2603 --output "$@"
2604 $(QUIET)$(APPEND) -n '$@' \
2605 ':bad' \
2606 's/^\(.*\)$(DOLLAR)/error: Missing # define \1 /' \
2607 ':bad-pad' \
2608 '/^.\{0,70\}$(DOLLAR)/ { s/$(DOLLAR)/ /; bbad-pad; }' \
2609 's/define \([^ ]*\) \([ ]*\)$(DOLLAR)/define \1 \2RT_MANGLER(\1)/' \
2610 'p' \
2611 $(if-expr !defined(IPRT_IGNORE_TEST_MANGLING),'q 1') \
2612 '' \
2613 ':ok' \
2614 'd'
2615# Find the best way to generate a symbol list and subject it to mangling.h.
2616 if $(intersects $(KBUILD_TARGET), linux) && "$(VBOX_GCC_fvisibility-hidden)"
2617 $(call MSG_L1,IPRT: Testing mangling and visiblity for newer gcc...)
2618 $(QUIET)readelf -Ws $^ \
2619 | $(SED) \
2620 -e 's/[[:space:]]\+/ /g' \
2621 -e '/^ *[[:digit:]]\+:/!d' \
2622 -e 's/^ \+[[:digit:]]\+: \+[[:xdigit:]]\+ \+[[:digit:]]\+ \+//' \
2623 -e '/^SECTION/d' \
2624 -e '/^FILE/d' \
2625 -e 's/^[[:alpha:]]\+ \+//' \
2626 -e '/LOCAL/d' \
2627 -e 's/^[[:alpha:]]\+ \+//' \
2628 -e '/^HIDDEN [[:xdigit:]]\+ RT/bkeep-hidden' \
2629 -e '/^HIDDEN [[:xdigit:]]\+ g_[a-z0-9]*RT/bkeep-hidden' \
2630 -e '/^HIDDEN/d' \
2631 -e ':keep-hidden' \
2632 -e 's/^[[:alpha:]]\+ \+//' \
2633 -e '/^UND/d' \
2634 -e 's/^[[:digit:]]\+ \+//' \
2635 \
2636 -e '/^nocrt_/d' \
2637 -e '/^memchr/d' \
2638 -e '/^memcmp/d' \
2639 -e '/^memcpy/d' \
2640 -e '/^mempcpy/d' \
2641 -e '/^memmove/d' \
2642 -e '/^memset/d' \
2643 -e '/^strchr/d' \
2644 -e '/^strpbrk/d' \
2645 -e '/^_Z7strpbrk/d' \
2646 -e '/^strcmp/d' \
2647 -e '/^strcpy/d' \
2648 -e '/^strncpy/d' \
2649 -e '/^strlen/d' \
2650 -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
2651 -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
2652 \
2653 -e '/^_ZnwjPv/d' \
2654 -e '/^_ZnwmPv/d' \
2655 -e '/^_ZNSt9bad_allocC1Ev/d' \
2656 -e '/^_ZNSt9exceptionC2Ev/d' \
2657 -e '/^_ZNSt9exceptionC[12]ERKS_/d' \
2658 \
2659 -e '/^_ZN[a-zA-Z]*St[[:digit:]]*_*[lL]ist/d' \
2660 -e '/^_ZN[a-zA-Z]*[[:digit:]]*__gnu_cxx/d' \
2661 -e '/^_ZNSa.*ElementNode.*/d' \
2662 -e '/^_ZSt.*ElementNode.*/d' \
2663 \
2664 -e '/^_Z[[:digit:]]\+dbus/d' \
2665 -e '/^_Z13RTDBusLoadLibv/d' \
2666 \
2667 -e '/^VBoxHost_/d'\
2668 -e '/^VBoxGuest_/d'\
2669 | $(SED) -nf "$@"
2670 endif
2671 $(call MSG_L1,IPRT: Testing mangling using nm...)
2672 $(QUIET)nm $^ 2> /dev/null \
2673 | $(SED) -n \
2674 -e 's/^[0-9a-f][0-9a-f]* //' \
2675 -e '/^[TUDB] /!d' \
2676 -e 's/^. //' \
2677 $(if-expr "$(KBUILD_TARGET)" == "darwin" || "$(KBUILD_TARGET)" == "os2" || "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86", \
2678 -e 's/^_//',) \
2679 \
2680 -e '/^g_cchrt/d'\
2681 -e '/^g_frt/d'\
2682 -e '/^g_offrt/d'\
2683 -e '/^g_pfnrt/d'\
2684 -e '/^g_rt/d'\
2685 -e '/^g_szrt/d'\
2686 -e '/^g_ProcessSelf/d'\
2687 -e '/^g_u64ProgramStart/d'\
2688 -e '/^g_enmProcessPriority/d'\
2689 -e '/^g_hDbgModStrCache/d'\
2690 -e '/^g_pfnR0Darwin/d'\
2691 -e '/^g_pDarwinLockGroup/d'\
2692 \
2693 -e '/^RTDBusLoadLib/d' \
2694 \
2695 -e '/^RT/p' \
2696 -e '/^g_/p' \
2697 | $(SED) -nf "$@"
2698 endif
2699endif
2700 $(QUIET)$(APPEND) -t $@
2701
2702if !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_VALIDATIONKIT) && !defined(VBOX_ONLY_DOCS)
2703#
2704# Windows build tool.
2705#
2706BLDPROGS.win += ntBldSymDb
2707ntBldSymDb_TEMPLATE = VBoxAdvBldProg
2708ntBldSymDb_INCS = .
2709ntBldSymDb_SOURCES = r0drv/nt/ntBldSymDb.cpp
2710endif
2711
2712#
2713# Generate the rules (we're the to sub-makefile).
2714#
2715include $(FILE_KBUILD_SUB_FOOTER)
2716
2717
2718#
2719# Aliases for code templates.
2720#
2721rsa-template.o rsa-template.obj: rsa-core.o rsa-asn1-decoder.o rsa-sanity.o rsa-init.o
2722spc-template.o spc-template.obj: spc-core.o spc-asn1-decoder.o spc-sanity.o spc-init.o
2723taf-template.o taf-template.obj: taf-core.o taf-asn1-decoder.o taf-sanity.o taf-init.o
2724x509-template.o x509-template.obj: x509-core.o x509-asn1-decoder.o x509-sanity.o x509-init.o
2725pkcs7-template.o pkcs7-template.obj: pkcs7-core.o pkcs7-asn1-decoder.o pkcs7-sanity.o pkcs7-init.o
2726
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