VirtualBox

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

Last change on this file since 20744 was 20740, checked in by vboxsync, 15 years ago

iprt: More RTDbg coding; added a new AVL tree for RTUINPTR.

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