VirtualBox

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

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

IPRT: Use the generic RTDirCreateTemp implementation - made it a bit more flexible and added a testcase for it.

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