VirtualBox

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

Last change on this file since 16024 was 16015, checked in by vboxsync, 16 years ago

Runtime: FreeBSD build fixes (stubbing RTMp* in ring-3).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 50.0 KB
Line 
1# $Id: Makefile.kmk 16015 2009-01-18 00:17:17Z vboxsync $
2## @file
3# Sub-Makefile for the IPRT (IPRT).
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27# Clara, CA 95054 USA or visit http://www.sun.com if you need
28# additional information or have any questions.
29#
30
31SUB_DEPTH = ../../..
32include $(KBUILD_PATH)/subheader.kmk
33
34ifdef VBOX_ONLY_ADDITIONS
35 #
36 # Only build the additions, sort out the legacy names first.
37 #
38 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Mini
39 #LIBRARIES.os2 = RuntimeGuestR0OS2Warp3
40 LIBRARIES.win.x86 += RuntimeGuestR0NT4
41 ifndef VBOX_WITH_ADDITION_DRIVERS
42 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.
43 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))
44 endif
45 endif
46
47else ifdef VBOX_ONLY_DOCS
48 #
49 # Build docs only - need just regular R3 runtime.
50 #
51 LIBRARIES += RuntimeR3
52 DLLS += VBoxRT
53
54else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS
55
56 #
57 # Normal build.
58 #
59 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
60
61 BLDPROGS += uniread
62 LIBRARIES += RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC
63 ifdef VBOX_WITH_VBOXDRV
64 LIBRARIES += RuntimeR0Drv
65 endif
66 ifdef VBOX_WITH_ADDITIONS
67 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3 RuntimeGuestR3Mini
68 #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
69 LIBRARIES.win.x86 += RuntimeGuestR0NT4
70 ifndef VBOX_WITH_ADDITION_DRIVERS
71 if1of ($(KBUILD_TARGET), linux l4) # All drivers are optional, can skip RuntimeGuestR0.
72 LIBRARIES := $(filter-out RuntimeGuestR0, $(LIBRARIES))
73 endif
74 endif
75 endif # VBOX_WITH_ADDITIONS
76 LIBRARIES.l4 += RuntimeR3L4 RuntimeLnxHostR3
77 DLLS += VBoxRT
78endif
79
80# Where the generated stuff goes.
81IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
82BLDDIRS += $(IPRT_OUT_DIR)
83OTHER_CLEAN += \
84 $(IPRT_OUT_DIR)/errmsgdata.h \
85 $(IPRT_OUT_DIR)/errmsgcomdata.h \
86 $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
87 $(IPRT_OUT_DIR)/Doxyfile.iprt \
88 $(IPRT_OUT_DIR)/Doxyfile.iprt.dep \
89 $(IPRT_OUT_DIR)/docs.iprt
90
91
92#
93# Globals
94#
95VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
96
97
98#
99# Unicode Specification reader used to regenerate unidata.cpp.
100#
101uniread_TEMPLATE = VBOXBLDPROG
102uniread_SOURCES = common/string/uniread.cpp
103uniread_INCS = include
104
105#
106# Win64 assembly sources.
107#
108RuntimeWin64ASM_SOURCES = \
109 win/amd64/ASMAtomicBitClear.asm \
110 win/amd64/ASMAtomicBitTestAndToggle.asm \
111 win/amd64/ASMAtomicBitToggle.asm \
112 win/amd64/ASMAtomicReadU64.asm \
113 win/amd64/ASMAtomicXchgU16.asm \
114 win/amd64/ASMAtomicXchgU8.asm \
115 win/amd64/ASMBitFirstClear.asm \
116 win/amd64/ASMBitFirstSet.asm \
117 win/amd64/ASMGetCS.asm \
118 win/amd64/ASMGetDS.asm \
119 win/amd64/ASMGetES.asm \
120 win/amd64/ASMGetFlags.asm \
121 win/amd64/ASMGetFS.asm \
122 win/amd64/ASMGetGS.asm \
123 win/amd64/ASMGetIDTR.asm \
124 win/amd64/ASMGetGDTR.asm \
125 win/amd64/ASMGetTR.asm \
126 win/amd64/ASMGetSS.asm \
127 win/amd64/ASMProbeReadByte.asm \
128 win/amd64/ASMSetFlags.asm \
129 win/amd64/ASMGetDR0.asm \
130 win/amd64/ASMGetDR1.asm \
131 win/amd64/ASMGetDR2.asm \
132 win/amd64/ASMGetDR3.asm \
133 win/amd64/ASMGetDR6.asm \
134 win/amd64/ASMGetDR7.asm \
135 common/asm/ASMMultU64ByU32DivByU32.asm
136
137#
138# Win32 assembly sources.
139#
140RuntimeWin32ASM_SOURCES = \
141 common/asm/ASMMultU64ByU32DivByU32.asm
142
143#
144# NoCRT sources (minus math stuff).
145#
146RuntimeNoCrt_SOURCES = \
147 common/misc/setjmp.asm \
148 common/string/memchr.asm \
149 common/string/memcmp.asm \
150 common/string/memcpy.asm \
151 common/string/mempcpy.asm \
152 common/string/memmove.asm \
153 common/string/memset.asm \
154 common/string/strchr.asm \
155 common/string/strcpy.asm \
156 common/string/strcmp.asm \
157 common/string/strlen.asm
158
159
160#
161# RuntimeR3 - Static Runtime for Ring-3 executables.
162#
163RuntimeR3_TEMPLATE = VBOXR3EXE
164RuntimeR3_SDKS.win = WINPSDK W2K3DDK
165RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
166ifdef IPRT_WITH_KSTUFF
167 RuntimeR3_DEFS += LDR_WITH_KLDR
168endif
169ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
170 RuntimeR3_DEFS += RTCRITSECT_STRICT
171endif
172RuntimeR3_INCS = \
173 include \
174 $(PATH_ROOT)/src/libs/liblzf-1.51
175ifdef IPRT_WITH_KSTUFF
176 RuntimeR3_INCS += \
177 $(PATH_ROOT)/src/libs/kStuff/kStuff/include
178endif
179RuntimeR3_INCS.l4 = \
180 $(L4_INCDIR)
181
182# RuntimeR3_INCS.solaris = \
183# /usr/include
184
185RuntimeR3_SOURCES = \
186 common/alloc/alloc.cpp \
187 common/alloc/heapsimple.cpp \
188 common/checksum/crc32.cpp \
189 common/checksum/crc64.cpp \
190 common/checksum/md5.cpp \
191 common/checksum/ipv4.cpp \
192 common/err/errmsg.cpp \
193 common/err/RTErrConvertFromErrno.cpp \
194 common/ldr/ldr.cpp \
195 common/ldr/ldrELF.cpp \
196 common/ldr/ldrEx.cpp \
197 common/ldr/ldrFile.cpp \
198 common/ldr/ldrNative.cpp \
199 common/ldr/ldrPE.cpp \
200 common/log/log.cpp \
201 common/log/logellipsis.cpp \
202 common/log/logrel.cpp \
203 common/log/logrelellipsis.cpp \
204 common/log/logcom.cpp \
205 common/log/logformat.cpp \
206 common/misc/assert.cpp \
207 common/misc/cache.cpp \
208 common/misc/cidr.cpp \
209 common/misc/getopt.cpp \
210 common/misc/handletable.cpp \
211 common/misc/handletablectx.cpp \
212 common/misc/handletablesimple.cpp \
213 common/misc/once.cpp \
214 common/misc/req.cpp \
215 common/misc/sanity-c.c \
216 common/misc/sanity-cpp.cpp \
217 common/misc/semspingpong.cpp \
218 common/misc/thread.cpp \
219 common/misc/zip.cpp \
220 common/rand/rand.cpp \
221 common/rand/randadv.cpp \
222 common/rand/randparkmiller.cpp \
223 common/string/RTStrNLen.cpp \
224 common/string/RTStrNLenEx.cpp \
225 common/string/simplepattern.cpp \
226 common/string/straprintf.cpp \
227 common/string/strformat.cpp \
228 common/string/strformatrt.cpp \
229 common/string/strformattype.cpp \
230 common/string/string.cpp \
231 common/string/strprintf.cpp \
232 common/string/strspace.cpp \
233 common/string/strstrip.cpp \
234 common/string/strtonum.cpp \
235 common/string/uni.cpp \
236 common/string/unidata.cpp \
237 common/string/utf-16.cpp \
238 common/string/utf-8.cpp \
239 common/table/avlgcptr.cpp \
240 common/table/avlhcphys.cpp \
241 common/table/avllu32.cpp \
242 common/table/avlou32.cpp \
243 common/table/avlogcphys.cpp \
244 common/table/avlogcptr.cpp \
245 common/table/avlohcphys.cpp \
246 common/table/avloioport.cpp \
247 common/table/avlpv.cpp \
248 common/table/avlrgcptr.cpp \
249 common/table/avlrogcphys.cpp \
250 common/table/avlrogcptr.cpp \
251 common/table/avlroioport.cpp \
252 common/table/avlroogcptr.cpp \
253 common/table/avlu32.cpp \
254 common/table/avlul.cpp \
255 common/table/table.cpp \
256 common/time/time.cpp \
257 common/time/timeprog.cpp \
258 common/time/timesup.cpp \
259 generic/critsect-generic.cpp \
260 generic/env-generic.cpp \
261 generic/RTFileCopy-generic.cpp \
262 generic/RTFileReadAll-generic.cpp \
263 generic/RTFileReadAllEx-generic.cpp \
264 generic/RTFileReadAllByHandle-generic.cpp \
265 generic/RTFileReadAllByHandleEx-generic.cpp \
266 generic/RTFileReadAllFree-generic.cpp \
267 generic/RTLogWriteStdErr-generic.cpp \
268 generic/RTLogWriteStdOut-generic.cpp \
269 generic/RTLogWriteUser-generic.cpp \
270 generic/RTTimerLRCreate-generic.cpp \
271 generic/semfastmutex-generic.cpp \
272 generic/spinlock-generic.cpp \
273 generic/timerlr-generic.cpp \
274 r3/alloc-ef.cpp \
275 r3/alloc.cpp \
276 r3/dir.cpp \
277 r3/fileio.cpp \
278 r3/fs.cpp \
279 r3/init.cpp \
280 r3/path.cpp \
281 r3/process.cpp \
282 r3/stream.cpp \
283 r3/tcp.cpp
284
285#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
286# RuntimeR3_SOURCES += common/time/timesupA.asm
287#else
288 RuntimeR3_SOURCES += common/time/timesupref.cpp
289#endif
290
291ifdef IPRT_WITH_KSTUFF
292 RuntimeR3_SOURCES += \
293 common/ldr/ldrkStuff.cpp
294endif
295
296# VBox specific stuff.
297RuntimeR3_SOURCES += \
298 VBox/strformat-vbox.cpp \
299 VBox/RTAssertShouldPanic-vbox.cpp \
300 VBox/log-vbox.cpp
301ifneq ($(KBUILD_TARGET),win)
302RuntimeR3_SOURCES += \
303 common/err/errmsgxpcom.cpp
304endif
305
306RuntimeR3_SOURCES.win = \
307 generic/RTDirQueryInfo-generic.cpp \
308 generic/RTDirSetTimes-generic.cpp \
309 generic/RTMpGetCurFrequency-generic.cpp \
310 generic/RTMpGetMaxFrequency-generic.cpp \
311 generic/RTRandAdvCreateSystemFaster-generic.cpp \
312 generic/RTRandAdvCreateSystemTruer-generic.cpp \
313 generic/mppresent-generic.cpp \
314 generic/semnoint-generic.cpp \
315 generic/semsrw-generic.cpp \
316 nt/RTErrConvertFromNtStatus.cpp \
317 r3/posix/env-posix.cpp \
318 r3/win/RTSystemQueryOSInfo-win.cpp \
319 r3/win/alloc-win.cpp \
320 r3/win/dir-win.cpp \
321 r3/win/fileio-win.cpp \
322 r3/win/fs-win.cpp \
323 r3/win/ldrNative-win.cpp \
324 r3/win/localipc-win.cpp \
325 r3/win/mp-win.cpp \
326 r3/win/path-win.cpp \
327 r3/win/process-win.cpp \
328 r3/win/RTLogWriteDebugger-win.cpp \
329 r3/win/rtProcInitExePath-win.cpp \
330 r3/win/sched-win.cpp \
331 r3/win/sems-win.cpp \
332 r3/win/thread-win.cpp \
333 r3/win/time-win.cpp \
334 r3/win/timer-win.cpp \
335 r3/win/tls-win.cpp \
336 r3/win/utf16locale-win.cpp \
337 r3/win/utf8-win.cpp \
338 r3/win/uuid-win.cpp \
339 r3/win/RTUuidCreate-win.cpp \
340 win/errmsgwin.cpp \
341 win/RTErrConvertFromWin32.cpp
342
343RuntimeR3_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
344RuntimeR3_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
345
346RuntimeR3_SOURCES.linux = \
347 generic/pathhost-generic.cpp \
348 generic/RTDirQueryInfo-generic.cpp \
349 generic/RTDirSetTimes-generic.cpp \
350 generic/RTFileMove-generic.cpp \
351 generic/RTLogWriteDebugger-generic.cpp \
352 generic/RTTimeLocalNow-generic.cpp \
353 generic/RTTimerCreate-generic.cpp \
354 generic/RTUuidCreate-generic.cpp \
355 generic/mppresent-generic.cpp \
356 generic/utf16locale-generic.cpp \
357 generic/uuid-generic.cpp \
358 r3/linux/mp-linux.cpp \
359 r3/linux/rtProcInitExePath-linux.cpp \
360 r3/linux/sched-linux.cpp \
361 r3/linux/sysfs.cpp \
362 r3/linux/time-linux.cpp \
363 r3/posix/RTSystemQueryOSInfo-posix.cpp \
364 r3/posix/alloc-posix.cpp \
365 r3/posix/dir-posix.cpp \
366 r3/posix/env-posix.cpp \
367 r3/posix/fileio-posix.cpp \
368 r3/posix/filelock-posix.cpp \
369 r3/posix/fs-posix.cpp \
370 r3/posix/ldrNative-posix.cpp \
371 r3/posix/path-posix.cpp \
372 r3/posix/process-posix.cpp \
373 r3/posix/rand-posix.cpp \
374 r3/posix/RTTimeNow-posix.cpp \
375 r3/posix/semrw-posix.cpp \
376 r3/posix/thread-posix.cpp \
377 r3/posix/timelocal-posix.cpp \
378 r3/posix/timer-posix.cpp \
379 r3/posix/tls-posix.cpp \
380 r3/posix/utf8-posix.cpp
381RuntimeR3_SOURCES.linux.x86 += \
382 r3/posix/semevent-posix.cpp \
383 r3/posix/semeventmulti-posix.cpp \
384 r3/posix/semmutex-posix.cpp
385RuntimeR3_SOURCES.linux.amd64 += \
386 r3/linux/semevent-linux.cpp \
387 r3/linux/semeventmulti-linux.cpp
388ifdef RT_NEW_LINUX_MUTEX_CODE
389 RuntimeR3_SOURCES.linux.amd64 += \
390 r3/linux/semmutex-linux.cpp
391else
392 RuntimeR3_SOURCES.linux.amd64 += \
393 r3/posix/semmutex-posix.cpp
394endif
395
396RuntimeR3_SOURCES.os2 = \
397 generic/pathhost-generic.cpp \
398 generic/RTDirQueryInfo-generic.cpp \
399 generic/RTDirSetTimes-generic.cpp \
400 generic/RTFileMove-generic.cpp \
401 generic/RTLogWriteDebugger-generic.cpp \
402 generic/RTRandAdvCreateSystemFaster-generic.cpp \
403 generic/RTRandAdvCreateSystemTruer-generic.cpp \
404 generic/RTTimeLocalNow-generic.cpp \
405 generic/RTTimerCreate-generic.cpp \
406 generic/RTUuidCreate-generic.cpp \
407 generic/mppresent-generic.cpp \
408 generic/semnoint-generic.cpp \
409 generic/semsrw-generic.cpp \
410 generic/timer-generic.cpp \
411 generic/utf16locale-generic.cpp \
412 generic/uuid-generic.cpp \
413 generic/RTMpGetCurFrequency-generic.cpp \
414 generic/RTMpGetMaxFrequency-generic.cpp \
415 os2/RTErrConvertFromOS2.cpp \
416 r3/os2/filelock-os2.cpp \
417 r3/os2/mp-os2.cpp \
418 r3/os2/rtProcInitExePath-os2.cpp \
419 r3/os2/sched-os2.cpp \
420 r3/os2/sems-os2.cpp \
421 r3/os2/thread-os2.cpp \
422 r3/os2/time-os2.cpp \
423 r3/posix/RTSystemQueryOSInfo-posix.cpp \
424 r3/posix/alloc-posix.cpp \
425 r3/posix/dir-posix.cpp \
426 r3/posix/env-posix.cpp \
427 r3/posix/fileio-posix.cpp \
428 r3/posix/fs-posix.cpp \
429 r3/posix/ldrNative-posix.cpp \
430 r3/posix/path-posix.cpp \
431 r3/posix/process-posix.cpp \
432 r3/posix/RTTimeNow-posix.cpp \
433 r3/posix/timelocal-posix.cpp \
434 r3/posix/utf8-posix.cpp
435
436RuntimeR3_SOURCES.darwin = \
437 darwin/RTErrConvertFromDarwin.cpp \
438 darwin/RTErrConvertFromDarwinCOM.cpp \
439 darwin/RTErrConvertFromDarwinIO.cpp \
440 darwin/RTErrConvertFromDarwinKern.cpp \
441 generic/pathhost-generic.cpp \
442 generic/RTDirQueryInfo-generic.cpp \
443 generic/RTDirSetTimes-generic.cpp \
444 generic/RTFileMove-generic.cpp \
445 generic/RTLogWriteDebugger-generic.cpp \
446 generic/RTTimeLocalNow-generic.cpp \
447 generic/RTTimerCreate-generic.cpp \
448 generic/RTUuidCreate-generic.cpp \
449 generic/mppresent-generic.cpp \
450 generic/timer-generic.cpp \
451 generic/utf16locale-generic.cpp \
452 generic/uuid-generic.cpp\
453 r3/darwin/alloc-darwin.cpp \
454 r3/darwin/filelock-darwin.cpp \
455 r3/darwin/mp-darwin.cpp \
456 r3/darwin/rtProcInitExePath-darwin.cpp \
457 r3/darwin/sched-darwin.cpp \
458 r3/darwin/time-darwin.cpp \
459 r3/posix/RTSystemQueryOSInfo-posix.cpp \
460 r3/posix/dir-posix.cpp \
461 r3/posix/env-posix.cpp \
462 r3/posix/fileio-posix.cpp \
463 r3/posix/fs-posix.cpp \
464 r3/posix/ldrNative-posix.cpp \
465 r3/posix/path-posix.cpp \
466 r3/posix/process-posix.cpp \
467 r3/posix/rand-posix.cpp \
468 r3/posix/semevent-posix.cpp \
469 r3/posix/semeventmulti-posix.cpp \
470 r3/posix/semmutex-posix.cpp \
471 r3/posix/semrw-posix.cpp \
472 r3/posix/thread-posix.cpp \
473 r3/posix/timelocal-posix.cpp \
474 r3/posix/tls-posix.cpp \
475 r3/posix/utf8-posix.cpp
476
477## @todo Make BSD sched, implement RTMP*.
478RuntimeR3_SOURCES.freebsd = \
479 generic/pathhost-generic.cpp \
480 generic/RTDirQueryInfo-generic.cpp \
481 generic/RTDirSetTimes-generic.cpp \
482 generic/RTFileMove-generic.cpp \
483 generic/RTLogWriteDebugger-generic.cpp \
484 generic/RTTimeLocalNow-generic.cpp \
485 generic/RTTimerCreate-generic.cpp \
486 generic/RTUuidCreate-generic.cpp \
487 generic/mppresent-generic.cpp \
488 generic/sched-generic.cpp \
489 generic/utf16locale-generic.cpp \
490 generic/uuid-generic.cpp \
491 generic/RTMpGetCurFrequency-generic.cpp \
492 generic/RTMpGetMaxFrequency-generic.cpp \
493 generic/RTMpCpuId-generic.cpp \
494 generic/RTMpCpuIdFromSetIndex-generic.cpp \
495 generic/RTMpCpuIdToSetIndex-generic.cpp \
496 generic/RTMpIsCpuPossible-generic.cpp \
497 generic/RTMpGetMaxCpuId-generic.cpp \
498 generic/RTMpGetOnlineCount-generic.cpp \
499 generic/RTMpGetOnlineSet-generic.cpp \
500 generic/RTMpGetSet-generic.cpp \
501 generic/RTMpIsCpuOnline-generic.cpp \
502 r3/freebsd/alloc-freebsd.cpp \
503 r3/freebsd/rtProcInitExePath-freebsd.cpp \
504 r3/posix/RTSystemQueryOSInfo-posix.cpp \
505 r3/posix/dir-posix.cpp \
506 r3/posix/env-posix.cpp \
507 r3/posix/fileio-posix.cpp \
508 r3/posix/filelock-posix.cpp \
509 r3/posix/fs-posix.cpp \
510 r3/posix/ldrNative-posix.cpp \
511 r3/posix/path-posix.cpp \
512 r3/posix/process-posix.cpp \
513 r3/posix/rand-posix.cpp \
514 r3/posix/RTMpGetCount-posix.cpp \
515 r3/posix/RTTimeNow-posix.cpp \
516 r3/posix/semevent-posix.cpp \
517 r3/posix/semeventmulti-posix.cpp \
518 r3/posix/semmutex-posix.cpp \
519 r3/posix/semrw-posix.cpp \
520 r3/posix/thread-posix.cpp \
521 r3/posix/time-posix.cpp \
522 r3/posix/timelocal-posix.cpp \
523 r3/posix/timer-posix.cpp \
524 r3/posix/tls-posix.cpp \
525 r3/posix/utf8-posix.cpp
526
527RuntimeR3_SOURCES.solaris = \
528 generic/pathhost-generic.cpp \
529 generic/RTDirQueryInfo-generic.cpp \
530 generic/RTDirSetTimes-generic.cpp \
531 generic/RTFileMove-generic.cpp \
532 generic/RTLogWriteDebugger-generic.cpp \
533 generic/RTTimeLocalNow-generic.cpp \
534 generic/RTTimerCreate-generic.cpp \
535 generic/RTUuidCreate-generic.cpp \
536 generic/sched-generic.cpp \
537 generic/utf16locale-generic.cpp \
538 generic/uuid-generic.cpp \
539 r3/posix/RTSystemQueryOSInfo-posix.cpp \
540 r3/posix/dir-posix.cpp \
541 r3/posix/env-posix.cpp \
542 r3/posix/fileio-posix.cpp \
543 r3/posix/filelock-posix.cpp \
544 r3/posix/fs-posix.cpp \
545 r3/posix/ldrNative-posix.cpp \
546 r3/posix/path-posix.cpp \
547 r3/posix/process-posix.cpp \
548 r3/posix/rand-posix.cpp \
549 r3/posix/RTTimeNow-posix.cpp \
550 r3/posix/semevent-posix.cpp \
551 r3/posix/semeventmulti-posix.cpp \
552 r3/posix/semmutex-posix.cpp \
553 r3/posix/semrw-posix.cpp \
554 r3/posix/thread-posix.cpp \
555 r3/posix/time-posix.cpp \
556 r3/posix/timelocal-posix.cpp \
557 r3/posix/timer-posix.cpp \
558 r3/posix/tls-posix.cpp \
559 r3/posix/utf8-posix.cpp \
560 r3/solaris/alloc-solaris.cpp \
561 r3/solaris/mp-solaris.cpp \
562 r3/solaris/rtProcInitExePath-solaris.cpp
563
564## PORTME: Porters add their selection of platform specific files for Ring-3 here.
565
566
567#
568# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
569#
570RuntimeR3L4_TEMPLATE = VBOXR3NP
571RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
572ifneq ($(KBUILD_TARGET_ARCH),amd64)
573RuntimeR3L4_DEFS += __PIC__
574endif
575RuntimeR3L4_INCS = \
576 include \
577 $(L4_INCDIR)
578
579RuntimeR3L4_SOURCES = \
580 generic/fs-stubs-generic.cpp \
581 generic/pathhost-generic.cpp \
582 generic/RTDirQueryInfo-generic.cpp \
583 generic/RTDirSetTimes-generic.cpp \
584 generic/RTFileMove-generic.cpp \
585 generic/RTLogWriteDebugger-generic.cpp \
586 generic/RTSystemQueryOSInfo-generic.cpp \
587 generic/RTTimeLocalNow-generic.cpp \
588 generic/RTUuidCreate-generic.cpp \
589 generic/mppresent-generic.cpp \
590 generic/sched-generic.cpp \
591 generic/semnoint-generic.cpp \
592 generic/semsrw-generic.cpp \
593 generic/utf16locale-generic.cpp \
594 generic/uuid-generic.cpp \
595 l4/l4-errno.cpp \
596 l4/rtProcInitExePath-l4.cpp \
597 l4/process-l4env.cpp \
598 l4/sems-l4env.cpp \
599 l4/thread-l4env.cpp \
600 l4/timer-l4env.cpp \
601 l4/utf8-l4env.cpp \
602 r3/posix/alloc-posix.cpp \
603 r3/posix/dir-posix.cpp \
604 r3/posix/env-posix.cpp \
605 r3/posix/fileio-posix.cpp \
606 r3/posix/filelock-posix.cpp \
607 r3/posix/ldrNative-posix.cpp \
608 r3/posix/path-posix.cpp \
609 r3/posix/rand-posix.cpp \
610 r3/posix/RTTimeNow-posix.cpp \
611 r3/posix/time-posix.cpp \
612 r3/posix/timelocal-posix.cpp
613
614
615#
616# RuntimeGuestR3 - Guest Additions Runtime (static).
617# (The KBUILD_HOST inheritance here is for l4 cross building the linux
618# additions, while .x86 is for cross building x86 while targeting amd64.)
619#
620RuntimeGuestR3_TEMPLATE := VBOXGUESTR3LIB
621## @todo change this to EXTEND the RuntimeR3 target.
622RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
623RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS))
624RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
625RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
626RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
627RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
628RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
629RuntimeGuestR3_SOURCES := $(filter-out \
630 common/time/timesupref.cpp \
631 common/time/timesupA.asm \
632 common/time/timesup.cpp \
633 generic/RTLogWriteUser-generic.cpp \
634 , $(RuntimeR3_SOURCES))
635RuntimeGuestR3_SOURCES += \
636 common/time/timesysalias.cpp \
637 VBox/logbackdoor.cpp
638RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
639RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
640RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
641RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))
642
643
644#
645# RuntimeGuestR3Mini - Minimal Guest Additions Runtime which does not require
646# initialization and can be linked into an .so. Intended
647# for X11 drivers, GRADD and similar.
648#
649RuntimeGuestR3Mini_TEMPLATE := VBOXGUESTR3DLL
650## @todo change this to EXTEND the RuntimeGuestR3 target.
651RuntimeGuestR3Mini_INST := $(INST_ADDITIONS_LIB)
652RuntimeGuestR3Mini_SDKS.win := $(RuntimeR3_SDKS.win)
653RuntimeGuestR3Mini_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS)) RT_MINI
654RuntimeGuestR3Mini_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
655RuntimeGuestR3Mini_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
656RuntimeGuestR3Mini_INCS := $(RuntimeR3_INCS)
657RuntimeGuestR3Mini_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
658RuntimeGuestR3Mini_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
659RuntimeGuestR3Mini_SOURCES = \
660 common/err/errmsg.cpp \
661 common/err/errmsgxpcom.cpp \
662 common/err/RTErrConvertFromErrno.cpp \
663 common/log/logformat.cpp \
664 common/misc/assert.cpp \
665 common/misc/sanity-c.c \
666 common/misc/sanity-cpp.cpp \
667 common/string/strformat.cpp \
668 common/string/strformatrt.cpp \
669 common/string/strformattype.cpp \
670 common/string/string.cpp \
671 common/string/strprintf.cpp \
672 common/string/strtonum.cpp \
673 common/string/unidata.cpp \
674 common/string/utf-8.cpp \
675 common/string/utf-16.cpp \
676 generic/pathhost-generic.cpp \
677 generic/RTAssertShouldPanic-generic.cpp \
678 r3/alloc.cpp \
679 r3/fileio.cpp \
680 r3/fs.cpp \
681 r3/path.cpp
682RuntimeGuestR3Mini_SOURCES.linux = \
683 r3/posix/fileio-posix.cpp \
684 r3/posix/path-posix.cpp \
685 r3/posix/utf8-posix.cpp
686RuntimeGuestR3Mini_SOURCES.solaris = \
687 r3/posix/fileio-posix.cpp \
688 r3/posix/path-posix.cpp \
689 r3/posix/utf8-posix.cpp
690RuntimeGuestR3Mini_SOURCES.freebsd = \
691 r3/posix/fileio-posix.cpp \
692 r3/posix/path-posix.cpp \
693 r3/posix/utf8-posix.cpp
694# VBox specific stuff.
695RuntimeGuestR3Mini_SOURCES += \
696 VBox/logbackdoor.cpp \
697 VBox/logbackdoor-redirect.cpp \
698 VBox/strformat-vbox.cpp
699
700
701#
702# RuntimeLnxHostR3 Linux host program runtime
703# (Only used when building L4.)
704#
705RuntimeLnxHostR3_TEMPLATE = VBOXLNXHOSTR3LIB
706RuntimeLnxHostR3_DEFS = IN_RT_R3 IN_SUP_R3 RT_WITH_VBOX RT_NO_GIP
707RuntimeLnxHostR3_SOURCES = \
708 $(RuntimeR3_SOURCES.linux.$(KBUILD_TARGET_ARCH)) \
709 $(RuntimeR3_SOURCES.linux) \
710 $(RuntimeR3_SOURCES)
711RuntimeLnxHostR3_INCS = \
712 $(RuntimeR3_INCS.linux.$(KBUILD_TARGET_ARCH)) \
713 $(RuntimeR3_INCS.linux) \
714 $(RuntimeR3_INCS)
715
716
717#
718# VBoxRT - Shared Object / DLL version.
719#
720VBoxRT_TEMPLATE = VBOXR3
721VBoxRT_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
722ifeq ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING),darwin)
723VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
724endif
725VBoxRT_DEFS = $(RuntimeR3_DEFS) IN_SUP_R3 IN_SUP_R3
726VBoxRT_DEFS.$(KBUILD_TYPE) = $(RuntimeR3_DEFS.$(KBUILD_TYPE))
727VBoxRT_SOURCES = \
728 VBox/VBoxRTDeps.cpp \
729 $(RuntimeR3_SOURCES)
730VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
731VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
732VBoxRT_SOURCES.win += r3/win/dllmain-win.cpp
733VBoxRT_SOURCES.win.x86 += r3/win/VBoxRT-win32.def
734VBoxRT_SOURCES.win.amd64 += r3/win/VBoxRT-win64.def
735VBoxRT_INCS = $(RuntimeR3_INCS)
736VBoxRT_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
737VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
738VBoxRT_LIBS = \
739 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB) \
740 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
741ifdef IPRT_WITH_KSTUFF
742 VBoxRT_LIBS += \
743 $(PATH_LIB)/VBox-kStuff$(VBOX_SUFF_LIB)
744endif
745VBoxRT_LIBS.darwin = \
746 iconv
747VBoxRT_LIBS.freebsd = \
748 iconv \
749 rt
750VBoxRT_LIBS.solaris = \
751 kstat
752VBoxRT_LDFLAGS.darwin = -framework IOKit -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
753ifdef VBOX_USE_VCC80
754VBoxRT_LDFLAGS.win = /MANIFEST
755endif
756VBoxRT_LDFLAGS.l4 = \
757 -Wl,-whole-archive \
758 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
759 -Wl,-no-whole-archive
760ifeq ($(KBUILD_TARGET),l4)
761VBoxRT_LIBS += \
762 $(L4_LIBDIR)/libl4sys.a \
763 $(L4_LIBDIR)/libl4sys.p.a
764endif
765VBoxRT_LIBS.l4 = \
766 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
767
768#
769# HACK ALLERT! Make testcase run during build on SELinux boxes.
770# Create a dummy DLL that ensure that VBoxRT is installed
771# during the DLL pass and cleaned up later.
772#
773ifeq ($(KBUILD_TARGET),linux)
774 if1of (VBoxRT, $(DLLS))
775 ifneq ($(wildcard /usr/bin/chcon),)
776VBoxRT_NOINST = true
777
778DLLS += VBoxRTDummy
779VBoxRTDummy_TEMPLATE = VBOXR3
780VBoxRTDummy_NOINST = true
781VBoxRTDummy_LIBS = $(PATH_BIN)/VBoxRT.so
782VBoxRTDummy_CLEAN= $(PATH_BIN)/VBoxRT.so
783BLDDIRS += $(PATH_BIN)
784
785$(PATH_BIN)/VBoxRT.so: $$(TARGET_VBoxRT) | $$(dir $$@)
786 $(INSTALL) $< $@
787 chcon -t texrel_shlib_t $@ || true
788
789 endif # chcon present.
790 endif # building VBoxRT
791endif # linux
792
793#
794# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
795# This is used together with VBoxRT.
796#
797## @todo the *_alias.c stuff is busted, remove and use RT_WITH_NOCRT_ALIASES instead.
798RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
799RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
800RuntimeR3NoCRTGCC_INCS = include
801RuntimeR3NoCRTGCC_SOURCES = \
802 common/misc/sanity-cpp.cpp \
803 common/misc/sanity-c.c \
804 \
805 common/math/ceill.asm \
806 common/math/cosl.asm \
807 common/math/fabs.asm \
808 common/math/fabsf.asm \
809 common/math/fabsl.asm \
810 common/math/floor.asm \
811 common/math/floorf.asm \
812 common/math/floorl.asm \
813 common/math/ldexpl.asm \
814 common/math/llrint.asm \
815 common/math/llrintf.asm \
816 common/math/llrintl.asm \
817 common/math/logl.asm \
818 common/math/lrint.asm \
819 common/math/lrintf.asm \
820 common/math/lrintl.asm \
821 common/math/remainder.asm \
822 common/math/remainderf.asm \
823 common/math/remainderl.asm \
824 common/math/sinl.asm \
825 common/math/tanl.asm \
826 common/math/trunc.asm \
827 common/math/truncf.asm \
828 common/math/truncl.asm \
829 \
830 $(RuntimeNoCrt_SOURCES) \
831 \
832 common/string/memchr_alias.c \
833 common/string/memcmp_alias.c \
834 common/string/memcpy_alias.c \
835 common/string/memmove_alias.c \
836 common/string/memset_alias.c \
837 common/string/strchr_alias.c \
838 common/string/strcmp_alias.c \
839 common/string/strlen_alias.c
840
841RuntimeR3NoCRTGCC_SOURCES.x86 = \
842 common/math/x86/fenv-x86.c \
843 common/math/gcc/adddi3.c \
844 common/math/gcc/anddi3.c \
845 common/math/gcc/ashldi3.c \
846 common/math/gcc/ashrdi3.c \
847 common/math/gcc/cmpdi2.c \
848 common/math/gcc/divdi3.c \
849 common/math/gcc/iordi3.c \
850 common/math/gcc/lshldi3.c \
851 common/math/gcc/lshrdi3.c \
852 common/math/gcc/moddi3.c \
853 common/math/gcc/muldi3.c \
854 common/math/gcc/negdi2.c \
855 common/math/gcc/notdi2.c \
856 common/math/gcc/qdivrem.c \
857 common/math/gcc/subdi3.c \
858 common/math/gcc/ucmpdi2.c \
859 common/math/gcc/udivdi3.c \
860 common/math/gcc/umoddi3.c \
861 common/math/gcc/xordi3.c
862
863
864## @todo stop using the old memcpy.c and memset.c code.
865
866#
867# RuntimeR0 - Ring0 library for VMMR0.
868#
869RuntimeR0_TEMPLATE = VBOXR0
870RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
871RuntimeR0_INCS = include
872RuntimeR0_SOURCES = \
873 common/checksum/crc32.cpp \
874 common/checksum/crc64.cpp \
875 common/checksum/md5.cpp \
876 common/checksum/ipv4.cpp \
877 common/log/logellipsis.cpp \
878 common/log/logrelellipsis.cpp \
879 common/log/logcom.cpp \
880 common/log/logformat.cpp \
881 common/misc/assert.cpp \
882 common/misc/handletable.cpp \
883 common/misc/handletablectx.cpp \
884 common/misc/handletablesimple.cpp \
885 common/misc/sanity-c.c \
886 common/misc/sanity-cpp.cpp \
887 common/misc/RTAssertMsg2.cpp \
888 common/string/strformat.cpp \
889 common/string/strformatrt.cpp \
890 common/string/strformattype.cpp \
891 common/string/strncmp.cpp \
892 common/string/strpbrk.cpp \
893 common/string/strprintf.cpp \
894 common/table/avlgcptr.cpp \
895 common/table/avlhcphys.cpp \
896 common/table/avllu32.cpp \
897 common/table/avlogcphys.cpp \
898 common/table/avlogcptr.cpp \
899 common/table/avlohcphys.cpp \
900 common/table/avloioport.cpp \
901 common/table/avlpv.cpp \
902 common/table/avlrogcphys.cpp \
903 common/table/avlrogcptr.cpp \
904 common/table/avlroioport.cpp \
905 common/table/avlroogcptr.cpp \
906 common/table/avlu32.cpp \
907 common/time/timesup.cpp \
908 generic/RTAssertShouldPanic-generic.cpp \
909 VBox/strformat-vbox.cpp \
910 \
911 $(RuntimeNoCrt_SOURCES)
912
913if1of ($(KBUILD_TARGET), darwin solaris freebsd)
914RuntimeR0_SOURCES += \
915 common/math/gcc/adddi3.c \
916 common/math/gcc/anddi3.c \
917 common/math/gcc/ashldi3.c \
918 common/math/gcc/ashrdi3.c \
919 common/math/gcc/cmpdi2.c \
920 common/math/gcc/divdi3.c \
921 common/math/gcc/iordi3.c \
922 common/math/gcc/lshldi3.c \
923 common/math/gcc/lshrdi3.c \
924 common/math/gcc/moddi3.c \
925 common/math/gcc/muldi3.c \
926 common/math/gcc/negdi2.c \
927 common/math/gcc/notdi2.c \
928 common/math/gcc/qdivrem.c \
929 common/math/gcc/subdi3.c \
930 common/math/gcc/ucmpdi2.c \
931 common/math/gcc/udivdi3.c \
932 common/math/gcc/umoddi3.c \
933 common/math/gcc/xordi3.c
934endif
935
936#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
937# RuntimeR0_SOURCES += common/time/timesupA.asm
938#else
939 RuntimeR0_SOURCES += common/time/timesupref.cpp
940#endif
941
942RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
943RuntimeR0_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
944
945RuntimeR0_SOURCES.os2 = \
946 os2/RTErrConvertFromOS2.cpp \
947 os2/sys0.asm
948
949
950#
951# RuntimeR0Drv - Ring0 library for host drivers.
952#
953RuntimeR0Drv_TEMPLATE = VBOXR0DRV
954RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS
955RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
956RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
957RuntimeR0Drv_DEFS.win = IN_SUP_R0
958RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0 # why is IN_SUP_R0 here? because!
959
960RuntimeR0Drv_INCS.linux = \
961 r0drv/linux
962ifdef VBOX_WITH_SOLARIS_VBI
963 RuntimeR0Drv_INCS.solaris = \
964 r0drv/solaris/vbi/i86pc
965endif
966
967RuntimeR0Drv_SOURCES = \
968 common/alloc/alloc.cpp \
969 common/misc/RTAssertMsg2.cpp \
970 common/checksum/crc32.cpp \
971 common/checksum/crc64.cpp \
972 common/checksum/md5.cpp \
973 common/checksum/ipv4.cpp \
974 common/log/log.cpp \
975 common/log/logellipsis.cpp \
976 common/log/logrel.cpp \
977 common/log/logrelellipsis.cpp \
978 common/log/logcom.cpp \
979 common/log/logformat.cpp \
980 common/misc/assert.cpp \
981 common/misc/handletable.cpp \
982 common/misc/handletablectx.cpp \
983 common/misc/handletablesimple.cpp \
984 common/misc/sanity-c.c \
985 common/misc/sanity-cpp.cpp \
986 common/string/strformat.cpp \
987 common/string/strformatrt.cpp \
988 common/string/strformattype.cpp \
989 common/string/strprintf.cpp \
990 common/string/strtonum.cpp \
991 common/table/avlpv.cpp \
992 generic/RTLogWriteStdErr-stub-generic.cpp \
993 generic/RTLogWriteUser-generic.cpp \
994 generic/uuid-generic.cpp \
995 r0drv/alloc-r0drv.cpp \
996 r0drv/initterm-r0drv.cpp \
997 VBox/log-vbox.cpp \
998 VBox/strformat-vbox.cpp
999
1000## @todo: Linking against RuntimeR0Drv on Linux will result in unresolved external
1001## references to several string functions (e.g. strlen). We could include the
1002## missing functions here but our own implementations conflict with declarations
1003## of some Linux kernels (inline versus not inline, size_t versus unsigned int).
1004##
1005## The prototypes for the unresolved externals are declared in <linux/string.h>.
1006## This file is not included with extern "C" { ... } and therefore the function
1007## prototypes are mangled during C++ compilation. That's why we have to provide
1008## implementations with mangled function names.
1009##
1010## bird: Why don't we just extern "C" {} that file then?
1011RuntimeR0Drv_SOURCES.linux = \
1012 common/alloc/heapsimple.cpp \
1013 common/string/strpbrk.cpp \
1014 common/err/RTErrConvertToErrno.cpp \
1015 common/err/RTErrConvertFromErrno.cpp \
1016 generic/RTAssertShouldPanic-generic.cpp \
1017 generic/RTLogWriteStdOut-stub-generic.cpp \
1018 generic/mppresent-generic.cpp \
1019 r0drv/linux/alloc-r0drv-linux.c \
1020 r0drv/linux/assert-r0drv-linux.c \
1021 r0drv/linux/initterm-r0drv-linux.c \
1022 r0drv/linux/memobj-r0drv-linux.c \
1023 r0drv/linux/mp-r0drv-linux.c \
1024 r0drv/linux/mpnotification-r0drv-linux.c \
1025 r0drv/linux/process-r0drv-linux.c \
1026 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
1027 r0drv/linux/RTThreadPreemptDisable-r0drv-linux.c \
1028 r0drv/linux/RTThreadPreemptRestore-r0drv-linux.c \
1029 r0drv/linux/semevent-r0drv-linux.c \
1030 r0drv/linux/semeventmulti-r0drv-linux.c \
1031 r0drv/linux/semfastmutex-r0drv-linux.c \
1032 r0drv/linux/spinlock-r0drv-linux.c \
1033 r0drv/linux/thread-r0drv-linux.c \
1034 r0drv/linux/thread2-r0drv-linux.c \
1035 r0drv/linux/time-r0drv-linux.c \
1036 r0drv/linux/timer-r0drv-linux.c \
1037 r0drv/memobj-r0drv.cpp \
1038 r0drv/mpnotification-r0drv.c \
1039 r0drv/powernotification-r0drv.c
1040## @todo thread2-r0drv-linux.c and assert-r0drv-linux.c
1041
1042RuntimeR0Drv_SOURCES.win = \
1043 common/misc/thread.cpp \
1044 common/string/memcmp.asm \
1045 common/string/memchr.asm \
1046 common/string/memcpy.asm \
1047 common/string/memset.asm \
1048 common/string/memmove.asm \
1049 common/string/strlen.asm \
1050 common/string/strncmp.cpp \
1051 common/string/strpbrk.cpp \
1052 generic/RTAssertShouldPanic-generic.cpp \
1053 generic/RTLogWriteStdOut-stub-generic.cpp \
1054 generic/mppresent-generic.cpp \
1055 nt/RTErrConvertFromNtStatus.cpp \
1056 r0drv/memobj-r0drv.cpp \
1057 r0drv/mpnotification-r0drv.c \
1058 r0drv/powernotification-r0drv.c \
1059 r0drv/nt/alloc-r0drv-nt.cpp \
1060 r0drv/nt/assert-r0drv-nt.cpp \
1061 r0drv/nt/initterm-r0drv-nt.cpp \
1062 r0drv/nt/memobj-r0drv-nt.cpp \
1063 r0drv/nt/mp-r0drv-nt.cpp \
1064 r0drv/nt/mpnotification-r0drv-nt.cpp \
1065 r0drv/nt/process-r0drv-nt.cpp \
1066 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
1067 r0drv/nt/semevent-r0drv-nt.cpp \
1068 r0drv/nt/semeventmulti-r0drv-nt.cpp \
1069 r0drv/nt/semfastmutex-r0drv-nt.cpp \
1070 r0drv/nt/semmutex-r0drv-nt.cpp \
1071 r0drv/nt/spinlock-r0drv-nt.cpp \
1072 r0drv/nt/thread-r0drv-nt.cpp \
1073 r0drv/nt/thread2-r0drv-nt.cpp \
1074 r0drv/nt/time-r0drv-nt.cpp \
1075 r0drv/nt/timer-r0drv-nt.cpp
1076
1077RuntimeR0Drv_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
1078RuntimeR0Drv_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1079
1080RuntimeR0Drv_SOURCES.darwin = \
1081 common/err/RTErrConvertFromErrno.cpp \
1082 common/misc/RTAssertMsg1Weak.cpp \
1083 common/misc/RTAssertMsg2Weak.cpp \
1084 common/misc/thread.cpp \
1085 common/string/memchr.asm \
1086 common/string/strpbrk.cpp \
1087 darwin/RTErrConvertFromDarwin.cpp \
1088 darwin/RTErrConvertFromDarwinIO.cpp \
1089 darwin/RTErrConvertFromDarwinKern.cpp \
1090 generic/RTAssertShouldPanic-generic.cpp \
1091 generic/RTTimerCreate-generic.cpp \
1092 generic/mppresent-generic.cpp \
1093 generic/timer-generic.cpp \
1094 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1095 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1096 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1097 r0drv/generic/mpnotification-r0drv-generic.cpp \
1098 r0drv/darwin/alloc-r0drv-darwin.cpp \
1099 r0drv/darwin/assert-r0drv-darwin.cpp \
1100 r0drv/darwin/initterm-r0drv-darwin.cpp \
1101 r0drv/darwin/memobj-r0drv-darwin.cpp \
1102 r0drv/darwin/mp-r0drv-darwin.cpp \
1103 r0drv/darwin/process-r0drv-darwin.cpp \
1104 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
1105 r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
1106 r0drv/darwin/semaphore-r0drv-darwin.cpp \
1107 r0drv/darwin/spinlock-r0drv-darwin.cpp \
1108 r0drv/darwin/thread-r0drv-darwin.cpp \
1109 r0drv/darwin/thread2-r0drv-darwin.cpp \
1110 r0drv/darwin/time-r0drv-darwin.cpp \
1111 r0drv/memobj-r0drv.cpp \
1112 r0drv/powernotification-r0drv.c
1113
1114RuntimeR0Drv_SOURCES.os2 = \
1115 common/string/memchr.asm \
1116 common/string/memcmp.asm \
1117 common/string/memcpy.asm \
1118 common/string/mempcpy.asm \
1119 common/string/memmove.asm \
1120 common/string/memset.asm \
1121 common/string/strchr.asm \
1122 common/string/strcmp.asm \
1123 common/string/strcpy.asm \
1124 common/string/strlen.asm \
1125 \
1126 common/string/strncmp.cpp \
1127 common/string/strpbrk.cpp \
1128 \
1129 common/misc/thread.cpp \
1130 generic/RTAssertShouldPanic-generic.cpp \
1131 generic/RTLogWriteDebugger-generic.cpp \
1132 generic/RTLogWriteStdOut-stub-generic.cpp \
1133 generic/RTMpCpuId-generic.cpp \
1134 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1135 generic/RTMpCpuIdToSetIndex-generic.cpp \
1136 generic/RTMpIsCpuPossible-generic.cpp \
1137 generic/RTMpGetCount-generic.cpp \
1138 generic/RTMpGetMaxCpuId-generic.cpp \
1139 generic/RTMpGetOnlineCount-generic.cpp \
1140 generic/RTMpGetOnlineSet-generic.cpp \
1141 generic/RTMpGetSet-generic.cpp \
1142 generic/RTMpIsCpuOnline-generic.cpp \
1143 generic/RTTimerCreate-generic.cpp \
1144 generic/mppresent-generic.cpp \
1145 os2/RTErrConvertFromOS2.cpp \
1146 os2/sys0.asm \
1147 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1148 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1149 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1150 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1151 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1152 r0drv/generic/mpnotification-r0drv-generic.cpp \
1153 r0drv/memobj-r0drv.cpp \
1154 r0drv/powernotification-r0drv.c \
1155 r0drv/os2/alloc-r0drv-os2.cpp \
1156 r0drv/os2/assert-r0drv-os2.cpp \
1157 r0drv/os2/assertA-r0drv-os2.asm \
1158 r0drv/os2/initterm-r0drv-os2.cpp \
1159 r0drv/os2/memobj-r0drv-os2.cpp \
1160 r0drv/os2/os2imports.imp \
1161 r0drv/os2/process-r0drv-os2.cpp \
1162 r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
1163 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
1164 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
1165 r0drv/os2/semevent-r0drv-os2.cpp \
1166 r0drv/os2/semeventmulti-r0drv-os2.cpp \
1167 r0drv/os2/semfastmutex-r0drv-os2.cpp \
1168 r0drv/os2/spinlock-r0drv-os2.cpp \
1169 r0drv/os2/thread-r0drv-os2.cpp \
1170 r0drv/os2/thread2-r0drv-os2.cpp \
1171 r0drv/os2/time-r0drv-os2.cpp \
1172 r0drv/os2/timer-r0drv-os2.cpp \
1173 r0drv/os2/timerA-r0drv-os2.asm
1174
1175RuntimeR0Drv_SOURCES.freebsd = \
1176 common/err/RTErrConvertFromErrno.cpp \
1177 common/err/RTErrConvertToErrno.cpp \
1178 common/misc/thread.cpp \
1179 common/string/memchr.asm \
1180 common/string/memmove.asm \
1181 common/string/strpbrk.cpp \
1182 common/string/memcmp.asm \
1183 common/string/strchr.asm \
1184 generic/RTAssertShouldPanic-generic.cpp \
1185 generic/RTLogWriteDebugger-generic.cpp \
1186 generic/RTLogWriteStdOut-stub-generic.cpp \
1187 generic/RTMpCpuId-generic.cpp \
1188 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1189 generic/RTMpCpuIdToSetIndex-generic.cpp \
1190 generic/RTMpIsCpuPossible-generic.cpp \
1191 generic/RTMpGetCount-generic.cpp \
1192 generic/RTMpGetMaxCpuId-generic.cpp \
1193 generic/RTMpGetOnlineCount-generic.cpp \
1194 generic/RTMpGetOnlineSet-generic.cpp \
1195 generic/RTMpGetSet-generic.cpp \
1196 generic/RTMpIsCpuOnline-generic.cpp \
1197 generic/RTTimerCreate-generic.cpp \
1198 generic/mppresent-generic.cpp \
1199 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1200 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1201 r0drv/generic/RTThreadPreemptIsEnabled-r0drv-generic.cpp \
1202 r0drv/generic/RTThreadPreemptDisable-r0drv-generic.cpp \
1203 r0drv/generic/RTThreadPreemptRestore-r0drv-generic.cpp \
1204 r0drv/generic/mpnotification-r0drv-generic.cpp \
1205 r0drv/freebsd/alloc-r0drv-freebsd.c \
1206 r0drv/freebsd/assert-r0drv-freebsd.c \
1207 r0drv/freebsd/initterm-r0drv-freebsd.c \
1208 r0drv/freebsd/memobj-r0drv-freebsd.c \
1209 r0drv/freebsd/process-r0drv-freebsd.c \
1210 r0drv/freebsd/semevent-r0drv-freebsd.c \
1211 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
1212 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
1213 r0drv/freebsd/spinlock-r0drv-freebsd.c \
1214 r0drv/freebsd/thread-r0drv-freebsd.c \
1215 r0drv/freebsd/thread2-r0drv-freebsd.c \
1216 r0drv/freebsd/time-r0drv-freebsd.c \
1217 r0drv/freebsd/timer-r0drv-freebsd.c \
1218 r0drv/memobj-r0drv.cpp \
1219 r0drv/powernotification-r0drv.c
1220
1221RuntimeR0Drv_SOURCES.solaris = \
1222 common/err/RTErrConvertFromErrno.cpp \
1223 common/misc/thread.cpp \
1224 common/string/memchr.asm \
1225 generic/RTAssertShouldPanic-generic.cpp \
1226 generic/RTLogWriteStdOut-stub-generic.cpp \
1227 generic/RTTimerCreate-generic.cpp \
1228 generic/mppresent-generic.cpp \
1229 r0drv/memobj-r0drv.cpp \
1230 r0drv/mpnotification-r0drv.c \
1231 r0drv/powernotification-r0drv.c \
1232 r0drv/solaris/assert-r0drv-solaris.c \
1233 r0drv/solaris/initterm-r0drv-solaris.c \
1234 r0drv/solaris/semevent-r0drv-solaris.c \
1235 r0drv/solaris/semeventmulti-r0drv-solaris.c \
1236 r0drv/solaris/semfastmutex-r0drv-solaris.c \
1237 r0drv/solaris/spinlock-r0drv-solaris.c
1238
1239ifdef VBOX_WITH_SOLARIS_VBI
1240 RuntimeR0Drv_SOURCES.solaris += \
1241 r0drv/solaris/vbi/mpnotification-r0drv-solaris.c \
1242 r0drv/solaris/vbi/alloc-r0drv-solaris.c \
1243 r0drv/solaris/vbi/memobj-r0drv-solaris.c \
1244 r0drv/solaris/vbi/mp-r0drv-solaris.c \
1245 r0drv/solaris/vbi/process-r0drv-solaris.c \
1246 r0drv/solaris/vbi/RTLogWriteDebugger-r0drv-solaris.c \
1247 r0drv/solaris/vbi/thread-r0drv-solaris.c \
1248 r0drv/solaris/vbi/thread2-r0drv-solaris.c \
1249 r0drv/solaris/vbi/time-r0drv-solaris.c \
1250 r0drv/solaris/vbi/timer-r0drv-solaris.c
1251else # !VBOX_WITH_SOLARIS_VBI
1252 RuntimeR0Drv_SOURCES.solaris += \
1253 r0drv/solaris/mpnotification-r0drv-solaris.c \
1254 r0drv/solaris/alloc-r0drv-solaris.c \
1255 r0drv/solaris/memobj-r0drv-solaris.c \
1256 r0drv/solaris/process-r0drv-solaris.c \
1257 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
1258 r0drv/solaris/thread-r0drv-solaris.c \
1259 r0drv/solaris/thread2-r0drv-solaris.c \
1260 r0drv/solaris/time-r0drv-solaris.c \
1261 r0drv/solaris/timer-r0drv-solaris.c
1262 # Don't use mp-r0drv-solaris.c because it will cause crashes due to incorrect memobj-r0drv-solaris.c code.
1263 ifeq (0,0)
1264 # Stub it. ## @todo limit the stubbing to RTMpOn*.
1265 RuntimeR0Drv_SOURCES.solaris += \
1266 generic/RTMpCpuId-generic.cpp \
1267 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1268 generic/RTMpCpuIdToSetIndex-generic.cpp \
1269 generic/RTMpIsCpuPossible-generic.cpp \
1270 generic/RTMpGetCount-generic.cpp \
1271 generic/RTMpGetMaxCpuId-generic.cpp \
1272 generic/RTMpGetOnlineCount-generic.cpp \
1273 generic/RTMpGetOnlineSet-generic.cpp \
1274 generic/RTMpGetSet-generic.cpp \
1275 generic/RTMpIsCpuOnline-generic.cpp \
1276 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1277 r0drv/generic/RTMpOn-r0drv-generic.cpp
1278 else
1279 # Use mp-r0drv-solaris.c.
1280 RuntimeR0Drv_SOURCES.solaris += \
1281 r0drv/solaris/mp-r0drv-solaris.c
1282# r0drv/solaris/mpnotification-r0drv-solaris.c
1283 endif
1284
1285endif # !VBOX_WITH_SOLARIS_VBI
1286
1287## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
1288
1289
1290#
1291# RuntimeGuestR0 - Guest driver runtime.
1292# This is almost the same as the RuntimeR0Drv, the main difference
1293# is in the backdoor logging and the lack of sup.h (which should be
1294# made irrelevant even for RuntimeR0Drv).
1295#
1296RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
1297RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
1298RuntimeGuestR0_SOURCES += VBox/logbackdoor.cpp
1299RuntimeGuestR0_EXTENDS = RuntimeR0Drv
1300
1301# HACK: no vbi for the solaris guest additions - yet.
1302RuntimeGuestR0_SOURCES.solaris = \
1303 common/err/RTErrConvertFromErrno.cpp \
1304 common/err/RTErrConvertToErrno.cpp \
1305 common/misc/thread.cpp \
1306 common/string/memchr.asm \
1307 generic/RTAssertShouldPanic-generic.cpp \
1308 generic/RTTimerCreate-generic.cpp \
1309 r0drv/memobj-r0drv.cpp \
1310 generic/RTMpCpuId-generic.cpp \
1311 generic/RTMpCpuIdFromSetIndex-generic.cpp \
1312 generic/RTMpCpuIdToSetIndex-generic.cpp \
1313 generic/RTMpIsCpuPossible-generic.cpp \
1314 generic/RTMpGetCount-generic.cpp \
1315 generic/RTMpGetMaxCpuId-generic.cpp \
1316 generic/RTMpGetOnlineCount-generic.cpp \
1317 generic/RTMpGetOnlineSet-generic.cpp \
1318 generic/RTMpGetSet-generic.cpp \
1319 generic/RTMpIsCpuOnline-generic.cpp \
1320 generic/RTLogWriteStdOut-stub-generic.cpp \
1321 generic/mppresent-generic.cpp \
1322 r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
1323 r0drv/generic/RTMpOn-r0drv-generic.cpp \
1324 r0drv/generic/mpnotification-r0drv-generic.cpp \
1325 r0drv/solaris/alloc-r0drv-solaris.c \
1326 r0drv/solaris/assert-r0drv-solaris.c \
1327 r0drv/solaris/initterm-r0drv-solaris.c \
1328 r0drv/solaris/memobj-r0drv-solaris.c \
1329 r0drv/solaris/process-r0drv-solaris.c \
1330 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
1331 r0drv/solaris/semevent-r0drv-solaris.c \
1332 r0drv/solaris/semeventmulti-r0drv-solaris.c \
1333 r0drv/solaris/semfastmutex-r0drv-solaris.c \
1334 r0drv/solaris/spinlock-r0drv-solaris.c \
1335 r0drv/solaris/thread-r0drv-solaris.c \
1336 r0drv/solaris/thread2-r0drv-solaris.c \
1337 r0drv/solaris/time-r0drv-solaris.c \
1338 r0drv/solaris/timer-r0drv-solaris.c
1339
1340#
1341# RuntimeGuestR0NT4 - Win32 NT4 guest driver runtime.
1342#
1343RuntimeGuestR0NT4_EXTENDS = RuntimeGuestR0
1344RuntimeGuestR0NT4_EXTENDS_BY = appending
1345RuntimeGuestR0NT4_DEFS = IPRT_TARGET_NT4
1346
1347
1348#
1349# RuntimeGC - Guest context library.
1350#
1351RuntimeGC_TEMPLATE = VBOXGC
1352RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX
1353RuntimeGC_INCS = include
1354RuntimeGC_SOURCES = \
1355 common/log/log.cpp \
1356 common/log/logellipsis.cpp \
1357 common/log/logrel.cpp \
1358 common/log/logrelellipsis.cpp \
1359 common/log/logcom.cpp \
1360 common/log/logformat.cpp \
1361 common/misc/assert.cpp \
1362 common/misc/sanity-c.c \
1363 common/misc/sanity-cpp.cpp \
1364 common/string/strformat.cpp \
1365 common/string/strformatrt.cpp \
1366 common/string/strformattype.cpp \
1367 common/string/strncmp.cpp \
1368 common/string/strpbrk.cpp \
1369 common/string/strprintf.cpp \
1370 common/table/avllu32.cpp \
1371 common/table/avlou32.cpp \
1372 common/table/avlogcphys.cpp \
1373 common/table/avlogcptr.cpp \
1374 common/table/avlohcphys.cpp \
1375 common/table/avloioport.cpp \
1376 common/table/avlrogcphys.cpp \
1377 common/table/avlrogcptr.cpp \
1378 common/table/avlroioport.cpp \
1379 common/table/avlroogcptr.cpp \
1380 common/table/avlu32.cpp \
1381 common/time/timeprog.cpp \
1382 common/time/timesup.cpp \
1383 gc/initterm-gc.cpp \
1384 generic/RTAssertShouldPanic-generic.cpp \
1385 VBox/strformat-vbox.cpp \
1386 \
1387 $(RuntimeNoCrt_SOURCES)
1388
1389#if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
1390# RuntimeGC_SOURCES += common/time/timesupA.asm
1391#else
1392 RuntimeGC_SOURCES += common/time/timesupref.cpp
1393#endif
1394
1395RuntimeGC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1396
1397ifeq ($(VBOX_LDR_FMT32),lx)
1398 RuntimeGC_SOURCES += os2/sys0.asm
1399endif
1400
1401if1of ($(KBUILD_TARGET), darwin solaris freebsd)
1402RuntimeGC_SOURCES += \
1403 common/math/gcc/adddi3.c \
1404 common/math/gcc/anddi3.c \
1405 common/math/gcc/ashldi3.c \
1406 common/math/gcc/ashrdi3.c \
1407 common/math/gcc/cmpdi2.c \
1408 common/math/gcc/divdi3.c \
1409 common/math/gcc/iordi3.c \
1410 common/math/gcc/lshldi3.c \
1411 common/math/gcc/lshrdi3.c \
1412 common/math/gcc/moddi3.c \
1413 common/math/gcc/muldi3.c \
1414 common/math/gcc/negdi2.c \
1415 common/math/gcc/notdi2.c \
1416 common/math/gcc/qdivrem.c \
1417 common/math/gcc/subdi3.c \
1418 common/math/gcc/ucmpdi2.c \
1419 common/math/gcc/udivdi3.c \
1420 common/math/gcc/umoddi3.c \
1421 common/math/gcc/xordi3.c
1422endif
1423
1424
1425#
1426# Static library for new & delete for the electric fence.
1427#
1428RuntimeEFCPP_TEMPLATE = $(RuntimeR3_TEMPLATE)
1429RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
1430RuntimeEFCPP_SDKS.$(KBUILD_TARGET) = $(RuntimeR3_SDKS.$(KBUILD_TARGET))
1431RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
1432RuntimeEFCPP_DEFS.$(KBUILD_TARGET) = $(RuntimeR3_DEFS.$(KBUILD_TARGET))
1433RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
1434RuntimeEFCPP_INCS.$(KBUILD_TARGET) = $(RuntimeR3_INCS.$(KBUILD_TARGET))
1435RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
1436
1437
1438
1439#
1440# errmsg.cpp depends on a generated header.
1441#
1442common/err/errmsg.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
1443common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
1444
1445win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgcomdata.h
1446win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
1447
1448# Our COM errors only for R3 libraries on the host
1449define def_errmsgwin_deps
1450 $(lib)_win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1451 $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
1452 $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
1453endef
1454$(foreach lib,RuntimeR3 VBoxRT RuntimeLnxHostR3,$(eval $(def_errmsgwin_deps)))
1455
1456
1457#
1458# Generate the rules (we're the to sub-makefile).
1459#
1460include $(KBUILD_PATH)/subfooter.kmk
1461
1462
1463#
1464# Generate the status code data.
1465#
1466$(IPRT_OUT_DIR)/errmsgdata.h: \
1467 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
1468 $(PATH_ROOT)/include/iprt/err.h \
1469 $(PATH_ROOT)/include/VBox/err.h \
1470 | $$(dir $$@)
1471 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1472 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1473
1474## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
1475$(IPRT_OUT_DIR)/errmsgcomdata.h: \
1476 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
1477 $$(PATH_SDK_WINPSDK_INC)/WinError.h \
1478 | $$(dir $$@)
1479 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1480 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1481
1482$(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
1483 $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
1484 $(VBOX_PATH_RUNTIME_SRC)/../Main/idl/VirtualBox.xidl \
1485 | $$(dir $$@)
1486 $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
1487 $(VBOX_XSLTPROC) -o $@ $< $(filter %.xidl,$^)
1488
1489
1490#
1491# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
1492#
1493ldrELFRelocatable.cpp.o: ldrELF.o
1494ldrELFRelocatable.cpp.obj: ldrELF.obj
1495
1496
1497#
1498# Doxygen documentation.
1499#
1500IPRT_DOXYFILE_INPUT_DIRS = \
1501 $(PATH_ROOT)/include/iprt \
1502 $(PATH_ROOT)/include/iprt/nocrt \
1503 $(PATH_ROOT)/include/iprt/nocrt/x86 \
1504 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
1505 $(VBOX_PATH_RUNTIME_SRC)/include/internal \
1506 $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
1507 $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
1508 $(VBOX_PATH_RUNTIME_SRC)/common/err \
1509 $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
1510 $(VBOX_PATH_RUNTIME_SRC)/common/log \
1511 $(VBOX_PATH_RUNTIME_SRC)/common/misc \
1512 $(VBOX_PATH_RUNTIME_SRC)/common/string \
1513 $(VBOX_PATH_RUNTIME_SRC)/common/table \
1514 $(VBOX_PATH_RUNTIME_SRC)/common/time \
1515 $(VBOX_PATH_RUNTIME_SRC)/VBox \
1516 $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv,\
1517 $(dir) \
1518 $(dir)/darwin \
1519 $(dir)/l4 \
1520 $(dir)/linux \
1521 $(dir)/nt \
1522 $(dir)/os2 \
1523 $(dir)/win \
1524 $(dir)/win32 \
1525 $(dir)/win64 \
1526 $(dir)/generic \
1527 )
1528
1529# These must come first in order to make things look nice.
1530IPRT_DOXYFILE_INPUT_FIRST =\
1531 $(PATH_ROOT)/include/iprt/cdefs.h \
1532 $(PATH_ROOT)/include/iprt/types.h \
1533 $(PATH_ROOT)/include/iprt/runtime.h \
1534 $(PATH_ROOT)/include/iprt/param.h \
1535 $(PATH_ROOT)/include/iprt/assert.h \
1536 $(PATH_ROOT)/include/iprt/asm.h \
1537
1538IPRT_DOXYFILE_INPUT := \
1539 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
1540 $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
1541IPRT_DOXYFILE_INPUT := \
1542 $(IPRT_DOXYFILE_INPUT_FIRST) \
1543 $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT))
1544
1545
1546IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
1547BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
1548
1549includedep $(IPRT_OUT_DIR)/Doxyfile.iprt.dep
1550
1551# Generate the Doxyfile
1552$(IPRT_OUT_DIR)/Doxyfile.iprt: \
1553 $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
1554 $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
1555 $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
1556 $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
1557 | $$(dir $$@)
1558 $(RM) -f $@ [email protected] [email protected]
1559 $(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile [email protected]
1560 $(APPEND) [email protected]
1561 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
1562 $(APPEND) [email protected] "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
1563 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"
1564 $(APPEND) [email protected] "INCLUDE_FILE_PATTERNS = *.cpp.h"
1565 $(APPEND) [email protected] "PREDEFINED += $(ARCH_BITS_DEFS)"
1566 $(APPEND) [email protected]
1567 $(APPEND) [email protected] "INPUT = $(IPRT_DOXYFILE_INPUT)"
1568 $(APPEND) [email protected]
1569 $(MV) -f [email protected] $@
1570 @$(APPEND) [email protected] "DOXYGEN_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
1571 @$(APPEND) [email protected] "DOXYGEN_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
1572
1573# Do the actual job.
1574$(IPRT_OUT_DIR)/docs.iprt: $(IPRT_OUT_DIR)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) | $(IPRT_DOXYFILE_OUTPUT)/
1575 $(RM) -f $(wildcard $(IPRT_DOXYFILE_OUTPUT)/html/*) $(IPRT_OUT_DIR)/docs.iprt
1576 doxygen $(IPRT_OUT_DIR)/Doxyfile.iprt
1577 $(APPEND) $(IPRT_OUT_DIR)/docs.iprt
1578
1579# aliases
1580docs.iprt: $(IPRT_OUT_DIR)/docs.iprt
1581if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
1582docs: $(IPRT_OUT_DIR)/docs.iprt
1583endif
1584
1585test-doxygen::
1586 @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1587 @echo $(IPRT_DOXYFILE_OUTPUT)
1588 @echo $(DOXYGEN_OUTPUT_PREV)
1589 @echo $(IPRT_DOXYFILE_INPUT)
1590
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