VirtualBox

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

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

Runtime: typo (win32 build)

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

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