VirtualBox

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

Last change on this file since 16691 was 16678, checked in by vboxsync, 16 years ago

IPRT/Makefile: Use the unstripped source for generating error stuff.

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