VirtualBox

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

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

IPRT: Added RTSemEventGetResolution and RTSemEventMultiGetResolution to r0drv.

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