VirtualBox

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

Last change on this file since 49643 was 49643, checked in by vboxsync, 11 years ago

Additions/linux: back out single bit-count Additions package experiment.

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