VirtualBox

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

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

The VMMR0 template now uses the IPRT No-CRT stuff, as does RuntimeR0. Added nocrt strcpy and fixed completely busted aliases.

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

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette