VirtualBox

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

Last change on this file since 32083 was 31860, checked in by vboxsync, 14 years ago

RTCoreDumper: integration into IPRT, cleanup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 62.3 KB
Line 
1# $Id: Makefile.kmk 31860 2010-08-23 13:56:17Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT (IPRT).
4#
5
6#
7# Copyright (C) 2006-2010 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 ifdef VBOX_WITH_ADDITION_DRIVERS
36 LIBRARIES += RuntimeGuestR0
37 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
38 LIBRARIES.win.x86 += RuntimeGuestR0NT4
39 endif
40
41else ifdef VBOX_ONLY_TESTSUITE
42 #
43 # Only build the testsuite.
44 #
45 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeR3 RuntimeR0
46 LIBRARIES.win += RuntimeR0Stub
47
48else ifdef VBOX_ONLY_DOCS
49 #
50 # Build docs only - need just regular R3 runtime.
51 #
52 LIBRARIES += RuntimeR3
53 DLLS += VBoxRT
54
55else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_TESTSUITE && !VBOX_ONLY_DOCS
56
57 #
58 # Normal build.
59 #
60 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
61
62 BLDPROGS += uniread
63 LIBRARIES += RuntimeR3 RuntimeR0 RuntimeEFCPP RuntimeR3NoCRTGCC
64 LIBRARIES.win += RuntimeR0Stub
65 ifdef VBOX_WITH_RAW_MODE
66 LIBRARIES += RuntimeRC
67 LIBRARIES.win += RuntimeRCStub
68 endif
69 ifdef VBOX_WITH_VBOXDRV
70 LIBRARIES += RuntimeR0Drv
71 endif
72 ifdef VBOX_WITH_ADDITIONS
73 LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeGuestR3Mini
74 ifdef VBOX_WITH_ADDITION_DRIVERS
75 LIBRARIES += RuntimeGuestR0
76 endif
77 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
78 LIBRARIES.win.x86 += RuntimeGuestR0NT4
79 endif # VBOX_WITH_ADDITIONS
80 LIBRARIES.l4 += RuntimeR3L4 RuntimeLnxHostR3
81 DLLS += VBoxRT
82endif
83
84# Where the generated stuff goes.
85IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
86BLDDIRS += $(IPRT_OUT_DIR)
87OTHER_CLEAN += \
88 $(IPRT_OUT_DIR)/errmsgdata.h \
89 $(IPRT_OUT_DIR)/errmsgcomdata.h \
90 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
91 $(IPRT_OUT_DIR)/Doxyfile.iprt \
92 $(IPRT_OUT_DIR)/Doxyfile.iprt.dep \
93 $(IPRT_OUT_DIR)/docs.iprt
94
95
96#
97# Globals
98#
99VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
100
101
102#
103# Set the defines that buildconfig.cpp needs. Its used by several targets.
104#
105common/misc/buildconfig.cpp_DEFS = \
106 IPRT_BLDCFG_SCM_REV=$(VBOX_SVN_REV) \
107 IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \
108 IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \
109 IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \
110 IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD)
111
112#
113# Unicode Specification reader used to regenerate unidata.cpp.
114#
115uniread_TEMPLATE = VBOXBLDPROG
116uniread_SOURCES = common/string/uniread.cpp
117uniread_INCS = include
118
119#
120# Win64 assembly sources.
121#
122RuntimeWin64ASM_SOURCES = \
123 win/amd64/ASMAtomicBitClear.asm \
124 win/amd64/ASMAtomicBitTestAndToggle.asm \
125 win/amd64/ASMAtomicBitToggle.asm \
126 win/amd64/ASMAtomicReadU64.asm \
127 win/amd64/ASMAtomicXchgU16.asm \
128 win/amd64/ASMAtomicXchgU8.asm \
129 win/amd64/ASMBitFirstClear.asm \
130 win/amd64/ASMBitFirstSet.asm \
131 win/amd64/ASMGetCS.asm \
132 win/amd64/ASMGetDS.asm \
133 win/amd64/ASMGetES.asm \
134 win/amd64/ASMGetFlags.asm \
135 win/amd64/ASMGetFS.asm \
136 win/amd64/ASMGetGS.asm \
137 win/amd64/ASMGetIDTR.asm \
138 win/amd64/ASMGetGDTR.asm \
139 win/amd64/ASMGetTR.asm \
140 win/amd64/ASMGetSS.asm \
141 win/amd64/ASMProbeReadByte.asm \
142 win/amd64/ASMSetFlags.asm \
143 win/amd64/ASMGetDR0.asm \
144 win/amd64/ASMGetDR1.asm \
145 win/amd64/ASMGetDR2.asm \
146 win/amd64/ASMGetDR3.asm \
147 win/amd64/ASMGetDR6.asm \
148 win/amd64/ASMGetDR7.asm \
149 common/asm/ASMAtomicCmpXchgU8.asm \
150 common/asm/ASMMultU64ByU32DivByU32.asm \
151 common/asm/ASMNopPause.asm
152
153#
154# Win32 assembly sources.
155#
156RuntimeWin32ASM_SOURCES = \
157 common/asm/ASMAtomicCmpXchgU8.asm \
158 common/asm/ASMMultU64ByU32DivByU32.asm
159
160#
161# NoCRT sources (minus math stuff).
162#
163if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
164RuntimeNoCrt_SOURCES = \
165 common/misc/setjmp.asm \
166 common/string/memchr.asm \
167 common/string/memcmp.asm \
168 common/string/memcpy.asm \
169 common/string/mempcpy.asm \
170 common/string/memmove.asm \
171 common/string/memset.asm \
172 common/string/strchr.asm \
173 common/string/strcpy.asm \
174 common/string/strcmp.asm \
175 common/string/strlen.asm
176endif
177
178
179#
180# RuntimeR3 - Static Runtime for Ring-3 executables.
181#
182RuntimeR3_TEMPLATE = VBoxR3Static
183RuntimeR3_SDKS = VBOX_LIBXML2 VBOX_BOOST
184RuntimeR3_SDKS.win = WINPSDK $(VBOX_WINDDK)
185RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX RT_NO_GIP
186#RuntimeR3_DEFS += RTMEM_WRAP_TO_EF_APIS
187ifdef IPRT_WITH_KSTUFF
188 RuntimeR3_DEFS += LDR_WITH_KLDR
189endif
190ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
191 RuntimeR3_DEFS += RTCRITSECT_STRICT
192endif
193ifdef IPRT_WITH_LZJB
194 RuntimeR3_DEFS += RTZIP_USE_LZJB
195endif
196ifdef IPRT_WITH_LZO
197 RuntimeR3_DEFS += RTZIP_USE_LZO
198endif
199ifn1of ($(KBUILD_TARGET), win)
200 RuntimeR3_DEFS += RT_WITH_ICONV_CACHE
201endif
202ifdef IPRT_WITH_FUTEX_BASED_SEMS
203 RuntimeR3_DEFS.linux += IPRT_WITH_FUTEX_BASED_SEMS
204endif
205RuntimeR3_INCS = \
206 include \
207 $(SDK_VBOX_ZLIB_INCS)
208RuntimeR3_INCS += \
209 $(PATH_ROOT)/src/libs/liblzf-3.4
210ifdef IPRT_WITH_KSTUFF
211 RuntimeR3_INCS += \
212 $(PATH_ROOT)/src/libs/kStuff/kStuff/include
213endif
214RuntimeR3_INCS.l4 = \
215 $(L4_INCDIR)
216
217# RuntimeR3_INCS.solaris = \
218# /usr/include
219
220RuntimeR3_SOURCES = \
221 common/alloc/alloc.cpp \
222 common/alloc/heapsimple.cpp \
223 common/alloc/heapoffset.cpp \
224 common/alloc/memcache.cpp \
225 common/checksum/adler32.cpp \
226 common/checksum/crc32.cpp \
227 common/checksum/crc64.cpp \
228 common/checksum/md5.cpp \
229 common/checksum/md5str.cpp \
230 common/checksum/ipv4.cpp \
231 common/checksum/ipv6.cpp \
232 common/dbg/dbg.cpp \
233 common/dbg/dbgas.cpp \
234 common/dbg/dbgmod.cpp \
235 common/dbg/dbgmodcontainer.cpp \
236 common/dbg/dbgmodnm.cpp \
237 common/err/errmsg.cpp \
238 common/err/RTErrConvertFromErrno.cpp \
239 common/err/RTErrConvertToErrno.cpp \
240 common/ldr/ldr.cpp \
241 common/ldr/ldrELF.cpp \
242 common/ldr/ldrEx.cpp \
243 common/ldr/ldrFile.cpp \
244 common/ldr/ldrNative.cpp \
245 common/ldr/ldrPE.cpp \
246 common/log/log.cpp \
247 common/log/logellipsis.cpp \
248 common/log/logrel.cpp \
249 common/log/logrelellipsis.cpp \
250 common/log/logcom.cpp \
251 common/log/logformat.cpp \
252 common/misc/RTAssertMsg1Weak.cpp \
253 common/misc/RTAssertMsg2.cpp \
254 common/misc/RTAssertMsg2Add.cpp \
255 common/misc/RTAssertMsg2AddWeak.cpp \
256 common/misc/RTAssertMsg2AddWeakV.cpp \
257 common/misc/RTAssertMsg2Weak.cpp \
258 common/misc/RTAssertMsg2WeakV.cpp \
259 common/misc/RTFileOpenF.cpp \
260 common/misc/RTFileOpenV.cpp \
261 common/misc/RTMemWipeThoroughly.cpp \
262 common/misc/assert.cpp \
263 common/misc/buildconfig.cpp \
264 common/misc/cidr.cpp \
265 common/misc/getopt.cpp \
266 common/misc/getoptargv.cpp \
267 common/misc/handle.cpp \
268 common/misc/handletable.cpp \
269 common/misc/handletablectx.cpp \
270 common/misc/handletablesimple.cpp \
271 common/misc/lockvalidator.cpp \
272 common/misc/message.cpp \
273 common/misc/once.cpp \
274 common/misc/req.cpp \
275 common/misc/sanity-c.c \
276 common/misc/sanity-cpp.cpp \
277 common/misc/semspingpong.cpp \
278 common/misc/sg.cpp \
279 common/misc/thread.cpp \
280 common/misc/zip.cpp \
281 common/misc/term.cpp \
282 common/misc/tar.cpp \
283 common/path/rtPathRootSpecLen.cpp \
284 common/path/rtPathVolumeSpecLen.cpp \
285 common/path/RTPathAbsDup.cpp \
286 common/path/RTPathAbsEx.cpp \
287 common/path/RTPathAbsExDup.cpp \
288 common/path/RTPathAppend.cpp \
289 common/path/RTPathChangeToDosSlashes.cpp \
290 common/path/RTPathChangeToUnixSlashes.cpp \
291 common/path/RTPathCopyComponents.cpp \
292 common/path/RTPathCountComponents.cpp \
293 common/path/RTPathExt.cpp \
294 common/path/RTPathFilename.cpp \
295 common/path/RTPathHaveExt.cpp \
296 common/path/RTPathHavePath.cpp \
297 common/path/RTPathJoin.cpp \
298 common/path/RTPathParse.cpp \
299 common/path/RTPathRealDup.cpp \
300 common/path/RTPathStripExt.cpp \
301 common/path/RTPathStripFilename.cpp \
302 common/path/RTPathStripTrailingSlash.cpp \
303 common/path/RTPathTraverseList.cpp \
304 common/path/comparepaths.cpp \
305 common/rand/rand.cpp \
306 common/rand/randadv.cpp \
307 common/rand/randparkmiller.cpp \
308 common/sort/RTSortIsSorted.cpp \
309 common/sort/RTSortApvIsSorted.cpp \
310 common/sort/shellsort.cpp \
311 common/string/RTStrCmp.cpp \
312 common/string/RTStrConvertHexBytes.cpp \
313 common/string/RTStrCopy.cpp \
314 common/string/RTStrCopyEx.cpp \
315 common/string/RTStrNCmp.cpp \
316 common/string/RTStrNLen.cpp \
317 common/string/RTStrNLenEx.cpp \
318 common/string/RTStrPrintHexBytes.cpp \
319 common/string/RTStrStr.cpp \
320 common/string/base64.cpp \
321 common/string/simplepattern.cpp \
322 common/string/straprintf.cpp \
323 common/string/strformat.cpp \
324 common/string/strformatrt.cpp \
325 common/string/strformattype.cpp \
326 common/string/stringalloc.cpp \
327 common/string/strprintf.cpp \
328 common/string/strspace.cpp \
329 common/string/strstrip.cpp \
330 common/string/strtonum.cpp \
331 common/string/strversion.cpp \
332 common/string/uni.cpp \
333 common/string/unidata.cpp \
334 common/string/utf-16.cpp \
335 common/string/utf-8.cpp \
336 common/string/utf-8-case.cpp \
337 common/string/ministring.cpp \
338 common/table/avlgcptr.cpp \
339 common/table/avlhcphys.cpp \
340 common/table/avllu32.cpp \
341 common/table/avlou32.cpp \
342 common/table/avlogcphys.cpp \
343 common/table/avlogcptr.cpp \
344 common/table/avlohcphys.cpp \
345 common/table/avloioport.cpp \
346 common/table/avlpv.cpp \
347 common/table/avlrgcptr.cpp \
348 common/table/avlrogcphys.cpp \
349 common/table/avlrogcptr.cpp \
350 common/table/avlroioport.cpp \
351 common/table/avlroogcptr.cpp \
352 common/table/avlruintptr.cpp \
353 common/table/avlrfoff.cpp \
354 common/table/avlu32.cpp \
355 common/table/avluintptr.cpp \
356 common/table/avlul.cpp \
357 common/table/table.cpp \
358 common/time/time.cpp \
359 common/time/timeprog.cpp \
360 common/time/timesup.cpp \
361 generic/critsect-generic.cpp \
362 generic/env-generic.cpp \
363 generic/RTDirCreateTemp-generic.cpp \
364 generic/RTEnvDupEx-generic.cpp \
365 generic/RTFileCopy-generic.cpp \
366 generic/RTFileQuerySize-generic.cpp \
367 generic/RTFileReadAll-generic.cpp \
368 generic/RTFileReadAllEx-generic.cpp \
369 generic/RTFileReadAllByHandle-generic.cpp \
370 generic/RTFileReadAllByHandleEx-generic.cpp \
371 generic/RTFileReadAllFree-generic.cpp \
372 generic/RTLogWriteStdErr-generic.cpp \
373 generic/RTLogWriteStdOut-generic.cpp \
374 generic/RTLogWriteUser-generic.cpp \
375 generic/RTTimerLRCreate-generic.cpp \
376 generic/mempool-generic.cpp \
377 generic/semfastmutex-generic.cpp \
378 generic/semxroads-generic.cpp \
379 generic/spinlock-generic.cpp \
380 generic/strcache-stubs-generic.cpp \
381 generic/timerlr-generic.cpp \
382 r3/alloc-ef.cpp \
383 r3/alloc.cpp \
384 r3/dir.cpp \
385 r3/fileio.cpp \
386 r3/fs.cpp \
387 r3/init.cpp \
388 r3/path.cpp \
389 r3/process.cpp \
390 r3/socket.cpp \
391 r3/stream.cpp \
392 r3/test.cpp \
393 r3/testi.cpp \
394 r3/tcp.cpp \
395 r3/generic/semspinmutex-r3-generic.cpp
396
397#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
398# RuntimeR3_SOURCES += common/time/timesupA.asm
399#else
400 RuntimeR3_SOURCES += common/time/timesupref.cpp
401#endif
402
403RuntimeR3_SOURCES.x86 += \
404 generic/RTMpGetDescription-generic.cpp
405RuntimeR3_SOURCES.amd64 += \
406 generic/RTMpGetDescription-generic.cpp
407RuntimeR3_SOURCES.sparc32 += \
408 generic/RTMpGetDescription-generic-stub.cpp \
409 common/asm/asm-fake.cpp
410RuntimeR3_SOURCES.sparc64 += \
411 generic/RTMpGetDescription-generic-stub.cpp \
412 common/asm/asm-fake.cpp
413
414ifdef IPRT_WITH_LZJB
415 RuntimeR3_SOURCES += common/misc/lzjb.c
416endif
417
418# Some versions of GCC might require this.
419RuntimeR3_SOURCES.x86 += \
420 common/asm/ASMAtomicXchgU64.asm \
421 common/asm/ASMAtomicCmpXchgU64.asm \
422 common/asm/ASMAtomicCmpXchgExU64.asm \
423 common/asm/ASMAtomicReadU64.asm \
424 common/asm/ASMAtomicUoReadU64.asm
425
426ifdef IPRT_WITH_KSTUFF
427 RuntimeR3_SOURCES += \
428 common/ldr/ldrkStuff.cpp
429endif
430
431# VBox specific stuff.
432RuntimeR3_SOURCES += \
433 VBox/RTAssertShouldPanic-vbox.cpp \
434 VBox/log-vbox.cpp
435ifneq ($(KBUILD_TARGET),win)
436RuntimeR3_SOURCES += \
437 common/err/errmsgxpcom.cpp
438endif
439if1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris)
440RuntimeR3_SOURCES += \
441 $(if $(VBOX_WITH_DBUS),VBox/dbus.cpp,)
442endif
443
444RuntimeR3_SOURCES.win = \
445 generic/RTDirExists-generic.cpp \
446 generic/RTDirQueryInfo-generic.cpp \
447 generic/RTDirSetTimes-generic.cpp \
448 generic/RTFileExists-generic.cpp \
449 generic/RTMpGetCurFrequency-generic.cpp \
450 generic/RTMpGetMaxFrequency-generic.cpp \
451 generic/RTRandAdvCreateSystemFaster-generic.cpp \
452 generic/RTRandAdvCreateSystemTruer-generic.cpp \
453 generic/RTSemEventWait-generic.cpp \
454 generic/RTSemEventMultiWait-generic.cpp \
455 generic/RTSemMutexRequest-generic.cpp \
456 generic/RTSemMutexRequestDebug-generic.cpp \
457 generic/mppresent-generic.cpp \
458 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
459 generic/uuid-generic.cpp \
460 generic/RTProcDaemonize-generic.cpp \
461 generic/RTProcIsRunningByName-generic.cpp \
462 generic/RTThreadGetNativeState-generic.cpp \
463 nt/RTErrConvertFromNtStatus.cpp \
464 r3/posix/env-posix.cpp \
465 r3/win/RTSystemQueryOSInfo-win.cpp \
466 r3/win/RTSystemQueryDmiString-win.cpp \
467 r3/win/alloc-win.cpp \
468 r3/win/dir-win.cpp \
469 r3/win/fileio-win.cpp \
470 r3/win/fs-win.cpp \
471 r3/win/ldrNative-win.cpp \
472 r3/win/localipc-win.cpp \
473 r3/win/mp-win.cpp \
474 r3/win/path-win.cpp \
475 r3/win/pipe-win.cpp \
476 r3/win/poll-win.cpp \
477 r3/win/process-win.cpp \
478 r3/win/RTLogWriteDebugger-win.cpp \
479 r3/win/rtProcInitExePath-win.cpp \
480 r3/win/sched-win.cpp \
481 r3/win/semevent-win.cpp \
482 r3/win/semeventmulti-win.cpp \
483 r3/win/semmutex-win.cpp \
484 r3/win/rtFileNativeSetAttributes-win.cpp \
485 r3/win/thread-win.cpp \
486 r3/win/time-win.cpp \
487 r3/win/timer-win.cpp \
488 r3/win/tls-win.cpp \
489 r3/win/utf16locale-win.cpp \
490 r3/win/utf8-win.cpp \
491 r3/win/RTUuidCreate-win.cpp \
492 win/errmsgwin.cpp \
493 win/RTErrConvertFromWin32.cpp
494
495RuntimeR3_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
496RuntimeR3_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
497
498RuntimeR3_SOURCES.linux = \
499 generic/RTDirQueryInfo-generic.cpp \
500 generic/RTDirSetTimes-generic.cpp \
501 generic/RTFileMove-generic.cpp \
502 generic/RTLogWriteDebugger-generic.cpp \
503 generic/RTProcDaemonize-generic.cpp \
504 generic/RTTimeLocalNow-generic.cpp \
505 generic/RTTimerCreate-generic.cpp \
506 generic/RTUuidCreate-generic.cpp \
507 generic/mppresent-generic.cpp \
508 generic/utf16locale-generic.cpp \
509 generic/uuid-generic.cpp \
510 r3/linux/RTThreadGetNativeState-linux.cpp \
511 r3/linux/mp-linux.cpp \
512 r3/linux/rtProcInitExePath-linux.cpp \
513 r3/linux/sched-linux.cpp \
514 r3/linux/sysfs.cpp \
515 r3/linux/time-linux.cpp \
516 r3/linux/RTProcIsRunningByName-linux.cpp \
517 r3/linux/RTSystemQueryDmiString-linux.cpp \
518 r3/posix/RTFileQueryFsSizes-posix.cpp \
519 r3/posix/RTSystemQueryOSInfo-posix.cpp \
520 r3/posix/alloc-posix.cpp \
521 r3/posix/dir-posix.cpp \
522 r3/posix/env-posix.cpp \
523 r3/posix/fileio-posix.cpp \
524 r3/posix/filelock-posix.cpp \
525 r3/posix/fs-posix.cpp \
526 r3/posix/ldrNative-posix.cpp \
527 r3/posix/path-posix.cpp \
528 r3/posix/pathhost-posix.cpp \
529 r3/posix/pipe-posix.cpp \
530 r3/posix/poll-posix.cpp \
531 r3/posix/process-posix.cpp \
532 r3/posix/rand-posix.cpp \
533 r3/posix/RTTimeNow-posix.cpp \
534 r3/posix/RTTimeSet-posix.cpp \
535 r3/posix/semrw-posix.cpp \
536 r3/posix/thread-posix.cpp \
537 r3/posix/timelocal-posix.cpp \
538 r3/posix/timer-posix.cpp \
539 r3/posix/tls-posix.cpp \
540 r3/posix/utf8-posix.cpp
541ifdef IPRT_WITH_FUTEX_BASED_SEMS
542 RuntimeR3_SOURCES.linux += \
543 r3/linux/semevent-linux.cpp \
544 r3/linux/semeventmulti-linux.cpp \
545 r3/linux/semmutex-linux.cpp
546else
547 RuntimeR3_SOURCES.linux.x86 += \
548 r3/posix/semevent-posix.cpp \
549 r3/posix/semeventmulti-posix.cpp \
550 r3/posix/semmutex-posix.cpp
551 RuntimeR3_SOURCES.linux.amd64 += \
552 r3/linux/semevent-linux.cpp \
553 r3/linux/semeventmulti-linux.cpp
554 ifdef RT_NEW_LINUX_MUTEX_CODE
555 RuntimeR3_SOURCES.linux.amd64 += \
556 r3/linux/semmutex-linux.cpp
557 else
558 RuntimeR3_SOURCES.linux.amd64 += \
559 r3/posix/semmutex-posix.cpp
560 endif
561endif
562
563RuntimeR3_SOURCES.os2 = \
564 generic/RTDirQueryInfo-generic.cpp \
565 generic/RTDirSetTimes-generic.cpp \
566 generic/RTFileMove-generic.cpp \
567 generic/RTLogWriteDebugger-generic.cpp \
568 generic/RTProcDaemonize-generic.cpp \
569 generic/RTRandAdvCreateSystemFaster-generic.cpp \
570 generic/RTRandAdvCreateSystemTruer-generic.cpp \
571 generic/RTSystemQueryDmiString-generic.cpp \
572 generic/RTTimeLocalNow-generic.cpp \
573 generic/RTTimerCreate-generic.cpp \
574 generic/RTUuidCreate-generic.cpp \
575 generic/mppresent-generic.cpp \
576 generic/RTSemEventWait-generic.cpp \
577 generic/RTSemEventMultiWait-generic.cpp \
578 generic/RTSemMutexRequest-generic.cpp \
579 generic/RTSemMutexRequestDebug-generic.cpp \
580 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
581 generic/timer-generic.cpp \
582 generic/utf16locale-generic.cpp \
583 generic/uuid-generic.cpp \
584 generic/RTMpGetCurFrequency-generic.cpp \
585 generic/RTMpGetMaxFrequency-generic.cpp \
586 generic/RTProcIsRunningByName-generic.cpp \
587 generic/RTThreadGetNativeState-generic.cpp \
588 os2/RTErrConvertFromOS2.cpp \
589 r3/os2/filelock-os2.cpp \
590 r3/os2/mp-os2.cpp \
591 r3/os2/pipe-os2.cpp \
592 r3/os2/poll-os2.cpp \
593 r3/os2/rtProcInitExePath-os2.cpp \
594 r3/os2/sched-os2.cpp \
595 r3/os2/sems-os2.cpp \
596 r3/os2/thread-os2.cpp \
597 r3/os2/time-os2.cpp \
598 r3/posix/RTFileQueryFsSizes-posix.cpp \
599 r3/posix/RTSystemQueryOSInfo-posix.cpp \
600 r3/posix/alloc-posix.cpp \
601 r3/posix/dir-posix.cpp \
602 r3/posix/env-posix.cpp \
603 r3/posix/fileio-posix.cpp \
604 r3/posix/fs-posix.cpp \
605 r3/posix/ldrNative-posix.cpp \
606 r3/posix/path-posix.cpp \
607 r3/posix/pathhost-posix.cpp \
608 r3/posix/process-posix.cpp \
609 r3/posix/RTTimeNow-posix.cpp \
610 r3/posix/RTTimeSet-posix.cpp \
611 r3/posix/timelocal-posix.cpp \
612 r3/posix/utf8-posix.cpp
613
614RuntimeR3_SOURCES.darwin = \
615 darwin/RTErrConvertFromDarwin.cpp \
616 darwin/RTErrConvertFromDarwinCOM.cpp \
617 darwin/RTErrConvertFromDarwinIO.cpp \
618 darwin/RTErrConvertFromDarwinKern.cpp \
619 generic/RTDirQueryInfo-generic.cpp \
620 generic/RTDirSetTimes-generic.cpp \
621 generic/RTFileMove-generic.cpp \
622 generic/RTLogWriteDebugger-generic.cpp \
623 generic/RTProcDaemonize-generic.cpp \
624 generic/RTTimeLocalNow-generic.cpp \
625 generic/RTTimerCreate-generic.cpp \
626 generic/RTUuidCreate-generic.cpp \
627 generic/mppresent-generic.cpp \
628 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
629 generic/timer-generic.cpp \
630 generic/utf16locale-generic.cpp \
631 generic/uuid-generic.cpp\
632 generic/RTProcIsRunningByName-generic.cpp \
633 generic/RTThreadGetNativeState-generic.cpp \
634 r3/darwin/alloc-darwin.cpp \
635 r3/darwin/filelock-darwin.cpp \
636 r3/darwin/mp-darwin.cpp \
637 r3/darwin/pathhost-darwin.cpp \
638 r3/darwin/rtProcInitExePath-darwin.cpp \
639 r3/darwin/RTSystemQueryDmiString-darwin.cpp \
640 r3/darwin/sched-darwin.cpp \
641 r3/darwin/time-darwin.cpp \
642 r3/posix/RTFileQueryFsSizes-posix.cpp \
643 r3/posix/RTSystemQueryOSInfo-posix.cpp \
644 r3/posix/RTTimeSet-posix.cpp \
645 r3/posix/dir-posix.cpp \
646 r3/posix/env-posix.cpp \
647 r3/posix/fileio-posix.cpp \
648 r3/posix/fs-posix.cpp \
649 r3/posix/ldrNative-posix.cpp \
650 r3/posix/path-posix.cpp \
651 r3/posix/pipe-posix.cpp \
652 r3/posix/poll-posix.cpp \
653 r3/posix/process-posix.cpp \
654 r3/posix/rand-posix.cpp \
655 r3/posix/semevent-posix.cpp \
656 r3/posix/semeventmulti-posix.cpp \
657 r3/posix/semmutex-posix.cpp \
658 r3/posix/thread-posix.cpp \
659 r3/posix/timelocal-posix.cpp \
660 r3/posix/tls-posix.cpp \
661 r3/posix/utf8-posix.cpp
662
663## @todo Make BSD sched, implement RTMP*.
664RuntimeR3_SOURCES.freebsd = \
665 generic/RTDirQueryInfo-generic.cpp \
666 generic/RTDirSetTimes-generic.cpp \
667 generic/RTFileMove-generic.cpp \
668 generic/RTLogWriteDebugger-generic.cpp \
669 generic/RTSystemQueryDmiString-generic.cpp \
670 generic/RTTimeLocalNow-generic.cpp \
671 generic/RTTimerCreate-generic.cpp \
672 generic/RTUuidCreate-generic.cpp \
673 generic/mppresent-generic.cpp \
674 generic/sched-generic.cpp \
675 generic/utf16locale-generic.cpp \
676 generic/uuid-generic.cpp \
677 generic/RTMpCpuId-generic.cpp \
678 generic/RTMpCpuIdFromSetIndex-generic.cpp \
679 generic/RTMpCpuIdToSetIndex-generic.cpp \
680 generic/RTMpIsCpuPossible-generic.cpp \
681 generic/RTMpGetMaxCpuId-generic.cpp \
682 generic/RTMpGetOnlineSet-generic.cpp \
683 generic/RTMpGetSet-generic.cpp \
684 generic/RTMpIsCpuOnline-generic.cpp \
685 generic/RTProcDaemonize-generic.cpp \
686 generic/RTProcIsRunningByName-generic.cpp \
687 generic/RTThreadGetNativeState-generic.cpp \
688 r3/freebsd/mp-freebsd.cpp \
689 r3/freebsd/alloc-freebsd.cpp \
690 r3/freebsd/rtProcInitExePath-freebsd.cpp \
691 r3/posix/RTFileQueryFsSizes-posix.cpp \
692 r3/posix/RTSystemQueryOSInfo-posix.cpp \
693 r3/posix/dir-posix.cpp \
694 r3/posix/env-posix.cpp \
695 r3/posix/fileio-posix.cpp \
696 r3/posix/filelock-posix.cpp \
697 r3/posix/fs-posix.cpp \
698 r3/posix/ldrNative-posix.cpp \
699 r3/posix/path-posix.cpp \
700 r3/posix/pathhost-posix.cpp \
701 r3/posix/pipe-posix.cpp \
702 r3/posix/poll-posix.cpp \
703 r3/posix/process-posix.cpp \
704 r3/posix/rand-posix.cpp \
705 r3/posix/RTMpGetCount-posix.cpp \
706 r3/posix/RTTimeNow-posix.cpp \
707 r3/posix/RTTimeSet-posix.cpp \
708 r3/posix/semevent-posix.cpp \
709 r3/posix/semeventmulti-posix.cpp \
710 r3/posix/semmutex-posix.cpp \
711 r3/posix/semrw-posix.cpp \
712 r3/posix/thread-posix.cpp \
713 r3/posix/time-posix.cpp \
714 r3/posix/timelocal-posix.cpp \
715 r3/posix/timer-posix.cpp \
716 r3/posix/tls-posix.cpp \
717 r3/posix/utf8-posix.cpp
718
719RuntimeR3_SOURCES.solaris = \
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/RTProcIsRunningByName-generic.cpp \
726 generic/RTTimeLocalNow-generic.cpp \
727 generic/RTTimerCreate-generic.cpp \
728 generic/RTUuidCreate-generic.cpp \
729 generic/sched-generic.cpp \
730 generic/utf16locale-generic.cpp \
731 generic/uuid-generic.cpp \
732 generic/RTThreadGetNativeState-generic.cpp \
733 r3/posix/RTFileQueryFsSizes-posix.cpp \
734 r3/posix/RTSystemQueryOSInfo-posix.cpp \
735 r3/posix/dir-posix.cpp \
736 r3/posix/env-posix.cpp \
737 r3/posix/fileio-posix.cpp \
738 r3/posix/filelock-posix.cpp \
739 r3/posix/fs-posix.cpp \
740 r3/posix/ldrNative-posix.cpp \
741 r3/posix/path-posix.cpp \
742 r3/posix/pathhost-posix.cpp \
743 r3/posix/pipe-posix.cpp \
744 r3/posix/poll-posix.cpp \
745 r3/posix/process-posix.cpp \
746 r3/posix/rand-posix.cpp \
747 r3/posix/RTTimeNow-posix.cpp \
748 r3/posix/RTTimeSet-posix.cpp \
749 r3/posix/semevent-posix.cpp \
750 r3/posix/semeventmulti-posix.cpp \
751 r3/posix/semmutex-posix.cpp \
752 r3/posix/semrw-posix.cpp \
753 r3/posix/thread-posix.cpp \
754 r3/posix/time-posix.cpp \
755 r3/posix/timelocal-posix.cpp \
756 r3/posix/timer-posix.cpp \
757 r3/posix/tls-posix.cpp \
758 r3/posix/utf8-posix.cpp \
759 r3/solaris/alloc-solaris.cpp \
760 r3/solaris/mp-solaris.cpp \
761 r3/solaris/coredumper-solaris.cpp \
762 r3/solaris/rtProcInitExePath-solaris.cpp
763RuntimeR3_SOURCES.solaris.amd64 = \
764 r3/solaris/RTSystemQueryDmiString-solaris.cpp
765RuntimeR3_SOURCES.solaris.x86 = \
766 r3/solaris/RTSystemQueryDmiString-solaris.cpp
767RuntimeR3_SOURCES.solaris.sparc32 = \
768 generic/RTSystemQueryDmiString-generic.cpp
769RuntimeR3_SOURCES.solaris.sparc64 = \
770 generic/RTSystemQueryDmiString-generic.cpp
771
772## PORTME: Porters add their selection of platform specific files for Ring-3 here.
773
774
775#
776# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
777#
778RuntimeR3L4_TEMPLATE = VBOXR3NP
779RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
780ifneq ($(KBUILD_TARGET_ARCH),amd64)
781RuntimeR3L4_DEFS += __PIC__
782endif
783RuntimeR3L4_INCS = \
784 include \
785 $(L4_INCDIR)
786
787RuntimeR3L4_SOURCES = \
788 generic/fs-stubs-generic.cpp \
789 generic/pathhost-generic.cpp \
790 generic/RTDirQueryInfo-generic.cpp \
791 generic/RTDirSetTimes-generic.cpp \
792 generic/RTFileMove-generic.cpp \
793 generic/RTLogWriteDebugger-generic.cpp \
794 generic/RTProcDaemonize-generic.cpp \
795 generic/RTSystemQueryOSInfo-generic.cpp \
796 generic/RTSystemQueryDmiString-generic.cpp \
797 generic/RTTimeLocalNow-generic.cpp \
798 generic/RTUuidCreate-generic.cpp \
799 generic/mppresent-generic.cpp \
800 generic/sched-generic.cpp \
801 generic/RTSemEventWait-generic.cpp \
802 generic/RTSemEventMultiWait-generic.cpp \
803 generic/RTSemMutexRequest-generic.cpp \
804 generic/RTSemMutexRequestDebug-generic.cpp \
805 generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
806 generic/utf16locale-generic.cpp \
807 generic/uuid-generic.cpp \
808 generic/RTProcIsRunningByName-generic.cpp \
809 generic/RTThreadGetNativeState-generic.cpp \
810 l4/l4-errno.cpp \
811 l4/rtProcInitExePath-l4.cpp \
812 l4/process-l4env.cpp \
813 l4/sems-l4env.cpp \
814 l4/thread-l4env.cpp \
815 l4/timer-l4env.cpp \
816 l4/utf8-l4env.cpp \
817 r3/posix/RTFileQueryFsSizes-posix.cpp \
818 r3/posix/alloc-posix.cpp \
819 r3/posix/dir-posix.cpp \
820 r3/posix/env-posix.cpp \
821 r3/posix/fileio-posix.cpp \
822 r3/posix/filelock-posix.cpp \
823 r3/posix/ldrNative-posix.cpp \
824 r3/posix/path-posix.cpp \
825 r3/posix/rand-posix.cpp \
826 r3/posix/RTTimeNow-posix.cpp \
827 r3/posix/RTTimeSet-posix.cpp \
828 r3/posix/time-posix.cpp \
829 r3/posix/timelocal-posix.cpp
830
831
832#
833# RuntimeGuestR3 - Guest Additions Runtime (static/exe).
834# (The KBUILD_HOST inheritance here is for l4 cross building the linux
835# additions, while .x86 is for cross building x86 while targeting amd64.)
836#
837RuntimeGuestR3_TEMPLATE := VBOXGUESTR3LIB
838## @todo change this to EXTEND the RuntimeR3 target.
839RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
840RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT RT_NO_GIP, $(RuntimeR3_DEFS))
841RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
842RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
843RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
844RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
845RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
846RuntimeGuestR3_SOURCES := $(filter-out \
847 common/time/timesupref.cpp \
848 common/time/timesupA.asm \
849 common/time/timesup.cpp \
850 generic/RTLogWriteUser-generic.cpp \
851 , $(RuntimeR3_SOURCES))
852RuntimeGuestR3_SOURCES += \
853 common/time/timesysalias.cpp \
854 VBox/logbackdoor.cpp
855RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
856RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
857RuntimeGuestR3_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
858RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
859RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))
860
861
862#
863# RuntimeGuestR3Shared - Guest Additions Runtime (static/dll).
864#
865RuntimeGuestR3Shared_TEMPLATE := VBOXGUESTR3DLL
866RuntimeGuestR3Shared_EXTENDS := RuntimeGuestR3
867RuntimeGuestR3Shared_INST = $(INST_ADDITIONS_LIB)
868
869
870#
871# RuntimeGuestR3Mini - Minimal Guest Additions Runtime which does not require
872# initialization and can be linked into an .so. Intended
873# for X11 drivers, GRADD and similar.
874#
875RuntimeGuestR3Mini_TEMPLATE := VBOXGUESTR3DLL
876## @todo change this to EXTEND the RuntimeGuestR3 target.
877RuntimeGuestR3Mini_INST := $(INST_ADDITIONS_LIB)
878RuntimeGuestR3Mini_SDKS.win := $(RuntimeR3_SDKS.win)
879RuntimeGuestR3Mini_DEFS := \
880 $(filter-out RTCRITSECT_STRICT RT_NO_GIP RT_WITH_ICONV_CACHE, $(RuntimeR3_DEFS)) \
881 RT_MINI
882RuntimeGuestR3Mini_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
883RuntimeGuestR3Mini_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
884RuntimeGuestR3Mini_INCS := $(RuntimeR3_INCS)
885RuntimeGuestR3Mini_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
886RuntimeGuestR3Mini_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
887RuntimeGuestR3Mini_SOURCES = \
888 common/alloc/alloc.cpp \
889 common/err/errmsg.cpp \
890 common/err/errmsgxpcom.cpp \
891 common/err/RTErrConvertFromErrno.cpp \
892 common/log/logformat.cpp \
893 common/misc/RTAssertMsg1Weak.cpp \
894 common/misc/RTAssertMsg2.cpp \
895 common/misc/RTAssertMsg2Add.cpp \
896 common/misc/RTAssertMsg2AddWeak.cpp \
897 common/misc/RTAssertMsg2AddWeakV.cpp \
898 common/misc/RTAssertMsg2Weak.cpp \
899 common/misc/RTAssertMsg2WeakV.cpp \
900 common/misc/assert.cpp \
901 common/misc/buildconfig.cpp \
902 common/misc/sanity-c.c \
903 common/misc/sanity-cpp.cpp \
904 common/path/rtPathVolumeSpecLen.cpp \
905 common/path/RTPathAbsDup.cpp \
906 common/path/RTPathAbsEx.cpp \
907 common/path/RTPathAbsExDup.cpp \
908 common/path/RTPathAppend.cpp \
909 common/path/RTPathExt.cpp \
910 common/path/RTPathFilename.cpp \
911 common/path/RTPathHaveExt.cpp \
912 common/path/RTPathHavePath.cpp \
913 common/path/RTPathJoin.cpp \
914 common/path/RTPathParse.cpp \
915 common/path/RTPathRealDup.cpp \
916 common/path/RTPathStripExt.cpp \
917 common/path/RTPathStripFilename.cpp \
918 common/path/RTPathStripTrailingSlash.cpp \
919 common/string/RTStrCmp.cpp \
920 common/string/RTStrCopy.cpp \
921 common/string/RTStrCopyEx.cpp \
922 common/string/RTStrNCmp.cpp \
923 common/string/RTStrNLen.cpp \
924 common/string/RTStrNLenEx.cpp \
925 common/string/RTStrStr.cpp \
926 common/string/straprintf.cpp \
927 common/string/strformat.cpp \
928 common/string/strformatrt.cpp \
929 common/string/strformattype.cpp \
930 common/string/stringalloc.cpp \
931 common/string/strprintf.cpp \
932 common/string/strtonum.cpp \
933 common/string/unidata.cpp \
934 common/string/utf-8.cpp \
935 common/string/utf-8-case.cpp \
936 common/string/utf-16.cpp \
937 common/table/avlpv.cpp \
938 generic/pathhost-generic.cpp \
939 generic/RTAssertShouldPanic-generic.cpp \
940 r3/alloc.cpp \
941 r3/alloc-ef.cpp \
942 r3/fileio.cpp \
943 r3/fs.cpp
944RuntimeGuestR3Mini_SOURCES.freebsd = \
945 r3/posix/alloc-posix.cpp \
946 r3/posix/env-posix.cpp \
947 r3/posix/fileio-posix.cpp \
948 r3/posix/path-posix.cpp \
949 r3/posix/utf8-posix.cpp
950RuntimeGuestR3Mini_SOURCES.linux = \
951 r3/posix/alloc-posix.cpp \
952 r3/posix/env-posix.cpp \
953 r3/posix/fileio-posix.cpp \
954 r3/posix/path-posix.cpp \
955 r3/posix/utf8-posix.cpp
956RuntimeGuestR3Mini_SOURCES.solaris = \
957 r3/posix/alloc-posix.cpp \
958 r3/posix/env-posix.cpp \
959 r3/posix/fileio-posix.cpp \
960 r3/posix/path-posix.cpp \
961 r3/posix/utf8-posix.cpp
962RuntimeGuestR3Mini_SOURCES.win = \
963 r3/win/alloc-win.cpp \
964 r3/win/fileio-win.cpp \
965 r3/win/path-win.cpp \
966 r3/win/utf8-win.cpp \
967 win/errmsgwin.cpp \
968 win/RTErrConvertFromWin32.cpp
969
970# VBox specific stuff.
971RuntimeGuestR3Mini_SOURCES += \
972 VBox/logbackdoor.cpp \
973 VBox/logbackdoor-redirect.cpp
974
975
976#
977# RuntimeLnxHostR3 Linux host program runtime
978# (Only used when building L4.)
979#
980RuntimeLnxHostR3_TEMPLATE = VBOXLNXHOSTR3LIB
981RuntimeLnxHostR3_DEFS = IN_RT_R3 IN_SUP_R3 RT_WITH_VBOX RT_NO_GIP
982RuntimeLnxHostR3_SOURCES = \
983 $(RuntimeR3_SOURCES.linux.$(KBUILD_TARGET_ARCH)) \
984 $(RuntimeR3_SOURCES.linux) \
985 $(RuntimeR3_SOURCES)
986RuntimeLnxHostR3_INCS = \
987 $(RuntimeR3_INCS.linux.$(KBUILD_TARGET_ARCH)) \
988 $(RuntimeR3_INCS.linux) \
989 $(RuntimeR3_INCS)
990
991
992#
993# VBoxRT - Shared Object / DLL version.
994#
995VBoxRT_TEMPLATE = VBoxR3Dll
996VBoxRT_SDKS = VBOX_OPENSSL VBOX_LIBXML2 VBOX_BOOST
997ifdef VBOX_WITH_LIBCURL
998 VBoxRT_SDKS += VBOX_LIBCURL
999endif
1000VBoxRT_SDKS.win = WINPSDK $(VBOX_WINDDK) VBOX_NTDLL
1001if1of ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING), darwin win)
1002VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
1003endif
1004VBoxRT_DEFS = $(filter-out RT_NO_GIP,$(RuntimeR3_DEFS)) IN_SUP_R3 IN_SUP_R3
1005ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1006 VBoxRT_DEFS += RT_NO_GIP
1007endif
1008VBoxRT_DEFS.$(KBUILD_TYPE) = $(RuntimeR3_DEFS.$(KBUILD_TYPE))
1009VBoxRT_SOURCES = \
1010 VBox/VBoxRTDeps.cpp \
1011 $(filter-out common/checksum/crc32.cpp, $(RuntimeR3_SOURCES))
1012VBoxRT_SOURCES += \
1013 r3/xml.cpp \
1014 common/checksum/RTSha1Digest.cpp \
1015 common/checksum/crc32-zlib.cpp \
1016 common/checksum/manifest.cpp \
1017 common/checksum/sha1.cpp \
1018 common/checksum/sha1str.cpp \
1019 common/checksum/sha256.cpp \
1020 common/checksum/sha256str.cpp \
1021 common/checksum/sha512.cpp \
1022 common/checksum/sha512str.cpp
1023ifdef VBOX_WITH_LIBCURL
1024 VBoxRT_SOURCES += common/misc/s3.cpp
1025endif
1026VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
1027VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
1028VBoxRT_SOURCES.$(KBUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
1029VBoxRT_SOURCES.win += \
1030 r3/win/dllmain-win.cpp \
1031 r3/win/fileaio-win.cpp \
1032 $(VBoxRT_0_OUTDIR)/VBoxRT.def
1033VBoxRT_SOURCES.linux += \
1034 r3/linux/fileaio-linux.cpp
1035VBoxRT_SOURCES.solaris += \
1036 r3/solaris/fileaio-solaris.cpp
1037VBoxRT_SOURCES.darwin += \
1038 r3/posix/fileaio-posix.cpp
1039VBoxRT_SOURCES.freebsd += \
1040 r3/freebsd/fileaio-freebsd.cpp
1041VBoxRT_INCS = $(RuntimeR3_INCS)
1042VBoxRT_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
1043VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
1044VBoxRT_LIBS = \
1045 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB) \
1046 $(SDK_VBOX_ZLIB_LIBS)
1047if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1048VBoxRT_LIBS += \
1049 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB)
1050endif
1051ifdef IPRT_WITH_KSTUFF
1052 VBoxRT_LIBS += \
1053 $(PATH_LIB)/VBox-kStuff$(VBOX_SUFF_LIB)
1054endif
1055ifndef SDK_VBOX_LIBXML2_LIBS
1056 VBoxRT_LIBS += \
1057 $(PATH_LIB)/VBox-libxml2$(VBOX_SUFF_LIB)
1058endif
1059ifndef SDK_VBOX_OPENSSL_LIBS
1060 VBoxRT_LIBS += \
1061 $(PATH_LIB)/VBox-libcrypto$(VBOX_SUFF_LIB)
1062endif
1063ifdef IPRT_WITH_LZO
1064 VBoxRT_LIBS += lzo2
1065endif
1066VBoxRT_LIBS.linux = \
1067 crypt
1068VBoxRT_LIBS.darwin = \
1069 iconv
1070VBoxRT_LIBS.freebsd = \
1071 iconv \
1072 rt
1073VBoxRT_LIBS.solaris = \
1074 kstat
1075ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
1076 # SMBIOS not available on Solaris SPARC.
1077 VBoxRT_LIBS.solaris += smbios
1078endif
1079VBoxRT_LIBS.win = \
1080 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/vccomsup.lib \
1081 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/wbemuuid.lib
1082VBoxRT_LDFLAGS.darwin = -framework IOKit -framework CoreFoundation -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
1083ifdef VBOX_USE_VCC80
1084VBoxRT_LDFLAGS.win = /MANIFEST
1085endif
1086VBoxRT_LDFLAGS.l4 = \
1087 -Wl,-whole-archive \
1088 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
1089 -Wl,-no-whole-archive
1090ifeq ($(KBUILD_TARGET),l4)
1091VBoxRT_LIBS += \
1092 $(L4_LIBDIR)/libl4sys.a \
1093 $(L4_LIBDIR)/libl4sys.p.a
1094endif
1095VBoxRT_LIBS.l4 = \
1096 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
1097
1098if1of ($(DLLS), VBoxRT)
1099$$(VBoxRT_0_OUTDIR)/VBoxRT.def: \
1100 $(PATH_SUB_CURRENT)/r3/win/VBoxRT-$$(if-expr $$(KBUILD_TARGET_ARCH) == amd64,win64,win32).def \
1101 $(PATH_SUB_CURRENT)/r3/win/$(if $(VBOX_OSE),VBoxRT-openssl-ose.def,VBoxRT-openssl.def)
1102 $(RM) -f -- $@
1103 $(REDIRECT) -wto $@ -- $(CAT_EXT) $^
1104endif
1105
1106
1107#
1108# HACK ALLERT! Make testcase run during build on SELinux boxes.
1109# Create a dummy DLL that ensure that VBoxRT is installed
1110# during the DLL pass and cleaned up later.
1111#
1112ifeq ($(KBUILD_TARGET),linux)
1113 if1of (VBoxRT, $(DLLS))
1114 ifneq ($(wildcard /usr/bin/chcon),)
1115VBoxRT_NOINST = true
1116
1117DLLS += VBoxRTDummy
1118VBoxRTDummy_TEMPLATE = VBOXR3
1119VBoxRTDummy_NOINST = true
1120VBoxRTDummy_LIBS = $(PATH_BIN)/VBoxRT.so
1121VBoxRTDummy_CLEAN= $(PATH_BIN)/VBoxRT.so
1122BLDDIRS += $(PATH_BIN)
1123
1124$(PATH_BIN)/VBoxRT.so: $$(TARGET_VBoxRT) | $$(dir $$@)
1125 $(INSTALL) $< $@
1126 chcon -t texrel_shlib_t $@ || true
1127
1128VBoxRT:: VBoxRTDummy
1129 endif # chcon present.
1130 endif # building VBoxRT
1131endif # linux
1132
1133#
1134# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
1135# This is used together with VBoxRT.
1136#
1137## @todo the *_alias.c stuff is busted, remove and use RT_WITH_NOCRT_ALIASES instead.
1138RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
1139RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
1140ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1141 RuntimeR3NoCRTGCC_DEFS += RT_NO_GIP
1142endif
1143RuntimeR3NoCRTGCC_INCS = include
1144RuntimeR3NoCRTGCC_SOURCES = \
1145 common/misc/sanity-cpp.cpp \
1146 common/misc/sanity-c.c \
1147 \
1148 $(RuntimeNoCrt_SOURCES)
1149
1150if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1151RuntimeR3NoCRTGCC_SOURCES += \
1152 common/math/ceill.asm \
1153 common/math/cosl.asm \
1154 common/math/fabs.asm \
1155 common/math/fabsf.asm \
1156 common/math/fabsl.asm \
1157 common/math/floor.asm \
1158 common/math/floorf.asm \
1159 common/math/floorl.asm \
1160 common/math/ldexpl.asm \
1161 common/math/llrint.asm \
1162 common/math/llrintf.asm \
1163 common/math/llrintl.asm \
1164 common/math/logl.asm \
1165 common/math/lrint.asm \
1166 common/math/lrintf.asm \
1167 common/math/lrintl.asm \
1168 common/math/remainder.asm \
1169 common/math/remainderf.asm \
1170 common/math/remainderl.asm \
1171 common/math/sinl.asm \
1172 common/math/tanl.asm \
1173 common/math/trunc.asm \
1174 common/math/truncf.asm \
1175 common/math/truncl.asm \
1176 \
1177 common/string/memchr_alias.c \
1178 common/string/memcmp_alias.c \
1179 common/string/memcpy_alias.c \
1180 common/string/memmove_alias.c \
1181 common/string/memset_alias.c \
1182 common/string/strchr_alias.c \
1183 common/string/strcmp_alias.c \
1184 common/string/strlen_alias.c
1185endif
1186
1187RuntimeR3NoCRTGCC_SOURCES.x86 = \
1188 common/math/x86/fenv-x86.c \
1189 common/math/gcc/adddi3.c \
1190 common/math/gcc/anddi3.c \
1191 common/math/gcc/ashldi3.c \
1192 common/math/gcc/ashrdi3.c \
1193 common/math/gcc/cmpdi2.c \
1194 common/math/gcc/divdi3.c \
1195 common/math/gcc/iordi3.c \
1196 common/math/gcc/lshldi3.c \
1197 common/math/gcc/lshrdi3.c \
1198 common/math/gcc/moddi3.c \
1199 common/math/gcc/muldi3.c \
1200 common/math/gcc/negdi2.c \
1201 common/math/gcc/notdi2.c \
1202 common/math/gcc/qdivrem.c \
1203 common/math/gcc/subdi3.c \
1204 common/math/gcc/ucmpdi2.c \
1205 common/math/gcc/udivdi3.c \
1206 common/math/gcc/umoddi3.c \
1207 common/math/gcc/xordi3.c
1208
1209
1210## @todo stop using the old memcpy.c and memset.c code.
1211
1212#
1213# RuntimeR0 - Ring-0 library for VMMR0.
1214#
1215RuntimeR0_TEMPLATE = VBoxR0
1216RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
1217ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
1218 RuntimeR0_DEFS += RT_NO_GIP
1219endif
1220RuntimeR0_INCS = include
1221RuntimeR0_SOURCES = \
1222 common/log/logellipsis.cpp \
1223 common/log/logrelellipsis.cpp \
1224 common/log/logcom.cpp \
1225 common/log/logformat.cpp \
1226 common/misc/RTAssertMsg1Weak.cpp \
1227 common/misc/RTAssertMsg2.cpp \
1228 common/misc/RTAssertMsg2Add.cpp \
1229 common/misc/RTAssertMsg2AddWeak.cpp \
1230 common/misc/RTAssertMsg2AddWeakV.cpp \
1231 common/misc/RTAssertMsg2Weak.cpp \
1232 common/misc/RTAssertMsg2WeakV.cpp \
1233 common/misc/buildconfig.cpp \
1234 common/misc/once.cpp \
1235 common/misc/sanity-c.c \
1236 common/misc/sanity-cpp.cpp \
1237 common/misc/term.cpp \
1238 common/string/strncmp.cpp \
1239 common/string/strpbrk.cpp \
1240 common/table/avlgcptr.cpp \
1241 common/table/avlhcphys.cpp \
1242 common/table/avllu32.cpp \
1243 common/table/avlogcphys.cpp \
1244 common/table/avlogcptr.cpp \
1245 common/table/avlohcphys.cpp \
1246 common/table/avloioport.cpp \
1247 common/table/avlpv.cpp \
1248 common/table/avlrogcphys.cpp \
1249 common/table/avlrogcptr.cpp \
1250 common/table/avlroioport.cpp \
1251 common/table/avlroogcptr.cpp \
1252 common/table/avlu32.cpp \
1253 common/table/avlou32.cpp \
1254 common/time/timesup.cpp \
1255 generic/RTAssertShouldPanic-generic.cpp \
1256 \
1257 $(RuntimeNoCrt_SOURCES)
1258
1259if1of ($(KBUILD_TARGET), darwin solaris freebsd)
1260RuntimeR0_SOURCES += \
1261 common/math/gcc/adddi3.c \
1262 common/math/gcc/anddi3.c \
1263 common/math/gcc/ashldi3.c \
1264 common/math/gcc/ashrdi3.c \
1265 common/math/gcc/cmpdi2.c \
1266 common/math/gcc/divdi3.c \
1267 common/math/gcc/iordi3.c \
1268 common/math/gcc/lshldi3.c \
1269 common/math/gcc/lshrdi3.c \
1270 common/math/gcc/moddi3.c \
1271 common/math/gcc/muldi3.c \
1272 common/math/gcc/negdi2.c \
1273 common/math/gcc/notdi2.c \
1274 common/math/gcc/qdivrem.c \
1275 common/math/gcc/subdi3.c \
1276 common/math/gcc/ucmpdi2.c \
1277 common/math/gcc/udivdi3.c \
1278 common/math/gcc/umoddi3.c \
1279 common/math/gcc/xordi3.c
1280endif
1281
1282#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
1283# RuntimeR0_SOURCES += common/time/timesupA.asm
1284#else
1285 RuntimeR0_SOURCES += common/time/timesupref.cpp
1286#endif
1287
1288RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
1289RuntimeR0_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1290RuntimeR0_SOURCES.win = \
1291 nt/NtProcessStartup-stub.cpp
1292
1293RuntimeR0_SOURCES.os2 = \
1294 os2/RTErrConvertFromOS2.cpp \
1295 os2/sys0.asm
1296
1297
1298#
1299# RuntimeR0Stub - Ring-0 context startup stub for Windows.
1300#
1301RuntimeR0Stub_TEMPLATE = VBoxR0
1302RuntimeR0Stub_SOURCES.win = \
1303 nt/NtProcessStartup-stub.cpp
1304
1305
1306#
1307# RuntimeR0Drv - Ring-0 library for host drivers.
1308#
1309RuntimeR0Drv_TEMPLATE = VBOXR0DRV
1310RuntimeR0Drv_SDKS.win = $(VBOX_WINDDK) WINPSDKINCS
1311RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS RT_NO_EXPORT_SYMBOL
1312RuntimeR0Drv_DEFS.win = IN_SUP_R0
1313RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0
1314
1315RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
1316RuntimeR0Drv_INCS.freebsd = \
1317 $(PATH_INS)/gen-sys-hdrs
1318RuntimeR0Drv_INCS.linux = \
1319 r0drv/linux
1320RuntimeR0Drv_INCS.solaris = \
1321 r0drv/solaris/vbi/i86pc \
1322 r0drv/solaris/vbi/i86pc/sys
1323
1324RuntimeR0Drv_SOURCES = \
1325 common/alloc/alloc.cpp \
1326 common/alloc/heapsimple.cpp \
1327 common/alloc/heapoffset.cpp \
1328 common/checksum/crc32.cpp \
1329 common/checksum/crc64.cpp \
1330 common/checksum/md5.cpp \
1331 common/checksum/ipv4.cpp \
1332 common/checksum/ipv6.cpp \
1333 common/log/log.cpp \
1334 common/log/logellipsis.cpp \
1335 common/log/logrel.cpp \
1336 common/log/logrelellipsis.cpp \
1337 common/log/logcom.cpp \
1338 common/log/logformat.cpp \
1339 common/misc/RTAssertMsg1Weak.cpp \
1340 common/misc/RTAssertMsg2.cpp \
1341 common/misc/RTAssertMsg2Add.cpp \
1342 common/misc/RTAssertMsg2AddWeak.cpp \
1343 common/misc/RTAssertMsg2AddWeakV.cpp \
1344 common/misc/RTAssertMsg2Weak.cpp \
1345 common/misc/RTAssertMsg2WeakV.cpp \
1346 common/misc/assert.cpp \
1347 common/misc/buildconfig.cpp \
1348 common/misc/handletable.cpp \
1349 common/misc/handletablectx.cpp \
1350 common/misc/handletablesimple.cpp \
1351 common/misc/once.cpp \
1352 common/misc/sanity-c.c \
1353 common/misc/sanity-cpp.cpp \
1354 common/misc/term.cpp \
1355 common/path/rtPathVolumeSpecLen.cpp \
1356 common/path/RTPathAbsDup.cpp \
1357 common/path/RTPathAbsEx.cpp \
1358 common/path/RTPathAbsExDup.cpp \
1359 common/path/RTPathAppend.cpp \
1360 common/path/RTPathExt.cpp \
1361 common/path/RTPathFilename.cpp \
1362 common/path/RTPathHaveExt.cpp \
1363 common/path/RTPathHavePath.cpp \
1364 common/path/RTPathParse.cpp \
1365 common/path/RTPathRealDup.cpp \
1366 common/path/RTPathStripExt.cpp \
1367 common/path/RTPathStripFilename.cpp \
1368 common/path/RTPathStripTrailingSlash.cpp \
1369 common/rand/rand.cpp \
1370 common/rand/randadv.cpp \
1371 common/rand/randparkmiller.cpp \
1372 common/string/RTStrCmp.cpp \
1373 common/string/RTStrCopy.cpp \
1374 common/string/RTStrCopyEx.cpp \
1375 common/string/RTStrNCmp.cpp \
1376 common/string/RTStrNLen.cpp \
1377 common/string/RTStrNLenEx.cpp \
1378 common/string/strformat.cpp \
1379 common/string/strformatrt.cpp \
1380 common/string/strformattype.cpp \
1381 common/string/strprintf.cpp \
1382 common/string/strtonum.cpp \
1383 common/string/stringalloc.cpp \
1384 common/string/utf-16.cpp \
1385 common/string/utf-8.cpp \
1386 common/table/avlpv.cpp \
1387 common/time/time.cpp \
1388 generic/RTLogWriteStdErr-stub-generic.cpp \
1389 generic/RTLogWriteUser-generic.cpp \
1390 generic/RTRandAdvCreateSystemFaster-generic.cpp \
1391 generic/uuid-generic.cpp \
1392 r0drv/alloc-r0drv.cpp \
1393 r0drv/initterm-r0drv.cpp \
1394 r0drv/generic/semspinmutex-r0drv-generic.c \
1395 VBox/log-vbox.cpp \
1396
1397## @todo: Linking against RuntimeR0Drv on Linux will result in unresolved external
1398## references to several string functions (e.g. strlen). We could include the
1399## missing functions here but our own implementations conflict with declarations
1400## of some Linux kernels (inline versus not inline, size_t versus unsigned int).
1401##
1402## The prototypes for the unresolved externals are declared in <linux/string.h>.
1403## This file is not included with extern "C" { ... } and therefore the function
1404## prototypes are mangled during C++ compilation. That's why we have to provide
1405## implementations with mangled function names.
1406##
1407## bird: Why don't we just extern "C" {} that file then?
1408RuntimeR0Drv_SOURCES.linux = \
1409 common/string/strpbrk.cpp \
1410 common/err/RTErrConvertToErrno.cpp \
1411 common/err/RTErrConvertFromErrno.cpp \
1412 generic/RTAssertShouldPanic-generic.cpp \
1413 generic/RTLogWriteStdOut-stub-generic.cpp \
1414 generic/mppresent-generic.cpp \
1415 r0drv/linux/alloc-r0drv-linux.c \
1416 r0drv/linux/assert-r0drv-linux.c \
1417 r0drv/linux/initterm-r0drv-linux.c \
1418 r0drv/linux/memobj-r0drv-linux.c \
1419 r0drv/linux/memuserkernel-r0drv-linux.c \
1420 r0drv/linux/mp-r0drv-linux.c \
1421 r0drv/linux/mpnotification-r0drv-linux.c \
1422 r0drv/linux/process-r0drv-linux.c \
1423 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
1424 r0drv/linux/semevent-r0drv-linux.c \
1425 r0drv/linux/semeventmulti-r0drv-linux.c \
1426 r0drv/linux/semfastmutex-r0drv-linux.c \
1427 r0drv/linux/semmutex-r0drv-linux.c \
1428 r0drv/linux/spinlock-r0drv-linux.c \
1429 r0drv/linux/thread-r0drv-linux.c \
1430 r0drv/linux/thread2-r0drv-linux.c \
1431 r0drv/linux/time-r0drv-linux.c \
1432 r0drv/linux/timer-r0drv-linux.c \
1433 r0drv/memobj-r0drv.cpp \
1434 r0drv/mpnotification-r0drv.c \
1435 r0drv/powernotification-r0drv.c
1436## @todo thread2-r0drv-linux.c and assert-r0drv-linux.c
1437
1438RuntimeR0Drv_SOURCES.win = \
1439 common/misc/thread.cpp \
1440 common/string/memcmp.asm \
1441 common/string/memchr.asm \
1442 common/string/memcpy.asm \
1443 common/string/memset.asm \
1444 common/string/memmove.asm \
1445 common/string/strlen.asm \
1446 common/string/strncmp.cpp \
1447 common/string/strpbrk.cpp \
1448 generic/RTAssertShouldPanic-generic.cpp \
1449 generic/RTLogWriteStdOut-stub-generic.cpp \
1450 generic/mppresent-generic.cpp \
1451 nt/RTErrConvertFromNtStatus.cpp \
1452 r0drv/memobj-r0drv.cpp \
1453 r0drv/mpnotification-r0drv.c \
1454 r0drv/powernotification-r0drv.c \
1455 r0drv/nt/alloc-r0drv-nt.cpp \
1456 r0drv/nt/assert-r0drv-nt.cpp \
1457 r0drv/nt/initterm-r0drv-nt.cpp \
1458 r0drv/nt/memobj-r0drv-nt.cpp \
1459 r0drv/nt/memuserkernel-r0drv-nt.cpp \
1460 r0drv/nt/mp-r0drv-nt.cpp \
1461 r0drv/nt/mpnotification-r0drv-nt.cpp \
1462 r0drv/nt/process-r0drv-nt.cpp \
1463 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
1464 r0drv/nt/semevent-r0drv-nt.cpp \
1465 r0drv/nt/semeventmulti-r0drv-nt.cpp \
1466 r0drv/nt/semfastmutex-r0drv-nt.cpp \
1467 r0drv/nt/semmutex-r0drv-nt.cpp \
1468 r0drv/nt/spinlock-r0drv-nt.cpp \
1469 r0drv/nt/thread-r0drv-nt.cpp \
1470 r0drv/nt/thread2-r0drv-nt.cpp \
1471 r0drv/nt/time-r0drv-nt.cpp \
1472 r0drv/nt/timer-r0drv-nt.cpp
1473
1474RuntimeR0Drv_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
1475RuntimeR0Drv_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1476
1477RuntimeR0Drv_SOURCES.darwin = \
1478 common/err/RTErrConvertFromErrno.cpp \
1479 common/misc/thread.cpp \
1480 common/string/memchr.asm \
1481 common/string/strpbrk.cpp \
1482 darwin/RTErrConvertFromDarwin.cpp \
1483 darwin/RTErrConvertFromDarwinIO.cpp \
1484 darwin/RTErrConvertFromDarwinKern.cpp \
1485 generic/RTAssertShouldPanic-generic.cpp \
1486 generic/RTTimerCreate-generic.cpp \
1487 generic/mppresent-generic.cpp \
1488 generic/timer-generic.cpp \
1489 r0drv/generic/mpnotification-r0drv-generic.cpp \
1490 r0drv/darwin/alloc-r0drv-darwin.cpp \
1491 r0drv/darwin/assert-r0drv-darwin.cpp \
1492 r0drv/darwin/initterm-r0drv-darwin.cpp \
1493 r0drv/darwin/memobj-r0drv-darwin.cpp \
1494 r0drv/darwin/mp-r0drv-darwin.cpp \
1495 r0drv/darwin/memuserkernel-r0drv-darwin.cpp \
1496 r0drv/darwin/process-r0drv-darwin.cpp \
1497 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
1498 r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
1499 r0drv/darwin/semevent-r0drv-darwin.cpp \
1500 r0drv/darwin/semeventmulti-r0drv-darwin.cpp \
1501 r0drv/darwin/semfastmutex-r0drv-darwin.cpp \
1502 r0drv/darwin/semmutex-r0drv-darwin.cpp \
1503 r0drv/darwin/spinlock-r0drv-darwin.cpp \
1504 r0drv/darwin/thread-r0drv-darwin.cpp \
1505 r0drv/darwin/thread2-r0drv-darwin.cpp \
1506 r0drv/darwin/threadpreempt-r0drv-darwin.cpp \
1507 r0drv/darwin/time-r0drv-darwin.cpp \
1508 r0drv/memobj-r0drv.cpp \
1509 r0drv/powernotification-r0drv.c
1510
1511RuntimeR0Drv_SOURCES.os2 = \
1512 common/string/memchr.asm \
1513 common/string/memcmp.asm \
1514 common/string/memcpy.asm \
1515 common/string/mempcpy.asm \
1516 common/string/memmove.asm \
1517 common/string/memset.asm \
1518 common/string/strchr.asm \
1519 common/string/strcmp.asm \
1520 common/string/strcpy.asm \
1521 common/string/strlen.asm \
1522 \
1523 common/string/strncmp.cpp \
1524 common/string/strpbrk.cpp \
1525 \
1526 common/misc/thread.cpp \
1527 generic/RTAssertShouldPanic-generic.cpp \
1528 generic/RTLogWriteDebugger-generic.cpp \
1529 generic/RTLogWriteStdOut-stub-generic.cpp \
1530 generic/RTMpCpuId-generic.cpp \
1531 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1532 generic/RTMpCpuIdToSetIndex-generic.cpp \
1533 generic/RTMpIsCpuPossible-generic.cpp \
1534 generic/RTMpGetCount-generic.cpp \
1535 generic/RTMpGetMaxCpuId-generic.cpp \
1536 generic/RTMpGetOnlineCount-generic.cpp \
1537 generic/RTMpGetOnlineSet-generic.cpp \
1538 generic/RTMpGetSet-generic.cpp \
1539 generic/RTMpIsCpuOnline-generic.cpp \
1540 generic/RTTimerCreate-generic.cpp \
1541 generic/mppresent-generic.cpp \
1542 os2/RTErrConvertFromOS2.cpp \
1543 os2/sys0.asm \
1544 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1545 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1546 r0drv/generic/mpnotification-r0drv-generic.cpp \
1547 r0drv/memobj-r0drv.cpp \
1548 r0drv/powernotification-r0drv.c \
1549 r0drv/os2/alloc-r0drv-os2.cpp \
1550 r0drv/os2/assert-r0drv-os2.cpp \
1551 r0drv/os2/assertA-r0drv-os2.asm \
1552 r0drv/os2/initterm-r0drv-os2.cpp \
1553 r0drv/os2/memobj-r0drv-os2.cpp \
1554 r0drv/os2/memuserkernel-r0drv-os2.cpp \
1555 r0drv/os2/os2imports.imp \
1556 r0drv/os2/process-r0drv-os2.cpp \
1557 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
1558 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
1559 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
1560 r0drv/os2/semevent-r0drv-os2.cpp \
1561 r0drv/os2/semeventmulti-r0drv-os2.cpp \
1562 r0drv/os2/semfastmutex-r0drv-os2.cpp \
1563 r0drv/os2/spinlock-r0drv-os2.cpp \
1564 r0drv/os2/thread-r0drv-os2.cpp \
1565 r0drv/os2/thread2-r0drv-os2.cpp \
1566 r0drv/os2/time-r0drv-os2.cpp \
1567 r0drv/os2/timer-r0drv-os2.cpp \
1568 r0drv/os2/timerA-r0drv-os2.asm
1569
1570RuntimeR0Drv_SOURCES.freebsd = \
1571 common/err/RTErrConvertFromErrno.cpp \
1572 common/err/RTErrConvertToErrno.cpp \
1573 common/misc/thread.cpp \
1574 common/string/memchr.asm \
1575 common/string/memmove.asm \
1576 common/string/strpbrk.cpp \
1577 common/string/memcmp.asm \
1578 common/string/strchr.asm \
1579 generic/RTAssertShouldPanic-generic.cpp \
1580 generic/RTLogWriteDebugger-generic.cpp \
1581 generic/RTLogWriteStdOut-stub-generic.cpp \
1582 generic/RTTimerCreate-generic.cpp \
1583 generic/mppresent-generic.cpp \
1584 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1585 r0drv/generic/mpnotification-r0drv-generic.cpp \
1586 r0drv/freebsd/alloc-r0drv-freebsd.c \
1587 r0drv/freebsd/assert-r0drv-freebsd.c \
1588 r0drv/freebsd/initterm-r0drv-freebsd.c \
1589 r0drv/freebsd/memobj-r0drv-freebsd.c \
1590 r0drv/freebsd/memuserkernel-r0drv-freebsd.c \
1591 r0drv/freebsd/process-r0drv-freebsd.c \
1592 r0drv/freebsd/semevent-r0drv-freebsd.c \
1593 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
1594 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
1595 r0drv/freebsd/semmutex-r0drv-freebsd.c \
1596 r0drv/freebsd/spinlock-r0drv-freebsd.c \
1597 r0drv/freebsd/thread-r0drv-freebsd.c \
1598 r0drv/freebsd/thread2-r0drv-freebsd.c \
1599 r0drv/freebsd/time-r0drv-freebsd.c \
1600 r0drv/freebsd/mp-r0drv-freebsd.c \
1601 generic/timer-generic.cpp \
1602 r0drv/memobj-r0drv.cpp \
1603 r0drv/powernotification-r0drv.c
1604
1605RuntimeR0Drv_SOURCES.solaris = \
1606 common/err/RTErrConvertFromErrno.cpp \
1607 common/err/RTErrConvertToErrno.cpp \
1608 common/misc/thread.cpp \
1609 common/string/memchr.asm \
1610 generic/RTAssertShouldPanic-generic.cpp \
1611 generic/RTLogWriteStdOut-stub-generic.cpp \
1612 generic/RTTimerCreate-generic.cpp \
1613 generic/mppresent-generic.cpp \
1614 r0drv/memobj-r0drv.cpp \
1615 r0drv/mpnotification-r0drv.c \
1616 r0drv/powernotification-r0drv.c \
1617 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
1618 r0drv/solaris/assert-r0drv-solaris.c \
1619 r0drv/solaris/initterm-r0drv-solaris.c \
1620 r0drv/solaris/memuserkernel-r0drv-solaris.c \
1621 r0drv/solaris/semevent-r0drv-solaris.c \
1622 r0drv/solaris/semeventmulti-r0drv-solaris.c \
1623 r0drv/solaris/semfastmutex-r0drv-solaris.c \
1624 r0drv/solaris/semmutex-r0drv-solaris.c \
1625 r0drv/solaris/spinlock-r0drv-solaris.c
1626
1627 # VBI is now compiled into IPRT
1628 RuntimeR0Drv_SOURCES.solaris += \
1629 r0drv/solaris/vbi/RTMpPokeCpu-r0drv-solaris.c \
1630 r0drv/solaris/vbi/mpnotification-r0drv-solaris.c \
1631 r0drv/solaris/vbi/alloc-r0drv-solaris.c \
1632 r0drv/solaris/vbi/memobj-r0drv-solaris.c \
1633 r0drv/solaris/vbi/mp-r0drv-solaris.c \
1634 r0drv/solaris/vbi/process-r0drv-solaris.c \
1635 r0drv/solaris/vbi/thread-r0drv-solaris.c \
1636 r0drv/solaris/vbi/thread2-r0drv-solaris.c \
1637 r0drv/solaris/vbi/time-r0drv-solaris.c \
1638 r0drv/solaris/vbi/timer-r0drv-solaris.c \
1639 r0drv/solaris/vbi/i86pc/os/vbi.c
1640
1641
1642## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
1643
1644RuntimeR0Drv_ORDERDEPS.freebsd = \
1645 $(PATH_INS)/gen-sys-hdrs/bus_if.h \
1646 $(PATH_INS)/gen-sys-hdrs/device_if.h
1647
1648
1649#
1650# RuntimeGuestR0 - Guest driver runtime.
1651# This is almost the same as the RuntimeR0Drv, the main difference
1652# is in the backdoor logging and the lack of sup.h (which should be
1653# made irrelevant even for RuntimeR0Drv).
1654#
1655RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
1656RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
1657RuntimeGuestR0_SOURCES += \
1658 VBox/logbackdoor.cpp
1659RuntimeGuestR0_EXTENDS = RuntimeR0Drv
1660
1661
1662#
1663# RuntimeGuestR0NT4 - Win32 NT4 guest driver runtime.
1664#
1665RuntimeGuestR0NT4_EXTENDS = RuntimeGuestR0
1666RuntimeGuestR0NT4_EXTENDS_BY = appending
1667RuntimeGuestR0NT4_DEFS = IPRT_TARGET_NT4
1668
1669
1670ifdef VBOX_WITH_RAW_MODE
1671 #
1672 # RuntimeRC - Raw-mode context library.
1673 #
1674 RuntimeRC_TEMPLATE = VBoxRc
1675 RuntimeRC_DEFS = IN_RT_RC RT_WITH_VBOX
1676 RuntimeRC_INCS = include
1677 RuntimeRC_SOURCES = \
1678 common/checksum/crc32.cpp \
1679 common/checksum/crc64.cpp \
1680 common/checksum/md5.cpp \
1681 common/log/log.cpp \
1682 common/log/logellipsis.cpp \
1683 common/log/logrel.cpp \
1684 common/log/logrelellipsis.cpp \
1685 common/log/logcom.cpp \
1686 common/log/logformat.cpp \
1687 common/misc/RTAssertMsg1Weak.cpp \
1688 common/misc/RTAssertMsg2.cpp \
1689 common/misc/RTAssertMsg2Add.cpp \
1690 common/misc/RTAssertMsg2AddWeak.cpp \
1691 common/misc/RTAssertMsg2AddWeakV.cpp \
1692 common/misc/RTAssertMsg2Weak.cpp \
1693 common/misc/RTAssertMsg2WeakV.cpp \
1694 common/misc/assert.cpp \
1695 common/misc/buildconfig.cpp \
1696 common/misc/sanity-c.c \
1697 common/misc/sanity-cpp.cpp \
1698 common/string/strformat.cpp \
1699 common/string/strformatrt.cpp \
1700 common/string/strformattype.cpp \
1701 common/string/strncmp.cpp \
1702 common/string/strpbrk.cpp \
1703 common/string/strprintf.cpp \
1704 common/table/avllu32.cpp \
1705 common/table/avlou32.cpp \
1706 common/table/avlogcphys.cpp \
1707 common/table/avlogcptr.cpp \
1708 common/table/avlohcphys.cpp \
1709 common/table/avloioport.cpp \
1710 common/table/avlrogcphys.cpp \
1711 common/table/avlrogcptr.cpp \
1712 common/table/avlroioport.cpp \
1713 common/table/avlroogcptr.cpp \
1714 common/table/avlu32.cpp \
1715 common/time/timeprog.cpp \
1716 common/time/timesup.cpp \
1717 gc/initterm-gc.cpp \
1718 generic/RTAssertShouldPanic-generic.cpp \
1719 \
1720 $(RuntimeNoCrt_SOURCES)
1721
1722 #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
1723 # RuntimeRC_SOURCES += common/time/timesupA.asm
1724 #else
1725 RuntimeRC_SOURCES += common/time/timesupref.cpp
1726 #endif
1727
1728 RuntimeRC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1729
1730 ifeq ($(VBOX_LDR_FMT32),lx)
1731 RuntimeRC_SOURCES += os2/sys0.asm
1732 endif
1733
1734 if1of ($(KBUILD_TARGET), darwin solaris freebsd)
1735 RuntimeRC_SOURCES += \
1736 common/math/gcc/adddi3.c \
1737 common/math/gcc/anddi3.c \
1738 common/math/gcc/ashldi3.c \
1739 common/math/gcc/ashrdi3.c \
1740 common/math/gcc/cmpdi2.c \
1741 common/math/gcc/divdi3.c \
1742 common/math/gcc/iordi3.c \
1743 common/math/gcc/lshldi3.c \
1744 common/math/gcc/lshrdi3.c \
1745 common/math/gcc/moddi3.c \
1746 common/math/gcc/muldi3.c \
1747 common/math/gcc/negdi2.c \
1748 common/math/gcc/notdi2.c \
1749 common/math/gcc/qdivrem.c \
1750 common/math/gcc/subdi3.c \
1751 common/math/gcc/ucmpdi2.c \
1752 common/math/gcc/udivdi3.c \
1753 common/math/gcc/umoddi3.c \
1754 common/math/gcc/xordi3.c
1755 endif
1756
1757
1758 #
1759 # RuntimeRCStub - Raw-mode context startup stub for Windows.
1760 #
1761 RuntimeRCStub_TEMPLATE = VBoxRc
1762 RuntimeRCStub_SOURCES.win = \
1763 nt/NtProcessStartup-stub.cpp
1764
1765
1766endif # VBOX_WITH_RAW_MODE
1767
1768
1769#
1770# Static library for new & delete for the electric fence.
1771#
1772RuntimeEFCPP_TEMPLATE = $(VBoxRT_TEMPLATE)
1773RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
1774RuntimeEFCPP_SDKS.$(KBUILD_TARGET) = $(RuntimeR3_SDKS.$(KBUILD_TARGET))
1775RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
1776RuntimeEFCPP_DEFS.$(KBUILD_TARGET) = $(RuntimeR3_DEFS.$(KBUILD_TARGET))
1777RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
1778RuntimeEFCPP_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
1779RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
1780
1781
1782
1783#
1784# errmsg.cpp depends on a generated header.
1785#
1786common/err/errmsg.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
1787common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
1788
1789win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h
1790win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
1791
1792# Our COM errors only for R3 libraries on the host
1793define def_errmsgwin_deps
1794 $(lib)_win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1795 $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
1796 $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1797endef
1798$(foreach lib,RuntimeR3 VBoxRT RuntimeLnxHostR3,$(eval $(def_errmsgwin_deps)))
1799
1800
1801#
1802# Generate the status code data.
1803#
1804$(IPRT_OUT_DIR)/errmsgdata.h: \
1805 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
1806 $(PATH_ROOT)/include/iprt/err.h \
1807 $(PATH_ROOT)/include/VBox/err.h \
1808 | $$(dir $$@)
1809 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1810 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1811
1812## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
1813$(IPRT_OUT_DIR)/errmsgcomdata.h: \
1814 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
1815 $$(PATH_SDK_WINPSDK_INC)/WinError.h \
1816 | $$(dir $$@)
1817 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1818 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1819
1820$(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
1821 $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
1822 $(VBOX_XIDL_FILE_SRC) \
1823 | $$(dir $$@)
1824 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
1825 $(VBOX_XSLTPROC) -o $@ $< $(filter %.xidl,$^)
1826
1827
1828if "$(KBUILD_TARGET)" == "freebsd"
1829#
1830# FreeBSDGeneratedKernelHeaders - Generate some kernel interface headers.
1831#
1832# These are used by:
1833# - The RTMp* API in IPRT.
1834# - VBoxGuest
1835#
1836# Note! We cannot give a output path to the awk program, it will always
1837# generate the header next to the source. So, we'll have to temporarily copy
1838# the source file to the destination directory to work.
1839#
1840VBOX_AWK := /usr/bin/awk
1841INSTALLS += FreeBSDGeneratedKernelHeaders
1842FreeBSDGeneratedKernelHeaders_INST = gen-sys-hdrs/
1843FreeBSDGeneratedKernelHeaders_SOURCES = \
1844 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h \
1845 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h \
1846 $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h
1847FreeBSDGeneratedKernelHeaders_CLEAN = $(FreeBSDGeneratedKernelHeaders_SOURCES)
1848
1849$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h: $(VBOX_FREEBSD_SRC)/kern/bus_if.m | $$(dir $$@)
1850 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
1851 $(QUIET)$(CP) -f $< $(@D)/bus_if.m
1852 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/bus_if.m -h -p
1853 $(QUIET)$(RM) $(@D)/bus_if.m
1854
1855$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h: $(VBOX_FREEBSD_SRC)/kern/device_if.m | $$(dir $$@)
1856 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
1857 $(QUIET)$(CP) -f $< $(@D)/device_if.m
1858 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/device_if.m -h -p
1859 $(QUIET)$(RM) $(@D)/device_if.m
1860
1861$$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h: $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m | $$(dir $$@)
1862 $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
1863 $(QUIET)$(CP) -f $< $(@D)/pci_if.m
1864 $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/pci_if.m -h -p
1865 $(QUIET)$(RM) $(@D)/pci_if.m
1866endif # FreeBSD
1867
1868
1869#
1870# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
1871#
1872ldrELFRelocatable.cpp.o: ldrELF.o
1873ldrELFRelocatable.cpp.obj: ldrELF.obj
1874
1875
1876#
1877# Doxygen documentation.
1878#
1879IPRT_DOXYFILE_INPUT_DIRS = \
1880 $(PATH_ROOT)/include/iprt \
1881 $(PATH_ROOT)/include/iprt/cpp \
1882 $(PATH_ROOT)/include/iprt/linux \
1883 $(PATH_ROOT)/include/iprt/nocrt \
1884 $(PATH_ROOT)/include/iprt/nocrt/x86 \
1885 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
1886 $(PATH_ROOT)/include/iprt/nocrt/compiler \
1887 $(VBOX_PATH_RUNTIME_SRC)/include/internal \
1888 $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
1889 $(VBOX_PATH_RUNTIME_SRC)/common/asm \
1890 $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
1891 $(VBOX_PATH_RUNTIME_SRC)/common/dbg \
1892 $(VBOX_PATH_RUNTIME_SRC)/common/err \
1893 $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
1894 $(VBOX_PATH_RUNTIME_SRC)/common/log \
1895 $(VBOX_PATH_RUNTIME_SRC)/common/math \
1896 $(VBOX_PATH_RUNTIME_SRC)/common/math/amd64 \
1897 $(VBOX_PATH_RUNTIME_SRC)/common/math/gcc \
1898 $(VBOX_PATH_RUNTIME_SRC)/common/math/x86 \
1899 $(VBOX_PATH_RUNTIME_SRC)/common/misc \
1900 $(VBOX_PATH_RUNTIME_SRC)/common/path \
1901 $(VBOX_PATH_RUNTIME_SRC)/common/rand \
1902 $(VBOX_PATH_RUNTIME_SRC)/common/string \
1903 $(VBOX_PATH_RUNTIME_SRC)/common/table \
1904 $(VBOX_PATH_RUNTIME_SRC)/common/time \
1905 $(VBOX_PATH_RUNTIME_SRC)/VBox \
1906 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv,\
1907 $(dir) \
1908 $(dir)/darwin \
1909 $(dir)/l4 \
1910 $(dir)/linux \
1911 $(dir)/nt \
1912 $(dir)/os2 \
1913 $(dir)/win \
1914 $(dir)/win32 \
1915 $(dir)/win64 \
1916 $(dir)/generic \
1917 )
1918
1919# These must come first in order to make things look nice.
1920IPRT_DOXYFILE_INPUT_FIRST =\
1921 $(PATH_ROOT)/include/iprt/cdefs.h \
1922 $(PATH_ROOT)/include/iprt/types.h \
1923 $(PATH_ROOT)/include/iprt/runtime.h \
1924 $(PATH_ROOT)/include/iprt/param.h \
1925 $(PATH_ROOT)/include/iprt/assert.h \
1926 $(PATH_ROOT)/include/iprt/asm.h \
1927
1928IPRT_DOXYFILE_INPUT := \
1929 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
1930 $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
1931IPRT_DOXYFILE_INPUT := \
1932 $(IPRT_DOXYFILE_INPUT_FIRST) \
1933 $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT))
1934
1935
1936IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
1937BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
1938
1939includedep $(IPRT_OUT_DIR)/Doxyfile.iprt.dep
1940
1941# Generate the Doxyfile
1942$(IPRT_OUT_DIR)/Doxyfile.iprt: \
1943 $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
1944 $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
1945 $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
1946 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
1947 | $$(dir $$@)
1948 $(RM) -f $@ $@.tmp $@.dep
1949 $(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile $@.tmp
1950 $(APPEND) $@.tmp
1951 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
1952 $(APPEND) $@.tmp "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
1953 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"
1954 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
1955 $(APPEND) $@.tmp "PREDEFINED += $(ARCH_BITS_DEFS)"
1956 $(APPEND) $@.tmp
1957 $(APPEND) $@.tmp "INPUT = $(IPRT_DOXYFILE_INPUT)"
1958 $(APPEND) $@.tmp
1959 $(MV) -f $@.tmp $@
1960 @$(APPEND) $@.dep "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
1961 @$(APPEND) $@.dep "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
1962
1963# Do the actual job.
1964$(IPRT_OUT_DIR)/docs.iprt: $(IPRT_OUT_DIR)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) | $(IPRT_DOXYFILE_OUTPUT)/
1965 $(RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt
1966 doxygen $(IPRT_OUT_DIR)/Doxyfile.iprt
1967 $(APPEND) $(IPRT_OUT_DIR)/docs.iprt
1968
1969# aliases
1970docs.iprt: $(IPRT_OUT_DIR)/docs.iprt
1971if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
1972docs: $(IPRT_OUT_DIR)/docs.iprt
1973endif
1974
1975test-doxygen::
1976 @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1977 @echo $(IPRT_DOXYFILE_OUTPUT)
1978 @echo $(DOXYGEN_OUTPUT_PREV)
1979 @echo $(IPRT_DOXYFILE_INPUT)
1980
1981#
1982# Generate the rules (we're the to sub-makefile).
1983#
1984include $(KBUILD_PATH)/subfooter.kmk
1985
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