VirtualBox

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

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

IPRT: build hack to make the VBoxRT alias do the install bits when the chcon hack is active.

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