VirtualBox

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

Last change on this file since 6171 was 6147, checked in by vboxsync, 17 years ago

Solaris RTLogWriteDebugger and guest r0 logging changes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 38.3 KB
Line 
1# $Id: Makefile.kmk 6147 2007-12-19 09:17:49Z vboxsync $
2## @file
3# Makefile for the innotek Portable Runtime (IPRT).
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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
27
28DEPTH = ../../..
29include $(PATH_KBUILD)/header.kmk
30
31ifdef VBOX_ONLY_ADDITIONS
32 #
33 # Only build the additions, sort out the legacy names first.
34 #
35 ifeq ($(BUILD_TARGET),linux)
36 LIBRARIES = RuntimeLnx32GuestR0 RuntimeLnx32GuestR3
37 else ifeq ($(BUILD_TARGET),os2)
38 LIBRARIES = RuntimeOS2GuestR0 RuntimeOS2GuestR3 #RuntimeOS2Warp3GuestR0
39 else ifeq ($(BUILD_TARGET),win)
40 LIBRARIES = RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
41 else
42 LIBRARIES = RuntimeGuestR0 RuntimeGuestR3
43 #LIBRARIES.os2 = RuntimeOS2Warp3GuestR0
44 #LIBRARIES.win = RuntimeW32NT4GuestR0
45 endif
46
47 #
48 # Remote cross building... Will be removed unless somebody speaks up!
49 #
50else ifdef VBOX_ADDITIONS_LINUX_ONLY
51 LIBRARIES = RuntimeLnx32GuestR0 RuntimeLnx32GuestR3
52else ifdef VBOX_ADDITIONS_WIN32_ONLY
53 LIBRARIES = RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
54else
55
56 #
57 # Normal build.
58 #
59 BLDPROGS = uniread
60 LIBRARIES = RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC
61 ifdef VBOX_WITH_VBOXDRV
62 LIBRARIES += RuntimeR0Drv
63 endif
64 ifdef VBOX_WITH_ADDITIONS
65 if1of ($(BUILD_TARGET),linux l4 win)
66 ifdef VBOX_WITH_WIN32_ADDITIONS
67 LIBRARIES += RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
68 endif
69 ifdef VBOX_WITH_LINUX_ADDITIONS
70 LIBRARIES += RuntimeLnx32GuestR3
71 ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0
72 LIBRARIES += RuntimeLnx32GuestR0
73 endif
74 endif
75 else ifeq ($(BUILD_TARGET),os2) ## @todo RuntimeOS2Guest* -> RuntimeGuest*
76 LIBRARIES += RuntimeOS2GuestR0 RuntimeOS2GuestR3
77 else
78 LIBRARIES += RuntimeGuestR0 RuntimeGuestR3
79 endif
80 #LIBRARIES.os2 = RuntimeOS2Warp3GuestR0
81 endif # VBOX_WITH_ADDITIONS
82 LIBRARIES.l4 = RuntimeR3L4
83 DLLS = VBoxRT
84 OTHER_CLEAN = \
85 $(PATH_TARGET)/errmsgdata.h \
86 $(PATH_TARGET)/errmsgcomdata.h \
87 $(PATH_TARGET)/Doxyfile \
88 $(PATH_TARGET)/Doxyfile.dep \
89 $(PATH_TARGET)/docs.iprt
90
91 SUBDIRS_AFTER = testcase
92endif
93
94
95# global (for now at least)
96INCS += include
97
98#
99# Unicode Specification reader used to regenerate unidata.cpp.
100#
101uniread_TEMPLATE = VBOXBLDPROG
102uniread_SOURCES = common/string/uniread.cpp
103
104#
105# Win64 assembly sources.
106#
107RuntimeWin64ASM_SOURCES = \
108 win/amd64/ASMAtomicBitClear.asm \
109 win/amd64/ASMAtomicBitTestAndToggle.asm \
110 win/amd64/ASMAtomicBitToggle.asm \
111 win/amd64/ASMAtomicReadU64.asm \
112 win/amd64/ASMAtomicXchgU16.asm \
113 win/amd64/ASMAtomicXchgU8.asm \
114 win/amd64/ASMBitFirstClear.asm \
115 win/amd64/ASMBitFirstSet.asm \
116 win/amd64/ASMGetCS.asm \
117 win/amd64/ASMGetDS.asm \
118 win/amd64/ASMGetES.asm \
119 win/amd64/ASMGetFlags.asm \
120 win/amd64/ASMGetFS.asm \
121 win/amd64/ASMGetGS.asm \
122 win/amd64/ASMGetIDTR.asm \
123 win/amd64/ASMGetGDTR.asm \
124 win/amd64/ASMGetTR.asm \
125 win/amd64/ASMGetSS.asm \
126 win/amd64/ASMProbeReadByte.asm \
127 win/amd64/ASMSetFlags.asm \
128 win/amd64/ASMGetDR0.asm \
129 win/amd64/ASMGetDR1.asm \
130 win/amd64/ASMGetDR2.asm \
131 win/amd64/ASMGetDR3.asm \
132 win/amd64/ASMGetDR6.asm \
133 win/amd64/ASMGetDR7.asm \
134 common/asm/ASMMultU64ByU32DivByU32.asm
135
136#
137# Win32 assembly sources.
138#
139RuntimeWin32ASM_SOURCES = \
140 common/asm/ASMMultU64ByU32DivByU32.asm
141
142#
143# RuntimeR3 - Static Runtime for Ring-3 executables.
144#
145RuntimeR3_TEMPLATE = VBOXR3EXE
146RuntimeR3_SDKS.win = WINPSDK W2K3DDK
147RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
148ifdef IPRT_WITH_KSTUFF
149 RuntimeR3_DEFS += LDR_WITH_KLDR
150endif
151ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
152 RuntimeR3_DEFS += RTCRITSECT_STRICT
153endif
154RuntimeR3_INCS = \
155 $(PATH_ROOT)/src/libs/liblzf-1.51
156ifdef IPRT_WITH_KSTUFF
157 RuntimeR3_INCS += \
158 $(PATH_ROOT)/src/libs/kStuff/kStuff/include
159endif
160RuntimeR3_INCS.l4 = \
161 $(L4_INCDIR)
162# for iconv.h
163RuntimeR3_INCS.freebsd = \
164 /usr/local/include
165
166
167# RuntimeR3_INCS.solaris = \
168# /usr/include
169
170RuntimeR3_SOURCES = \
171 common/alloc/alloc.cpp \
172 common/alloc/heapsimple.cpp \
173 common/checksum/crc32.cpp \
174 common/checksum/crc64.cpp \
175 common/checksum/md5.cpp \
176 common/err/errmsg.cpp \
177 common/err/RTErrConvertFromErrno.cpp \
178 common/ldr/ldr.cpp \
179 common/ldr/ldrELF.cpp \
180 common/ldr/ldrEx.cpp \
181 common/ldr/ldrFile.cpp \
182 common/ldr/ldrNative.cpp \
183 common/ldr/ldrPE.cpp \
184 common/log/log.cpp \
185 common/log/logcom.cpp \
186 common/log/logformat.cpp \
187 common/misc/assert.cpp \
188 common/misc/rand.cpp \
189 common/misc/getopt.cpp \
190 common/misc/req.cpp \
191 common/misc/sanity-c.c \
192 common/misc/sanity-cpp.cpp \
193 common/misc/semspingpong.cpp \
194 common/misc/thread.cpp \
195 common/misc/zip.cpp \
196 common/string/straprintf.cpp \
197 common/string/strformat.cpp \
198 common/string/strformatrt.cpp \
199 common/string/string.cpp \
200 common/string/strprintf.cpp \
201 common/string/strspace.cpp \
202 common/string/strstrip.cpp \
203 common/string/strtonum.cpp \
204 common/string/uni.cpp \
205 common/string/unidata.cpp \
206 common/string/utf-16.cpp \
207 common/string/utf-8.cpp \
208 common/table/avlgcptr.cpp \
209 common/table/avlhcphys.cpp \
210 common/table/avllu32.cpp \
211 common/table/avlogcphys.cpp \
212 common/table/avlogcptr.cpp \
213 common/table/avlohcphys.cpp \
214 common/table/avloioport.cpp \
215 common/table/avlpv.cpp \
216 common/table/avlrgcptr.cpp \
217 common/table/avlrogcphys.cpp \
218 common/table/avlrogcptr.cpp \
219 common/table/avlroioport.cpp \
220 common/table/avlroogcptr.cpp \
221 common/table/avlu32.cpp \
222 common/table/avlul.cpp \
223 common/table/table.cpp \
224 common/time/time.cpp \
225 common/time/timeprog.cpp \
226 common/time/timesup.cpp \
227 generic/critsect-generic.cpp \
228 generic/env-generic.cpp \
229 generic/RTFileCopy-generic.cpp \
230 generic/RTLogWriteStdErr-generic.cpp \
231 generic/RTLogWriteStdOut-generic.cpp \
232 generic/RTLogWriteUser-generic.cpp \
233 generic/semfastmutex-generic.cpp \
234 generic/spinlock-generic.cpp \
235 r3/alloc-ef.cpp \
236 r3/alloc.cpp \
237 r3/dir.cpp \
238 r3/fileio.cpp \
239 r3/fs.cpp \
240 r3/init.cpp \
241 r3/path.cpp \
242 r3/process.cpp \
243 r3/stream.cpp \
244 r3/tcp.cpp
245
246#if1of ($(BUILD_TARGET_ARCH),amd64 x86)
247# RuntimeR3_SOURCES += common/time/timesupA.asm
248#else
249 RuntimeR3_SOURCES += common/time/timesupref.cpp
250#endif
251
252ifdef IPRT_WITH_KSTUFF
253 RuntimeR3_SOURCES += \
254 common/ldr/ldrkStuff.cpp
255endif
256
257# VBox specific stuff.
258RuntimeR3_SOURCES += \
259 VBox/strformat-vbox.cpp \
260 VBox/RTAssertDoBreakpoint-vbox.cpp \
261 VBox/log-vbox.cpp
262
263RuntimeR3_SOURCES.win = \
264 generic/rand-stubs-generic.cpp \
265 generic/RTDirQueryInfo-generic.cpp \
266 generic/RTDirSetTimes-generic.cpp \
267 generic/semnoint-generic.cpp \
268 generic/semsrw-generic.cpp \
269 nt/RTErrConvertFromNtStatus.cpp \
270 r3/posix/env-posix.cpp \
271 r3/win/alloc-win.cpp \
272 r3/win/dir-win.cpp \
273 r3/win/fileio-win.cpp \
274 r3/win/fs-win.cpp \
275 r3/win/ldrNative-win.cpp \
276 r3/win/path-win.cpp \
277 r3/win/process-win.cpp \
278 r3/win/RTLogWriteDebugger-win.cpp \
279 r3/win/sched-win.cpp \
280 r3/win/sems-win.cpp \
281 r3/win/system-win.cpp \
282 r3/win/thread-win.cpp \
283 r3/win/time-win.cpp \
284 r3/win/timer-win.cpp \
285 r3/win/utf16locale-win.cpp \
286 r3/win/utf8-win.cpp \
287 r3/win/uuid-win.cpp \
288 win/errmsgwin.cpp \
289 win/RTErrConvertFromWin32.cpp
290
291RuntimeR3_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
292RuntimeR3_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
293
294RuntimeR3_SOURCES.linux = \
295 generic/pathhost-generic.cpp \
296 generic/RTDirQueryInfo-generic.cpp \
297 generic/RTDirSetTimes-generic.cpp \
298 generic/RTFileMove-generic.cpp \
299 generic/RTLogWriteDebugger-generic.cpp \
300 generic/RTTimeLocalNow-generic.cpp \
301 generic/RTTimerCreate-generic.cpp \
302 generic/utf16locale-generic.cpp \
303 generic/uuid-generic.cpp \
304 r3/linux/sched-linux.cpp \
305 r3/linux/time-linux.cpp \
306 r3/posix/alloc-posix.cpp \
307 r3/posix/dir-posix.cpp \
308 r3/posix/env-posix.cpp \
309 r3/posix/fileio-posix.cpp \
310 r3/posix/filelock-posix.cpp \
311 r3/posix/fs-posix.cpp \
312 r3/posix/ldrNative-posix.cpp \
313 r3/posix/path-posix.cpp \
314 r3/posix/process-posix.cpp \
315 r3/posix/rand-posix.cpp \
316 r3/posix/RTTimeNow-posix.cpp \
317 r3/posix/system-posix.cpp \
318 r3/posix/thread-posix.cpp \
319 r3/posix/timelocal-posix.cpp \
320 r3/posix/timer-posix.cpp \
321 r3/posix/utf8-posix.cpp
322ifeq ($(BUILD_TARGET_ARCH),amd64)
323 RuntimeR3_SOURCES.linux += r3/linux/sems-linux.cpp
324else
325 RuntimeR3_SOURCES.linux += r3/posix/sems-posix.cpp
326endif
327
328RuntimeR3_SOURCES.os2 = \
329 generic/pathhost-generic.cpp \
330 generic/rand-stubs-generic.cpp \
331 generic/RTDirQueryInfo-generic.cpp \
332 generic/RTDirSetTimes-generic.cpp \
333 generic/RTFileMove-generic.cpp \
334 generic/RTLogWriteDebugger-generic.cpp \
335 generic/RTTimeLocalNow-generic.cpp \
336 generic/RTTimerCreate-generic.cpp \
337 generic/semnoint-generic.cpp \
338 generic/semsrw-generic.cpp \
339 generic/timer-generic.cpp \
340 generic/utf16locale-generic.cpp \
341 generic/uuid-generic.cpp \
342 os2/RTErrConvertFromOS2.cpp \
343 r3/os2/sched-os2.cpp \
344 r3/os2/sems-os2.cpp \
345 r3/os2/system-os2.cpp \
346 r3/os2/thread-os2.cpp \
347 r3/os2/time-os2.cpp \
348 r3/posix/alloc-posix.cpp \
349 r3/posix/dir-posix.cpp \
350 r3/posix/env-posix.cpp \
351 r3/posix/fileio-posix.cpp \
352 r3/posix/filelock-posix.cpp \
353 r3/posix/fs-posix.cpp \
354 r3/posix/ldrNative-posix.cpp \
355 r3/posix/path-posix.cpp \
356 r3/posix/process-posix.cpp \
357 r3/posix/RTTimeNow-posix.cpp \
358 r3/posix/timelocal-posix.cpp \
359 r3/posix/utf8-posix.cpp
360
361RuntimeR3_SOURCES.darwin = \
362 darwin/RTErrConvertFromDarwinCOM.cpp \
363 darwin/RTErrConvertFromDarwinIO.cpp \
364 darwin/RTErrConvertFromDarwinKern.cpp \
365 generic/pathhost-generic.cpp \
366 generic/RTDirQueryInfo-generic.cpp \
367 generic/RTDirSetTimes-generic.cpp \
368 generic/RTFileMove-generic.cpp \
369 generic/RTLogWriteDebugger-generic.cpp \
370 generic/RTTimeLocalNow-generic.cpp \
371 generic/RTTimerCreate-generic.cpp \
372 generic/sched-generic.cpp \
373 generic/timer-generic.cpp \
374 generic/utf16locale-generic.cpp \
375 generic/uuid-generic.cpp\
376 r3/darwin/alloc-darwin.cpp \
377 r3/darwin/filelock-darwin.cpp \
378 r3/darwin/time-darwin.cpp \
379 r3/posix/dir-posix.cpp \
380 r3/posix/env-posix.cpp \
381 r3/posix/fileio-posix.cpp \
382 r3/posix/fs-posix.cpp \
383 r3/posix/ldrNative-posix.cpp \
384 r3/posix/path-posix.cpp \
385 r3/posix/process-posix.cpp \
386 r3/posix/rand-posix.cpp \
387 r3/posix/sems-posix.cpp \
388 r3/posix/system-posix.cpp \
389 r3/posix/thread-posix.cpp \
390 r3/posix/timelocal-posix.cpp \
391 r3/posix/utf8-posix.cpp
392
393## @todo Make BSD sched.
394RuntimeR3_SOURCES.freebsd = \
395 generic/pathhost-generic.cpp \
396 generic/RTDirQueryInfo-generic.cpp \
397 generic/RTDirSetTimes-generic.cpp \
398 generic/RTFileMove-generic.cpp \
399 generic/RTLogWriteDebugger-generic.cpp \
400 generic/RTTimeLocalNow-generic.cpp \
401 generic/RTTimerCreate-generic.cpp \
402 generic/sched-generic.cpp \
403 generic/utf16locale-generic.cpp \
404 generic/uuid-generic.cpp \
405 r3/freebsd/alloc-freebsd.cpp \
406 r3/posix/dir-posix.cpp \
407 r3/posix/env-posix.cpp \
408 r3/posix/fileio-posix.cpp \
409 r3/posix/filelock-posix.cpp \
410 r3/posix/fs-posix.cpp \
411 r3/posix/ldrNative-posix.cpp \
412 r3/posix/path-posix.cpp \
413 r3/posix/process-posix.cpp \
414 r3/posix/rand-posix.cpp \
415 r3/posix/RTTimeNow-posix.cpp \
416 r3/posix/sems-posix.cpp \
417 r3/posix/system-posix.cpp \
418 r3/posix/thread-posix.cpp \
419 r3/posix/time-posix.cpp \
420 r3/posix/timelocal-posix.cpp \
421 r3/posix/timer-posix.cpp \
422 r3/posix/utf8-posix.cpp
423
424RuntimeR3_SOURCES.solaris = \
425 generic/pathhost-generic.cpp \
426 generic/RTDirQueryInfo-generic.cpp \
427 generic/RTDirSetTimes-generic.cpp \
428 generic/RTFileMove-generic.cpp \
429 generic/RTLogWriteDebugger-generic.cpp \
430 generic/RTTimeLocalNow-generic.cpp \
431 generic/RTTimerCreate-generic.cpp \
432 generic/sched-generic.cpp \
433 generic/utf16locale-generic.cpp \
434 generic/uuid-generic.cpp \
435 r3/posix/dir-posix.cpp \
436 r3/posix/env-posix.cpp \
437 r3/posix/fileio-posix.cpp \
438 r3/posix/filelock-posix.cpp \
439 r3/posix/fs-posix.cpp \
440 r3/posix/ldrNative-posix.cpp \
441 r3/posix/path-posix.cpp \
442 r3/posix/process-posix.cpp \
443 r3/posix/rand-posix.cpp \
444 r3/posix/RTTimeNow-posix.cpp \
445 r3/posix/sems-posix.cpp \
446 r3/posix/system-posix.cpp \
447 r3/posix/thread-posix.cpp \
448 r3/posix/time-posix.cpp \
449 r3/posix/timelocal-posix.cpp \
450 r3/posix/timer-posix.cpp \
451 r3/posix/utf8-posix.cpp \
452 r3/solaris/alloc-solaris.cpp
453
454## PORTME: Porters add their selection of platform specific files for Ring-3 here.
455
456
457#
458# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
459#
460RuntimeR3L4_TEMPLATE = VBOXR3NP
461RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
462ifneq ($(BUILD_TARGET_ARCH),amd64)
463RuntimeR3L4_DEFS += __PIC__
464endif
465RuntimeR3L4_INCS = $(L4_INCDIR)
466
467RuntimeR3L4_SOURCES = \
468 generic/fs-stubs-generic.cpp \
469 generic/pathhost-generic.cpp \
470 generic/RTDirQueryInfo-generic.cpp \
471 generic/RTDirSetTimes-generic.cpp \
472 generic/RTFileMove-generic.cpp \
473 generic/RTLogWriteDebugger-generic.cpp \
474 generic/RTTimeLocalNow-generic.cpp \
475 generic/sched-generic.cpp \
476 generic/semnoint-generic.cpp \
477 generic/semsrw-generic.cpp \
478 generic/utf16locale-generic.cpp \
479 generic/uuid-generic.cpp \
480 l4/l4-errno.cpp \
481 l4/process-l4env.cpp \
482 l4/sems-l4env.cpp \
483 l4/system-l4env.cpp \
484 l4/thread-l4env.cpp \
485 l4/timer-l4env.cpp \
486 l4/utf8-l4env.cpp \
487 r3/posix/alloc-posix.cpp \
488 r3/posix/dir-posix.cpp \
489 r3/posix/env-posix.cpp \
490 r3/posix/fileio-posix.cpp \
491 r3/posix/filelock-posix.cpp \
492 r3/posix/ldrNative-posix.cpp \
493 r3/posix/path-posix.cpp \
494 r3/posix/rand-posix.cpp \
495 r3/posix/RTTimeNow-posix.cpp \
496 r3/posix/time-posix.cpp \
497 r3/posix/timelocal-posix.cpp
498
499
500#
501# RuntimeGuestR3 - Guest Additions Runtime (static).
502#
503RuntimeGuestR3_TEMPLATE := VBOXGUESTR3LIB
504RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
505RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT, $(RuntimeR3_DEFS))
506RuntimeGuestR3_DEFS.$(BUILD_TARGET) := $(RuntimeR3_DEFS.$(BUILD_TARGET))
507RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
508RuntimeGuestR3_INCS.$(BUILD_TARGET) := $(RuntimeR3_INCS.$(BUILD_TARGET))
509RuntimeGuestR3_SOURCES := $(filter-out \
510 common/time/timesupref.cpp \
511 common/time/timesupA.asm \
512 common/time/timesup.cpp \
513 , $(RuntimeR3_SOURCES))
514RuntimeGuestR3_SOURCES += \
515 common/time/timesysalias.cpp
516RuntimeGuestR3_SOURCES.$(BUILD_TARGET) := $(RuntimeR3_SOURCES.$(BUILD_TARGET))
517RuntimeGuestR3_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
518
519
520#
521# RuntimeW32GuestR3 - Win32 guest program runtime.
522#
523RuntimeW32GuestR3_TEMPLATE = VBOXW32GUESTR3LIB
524RuntimeW32GuestR3_SDKS = WINPSDK W2K3DDK
525RuntimeW32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
526ifdef IPRT_WITH_KSTUFF
527 RuntimeW32GuestR3_DEFS += LDR_WITH_KLDR
528endif
529RuntimeW32GuestR3_SOURCES = $(RuntimeR3_SOURCES.win) $(RuntimeR3_SOURCES)
530RuntimeW32GuestR3_INCS = $(RuntimeR3_INCS.win) $(RuntimeR3_INCS)
531
532
533#
534# RuntimeLnx32GuestR3 - 32-bit Linux guest program runtime.
535#
536RuntimeLnx32GuestR3_TEMPLATE = VBOXLNX32GUESTR3LIB
537RuntimeLnx32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
538ifdef IPRT_WITH_KSTUFF
539 RuntimeLnx32GuestR3_DEFS += LDR_WITH_KLDR
540endif
541RuntimeLnx32GuestR3_SOURCES = $(RuntimeR3_SOURCES.linux) $(RuntimeR3_SOURCES)
542RuntimeLnx32GuestR3_INCS = $(RuntimeR3_INCS.linux) $(RuntimeR3_INCS)
543
544
545#
546# RuntimeOS2GuestR3 - OS/2 guest program runtime.
547#
548RuntimeOS2GuestR3_TEMPLATE = VBOXOS2GUESTR3LIB
549RuntimeOS2GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
550ifdef IPRT_WITH_KSTUFF
551 RuntimeOS2GuestR3_DEFS += LDR_WITH_KLDR
552endif
553RuntimeOS2GuestR3_SOURCES = $(RuntimeR3_SOURCES.os2) $(RuntimeR3_SOURCES)
554RuntimeOS2GuestR3_INCS = $(RuntimeR3_INCS.os2) $(RuntimeR3_INCS)
555
556
557#
558# VBoxRT - Shared Object / DLL version.
559#
560VBoxRT_TEMPLATE = VBOXR3
561VBoxRT_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
562ifeq ($(BUILD_TARGET),darwin)
563VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
564endif
565VBoxRT_DEFS = $(RuntimeR3_DEFS) IN_SUP_R3 IN_SUP_R3
566VBoxRT_DEFS.$(BUILD_TYPE) = $(RuntimeR3_DEFS.$(BUILD_TYPE))
567VBoxRT_SOURCES = \
568 VBox/VBoxRTDeps.cpp \
569 $(RuntimeR3_SOURCES)
570VBoxRT_SOURCES.$(BUILD_TARGET) = $(RuntimeR3_SOURCES.$(BUILD_TARGET))
571VBoxRT_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
572VBoxRT_SOURCES.win += r3/win/dllmain-win.cpp
573VBoxRT_SOURCES.win.x86 += r3/win/VBoxRT-win32.def
574VBoxRT_SOURCES.win.amd64 += r3/win/VBoxRT-win64.def
575VBoxRT_INCS = $(RuntimeR3_INCS)
576VBoxRT_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
577VBoxRT_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
578VBoxRT_LIBS = \
579 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB) \
580 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
581ifdef IPRT_WITH_KSTUFF
582 VBoxRT_LIBS += \
583 $(PATH_LIB)/VBox-kStuff$(VBOX_SUFF_LIB)
584endif
585VBoxRT_LIBS.darwin = \
586 iconv
587VBoxRT_LIBS.freebsd = \
588 iconv
589VBoxRT_LIBPATH.freebsd = \
590 /usr/local/lib
591VBoxRT_LDFLAGS.darwin = -framework IOKit -install_name @executable_path/VBoxRT.dylib
592ifdef VBOX_USE_VCC80
593VBoxRT_LDFLAGS.win = /MANIFEST
594endif
595VBoxRT_LDFLAGS.l4 = \
596 -Wl,-whole-archive \
597 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
598 -Wl,-no-whole-archive
599ifeq ($(BUILD_TARGET),l4)
600VBoxRT_LIBS += \
601 $(L4_LIBDIR)/libl4sys.a \
602 $(L4_LIBDIR)/libl4sys.p.a
603endif
604VBoxRT_LIBS.l4 = \
605 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
606
607
608#
609# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
610# This is used together with VBoxRT.
611#
612RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
613RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
614RuntimeR3NoCRTGCC_SOURCES = \
615 common/misc/sanity-cpp.cpp \
616 common/misc/sanity-c.c \
617 \
618 common/math/ceill.asm \
619 common/math/cosl.asm \
620 common/math/fabs.asm \
621 common/math/fabsf.asm \
622 common/math/fabsl.asm \
623 common/math/floor.asm \
624 common/math/floorf.asm \
625 common/math/floorl.asm \
626 common/math/ldexpl.asm \
627 common/math/llrint.asm \
628 common/math/llrintf.asm \
629 common/math/llrintl.asm \
630 common/math/logl.asm \
631 common/math/lrint.asm \
632 common/math/lrintf.asm \
633 common/math/lrintl.asm \
634 common/math/remainder.asm \
635 common/math/remainderf.asm \
636 common/math/remainderl.asm \
637 common/math/sinl.asm \
638 common/math/tanl.asm \
639 common/math/trunc.asm \
640 common/math/truncf.asm \
641 common/math/truncl.asm \
642 \
643 common/misc/setjmp.asm \
644 \
645 common/string/memchr.asm \
646 common/string/memchr_alias.c \
647 common/string/memcmp.asm \
648 common/string/memcmp_alias.c \
649 common/string/memcpy.asm \
650 common/string/memcpy_alias.c \
651 common/string/mempcpy.asm \
652 common/string/memset.asm \
653 common/string/memset_alias.c \
654 common/string/strchr.asm \
655 common/string/strchr_alias.c \
656 common/string/strcmp.asm \
657 common/string/strcmp_alias.c
658
659RuntimeR3NoCRTGCC_SOURCES.x86 = \
660 common/math/x86/fenv-x86.c \
661 common/math/gcc/adddi3.c \
662 common/math/gcc/anddi3.c \
663 common/math/gcc/ashldi3.c \
664 common/math/gcc/ashrdi3.c \
665 common/math/gcc/cmpdi2.c \
666 common/math/gcc/divdi3.c \
667 common/math/gcc/iordi3.c \
668 common/math/gcc/lshldi3.c \
669 common/math/gcc/lshrdi3.c \
670 common/math/gcc/moddi3.c \
671 common/math/gcc/muldi3.c \
672 common/math/gcc/negdi2.c \
673 common/math/gcc/notdi2.c \
674 common/math/gcc/qdivrem.c \
675 common/math/gcc/subdi3.c \
676 common/math/gcc/ucmpdi2.c \
677 common/math/gcc/udivdi3.c \
678 common/math/gcc/umoddi3.c \
679 common/math/gcc/xordi3.c
680
681
682## @todo stop using the old memcpy.c and memset.c code.
683
684#
685# RuntimeR0 - Ring0 library for VMMR0.
686#
687RuntimeR0_TEMPLATE = VBOXR0
688RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
689RuntimeR0_SOURCES = \
690 common/log/logcom.cpp \
691 common/log/logformat.cpp \
692 common/misc/assert.cpp \
693 common/misc/sanity-c.c \
694 common/misc/sanity-cpp.cpp \
695 common/string/memchr.cpp \
696 common/string/memcmp.cpp \
697 common/string/memcpy.cpp \
698 common/string/memset.cpp \
699 common/string/strcmp.asm \
700 common/string/strcpy.cpp \
701 common/string/strformat.cpp \
702 common/string/strformatrt.cpp \
703 common/string/strlen.cpp \
704 common/string/strncmp.cpp \
705 common/string/strpbrk.cpp \
706 common/string/strprintf.cpp \
707 common/table/avlgcptr.cpp \
708 common/table/avlhcphys.cpp \
709 common/table/avllu32.cpp \
710 common/table/avlogcphys.cpp \
711 common/table/avlogcptr.cpp \
712 common/table/avlohcphys.cpp \
713 common/table/avloioport.cpp \
714 common/table/avlpv.cpp \
715 common/table/avlrogcphys.cpp \
716 common/table/avlrogcptr.cpp \
717 common/table/avlroioport.cpp \
718 common/table/avlroogcptr.cpp \
719 common/table/avlu32.cpp \
720 common/time/timesup.cpp \
721 generic/RTAssertDoBreakpoint-generic.cpp \
722 VBox/strformat-vbox.cpp
723
724#if1of ($(BUILD_TARGET_ARCH),amd64 x86)
725# RuntimeR0_SOURCES += common/time/timesupA.asm
726#else
727 RuntimeR0_SOURCES += common/time/timesupref.cpp
728#endif
729
730RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
731RuntimeR0_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
732
733RuntimeR0_SOURCES.os2 = \
734 os2/RTErrConvertFromOS2.cpp \
735 os2/sys0.asm
736
737ifeq ($(filter-out darwin solaris freebsd,$(BUILD_TARGET)),)
738RuntimeR0_SOURCES += \
739 common/math/gcc/adddi3.c \
740 common/math/gcc/anddi3.c \
741 common/math/gcc/ashldi3.c \
742 common/math/gcc/ashrdi3.c \
743 common/math/gcc/cmpdi2.c \
744 common/math/gcc/divdi3.c \
745 common/math/gcc/iordi3.c \
746 common/math/gcc/lshldi3.c \
747 common/math/gcc/lshrdi3.c \
748 common/math/gcc/moddi3.c \
749 common/math/gcc/muldi3.c \
750 common/math/gcc/negdi2.c \
751 common/math/gcc/notdi2.c \
752 common/math/gcc/qdivrem.c \
753 common/math/gcc/subdi3.c \
754 common/math/gcc/ucmpdi2.c \
755 common/math/gcc/udivdi3.c \
756 common/math/gcc/umoddi3.c \
757 common/math/gcc/xordi3.c
758endif
759
760
761common/string/memchr.cpp_CXXFLAGS.win = -Oi-
762common/string/memcmp.cpp_CXXFLAGS.win = -Oi-
763common/string/memcpy.cpp_CXXFLAGS.win = -Oi-
764common/string/memset.cpp_CXXFLAGS.win = -Oi-
765common/string/strcpy.cpp_CXXFLAGS.win = -Oi-
766common/string/strlen.cpp_CXXFLAGS.win = -Oi-
767
768ifeq ($(BUILD_TARGET),l4)
769RuntimeR0Drv_BLD_TRG = linux
770RuntimeR0Drv_BLD_TRG_ARCH = x86
771RuntimeR0Drv_BLD_TRG_CPU = i386
772endif
773
774#
775# RuntimeR0Drv - Ring0 library for host drivers.
776#
777RuntimeR0Drv_TEMPLATE = VBOXR0DRV
778RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS
779RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT)
780RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
781RuntimeR0Drv_DEFS.win = IN_SUP_R0
782RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0 # why is IN_SUP_R0 here? because!
783
784RuntimeR0Drv_INCS.linux = \
785 r0drv/linux
786
787RuntimeR0Drv_SOURCES = \
788 common/checksum/crc32.cpp \
789 common/checksum/crc64.cpp \
790 common/log/log.cpp \
791 common/log/logcom.cpp \
792 common/log/logformat.cpp \
793 common/misc/assert.cpp \
794 common/misc/sanity-c.c \
795 common/misc/sanity-cpp.cpp \
796 common/string/strformat.cpp \
797 common/string/strformatrt.cpp \
798 common/string/strpbrk.cpp \
799 common/string/strprintf.cpp \
800 common/string/strtonum.cpp \
801 common/table/avlpv.cpp \
802 generic/RTLogWriteStdErr-stub-generic.cpp \
803 generic/RTLogWriteStdOut-stub-generic.cpp \
804 generic/RTLogWriteUser-generic.cpp \
805 r0drv/alloc-r0drv.cpp \
806 r0drv/initterm-r0drv.cpp \
807 VBox/log-vbox.cpp \
808 VBox/strformat-vbox.cpp
809
810RuntimeR0Drv_SOURCES.linux = \
811 common/alloc/heapsimple.cpp \
812 common/err/RTErrConvertToErrno.cpp \
813 generic/RTAssertDoBreakpoint-generic.cpp \
814 r0drv/linux/alloc-r0drv-linux.c \
815 r0drv/linux/initterm-r0drv-linux.c \
816 r0drv/linux/memobj-r0drv-linux.c \
817 r0drv/linux/process-r0drv-linux.c \
818 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
819 r0drv/linux/semevent-r0drv-linux.c \
820 r0drv/linux/semeventmulti-r0drv-linux.c \
821 r0drv/linux/semfastmutex-r0drv-linux.c \
822 r0drv/linux/spinlock-r0drv-linux.c \
823 r0drv/linux/thread-r0drv-linux.c \
824 r0drv/memobj-r0drv.cpp
825## @todo thread2-r0drv-linux.c, timer-r0drv-linux.c and assert-r0drv-linux.c
826
827RuntimeR0Drv_SOURCES.win = \
828 common/misc/thread.cpp \
829 common/string/strncmp.cpp \
830 generic/RTAssertDoBreakpoint-generic.cpp \
831 nt/RTErrConvertFromNtStatus.cpp \
832 r0drv/memobj-r0drv.cpp \
833 r0drv/nt/alloc-r0drv-nt.cpp \
834 r0drv/nt/initterm-r0drv-nt.cpp \
835 r0drv/nt/memobj-r0drv-nt.cpp \
836 r0drv/nt/process-r0drv-nt.cpp \
837 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
838 r0drv/nt/semevent-r0drv-nt.cpp \
839 r0drv/nt/semeventmulti-r0drv-nt.cpp \
840 r0drv/nt/semfastmutex-r0drv-nt.cpp \
841 r0drv/nt/semmutex-r0drv-nt.cpp \
842 r0drv/nt/spinlock-r0drv-nt.cpp \
843 r0drv/nt/thread-r0drv-nt.cpp \
844 r0drv/nt/thread2-r0drv-nt.cpp \
845 r0drv/nt/time-r0drv-nt.cpp
846## @todo timer-r0drv-nt.cpp and assert-r0drv-nt.cpp
847
848RuntimeR0Drv_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
849RuntimeR0Drv_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
850
851RuntimeR0Drv_SOURCES.darwin = \
852 common/err/RTErrConvertFromErrno.cpp \
853 common/misc/thread.cpp \
854 common/string/memchr.asm \
855 darwin/RTErrConvertFromDarwinIO.cpp \
856 darwin/RTErrConvertFromDarwinKern.cpp \
857 generic/RTAssertDoBreakpoint-generic.cpp \
858 generic/RTTimerCreate-generic.cpp \
859 generic/timer-generic.cpp \
860 r0drv/darwin/alloc-r0drv-darwin.cpp \
861 r0drv/darwin/assert-r0drv-darwin.cpp \
862 r0drv/darwin/initterm-r0drv-darwin.cpp \
863 r0drv/darwin/memobj-r0drv-darwin.cpp \
864 r0drv/darwin/process-r0drv-darwin.cpp \
865 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
866 r0drv/darwin/semaphore-r0drv-darwin.cpp \
867 r0drv/darwin/spinlock-r0drv-darwin.cpp \
868 r0drv/darwin/thread-r0drv-darwin.cpp \
869 r0drv/darwin/thread2-r0drv-darwin.cpp \
870 r0drv/darwin/time-r0drv-darwin.cpp \
871 r0drv/memobj-r0drv.cpp
872
873RuntimeR0Drv_DEFS.os2 += RT_WITHOUT_NOCRT_WRAPPERS
874RuntimeR0Drv_SOURCES.os2 = \
875 common/string/memchr.asm \
876 common/string/memcmp.asm \
877 common/string/memcpy.asm \
878 common/string/mempcpy.asm \
879 common/string/memset.asm \
880 common/string/strchr.asm \
881 common/string/strcmp.asm \
882 \
883 common/string/strcpy.cpp \
884 common/string/strlen.cpp \
885 common/string/strncmp.cpp \
886 \
887 common/misc/thread.cpp \
888 generic/RTLogWriteDebugger-generic.cpp \
889 os2/RTErrConvertFromOS2.cpp \
890 os2/sys0.asm \
891 r0drv/memobj-r0drv.cpp \
892 r0drv/os2/alloc-r0drv-os2.cpp \
893 r0drv/os2/assert-r0drv-os2.cpp \
894 r0drv/os2/assertA-r0drv-os2.asm \
895 r0drv/os2/initterm-r0drv-os2.cpp \
896 r0drv/os2/memobj-r0drv-os2.cpp \
897 r0drv/os2/os2imports.imp \
898 r0drv/os2/process-r0drv-os2.cpp \
899 r0drv/os2/RTAssertDoBreakpoint-r0drv-os2.asm \
900 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
901 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
902 r0drv/os2/semevent-r0drv-os2.cpp \
903 r0drv/os2/semeventmulti-r0drv-os2.cpp \
904 r0drv/os2/semfastmutex-r0drv-os2.cpp \
905 r0drv/os2/spinlock-r0drv-os2.cpp \
906 r0drv/os2/thread-r0drv-os2.cpp \
907 r0drv/os2/thread2-r0drv-os2.cpp \
908 r0drv/os2/time-r0drv-os2.cpp \
909 r0drv/os2/timer-r0drv-os2.cpp \
910 r0drv/os2/timerA-r0drv-os2.asm
911
912RuntimeR0Drv_SOURCES.freebsd = \
913 common/err/RTErrConvertFromErrno.cpp \
914 common/err/RTErrConvertToErrno.cpp \
915 common/misc/thread.cpp \
916 common/string/memchr.asm \
917 generic/RTAssertDoBreakpoint-generic.cpp \
918 generic/RTLogWriteDebugger-generic.cpp \
919 generic/RTTimerCreate-generic.cpp \
920 r0drv/freebsd/alloc-r0drv-freebsd.c \
921 r0drv/freebsd/assert-r0drv-freebsd.c \
922 r0drv/freebsd/initterm-r0drv-freebsd.c \
923 r0drv/freebsd/memobj-r0drv-freebsd.c \
924 r0drv/freebsd/process-r0drv-freebsd.c \
925 r0drv/freebsd/semevent-r0drv-freebsd.c \
926 r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
927 r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
928 r0drv/freebsd/spinlock-r0drv-freebsd.c \
929 r0drv/freebsd/thread-r0drv-freebsd.c \
930 r0drv/freebsd/thread2-r0drv-freebsd.c \
931 r0drv/freebsd/time-r0drv-freebsd.c \
932 r0drv/freebsd/timer-r0drv-freebsd.c \
933 r0drv/memobj-r0drv.cpp
934
935RuntimeR0Drv_SOURCES.solaris = \
936 common/err/RTErrConvertFromErrno.cpp \
937 common/misc/thread.cpp \
938 common/string/memchr.asm \
939 generic/RTAssertDoBreakpoint-generic.cpp \
940 generic/RTTimerCreate-generic.cpp \
941 r0drv/memobj-r0drv.cpp \
942 r0drv/solaris/alloc-r0drv-solaris.c \
943 r0drv/solaris/assert-r0drv-solaris.c \
944 r0drv/solaris/initterm-r0drv-solaris.c \
945 r0drv/solaris/memobj-r0drv-solaris.c \
946 r0drv/solaris/process-r0drv-solaris.c \
947 r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
948 r0drv/solaris/semevent-r0drv-solaris.c \
949 r0drv/solaris/semeventmulti-r0drv-solaris.c \
950 r0drv/solaris/semfastmutex-r0drv-solaris.c \
951 r0drv/solaris/spinlock-r0drv-solaris.c \
952 r0drv/solaris/thread-r0drv-solaris.c \
953 r0drv/solaris/thread2-r0drv-solaris.c \
954 r0drv/solaris/time-r0drv-solaris.c \
955 r0drv/solaris/timer-r0drv-solaris.c
956
957## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
958
959
960#
961# RuntimeGuestR0 - Guest driver runtime.
962# This is almost the same as the RuntimeR0Drv, the main difference
963# is in the backdoor logging and the lack of sup.h (which should be
964# made irrelevant even for RuntimeR0Rdrv).
965#
966# TODO: RuntimeGuestR0_EXTENDS = RuntimeR0Drv (kBuild)
967#
968RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
969RuntimeGuestR0_SDKS.win := W2K3DDKX86 WINPSDKINCS
970RuntimeGuestR0_DEFS := $(RuntimeR0Drv_DEFS)
971RuntimeGuestR0_DEFS.$(BUILD_TARGET) := $(RuntimeR0Drv_DEFS.$(BUILD_TARGET))
972RuntimeGuestR0_INCS := $(PATH_SUB_CURRENT)
973RuntimeGuestR0_INCS.$(BUILD_TARGET) := $(RuntimeR0Drv_INCS.$(BUILD_TARGET))
974RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
975RuntimeGuestR0_SOURCES += VBox/logbackdoor.cpp
976RuntimeGuestR0_SOURCES.$(BUILD_TARGET) := $(RuntimeR0Drv_SOURCES.$(BUILD_TARGET))
977RuntimeGuestR0_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) := $(RuntimeR0Drv_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
978ifdef VBOX_USE_VCC80
979RuntimeGuestR0_SOURCES.win += \
980 common/string/memchr.cpp \
981 common/string/memcmp.cpp \
982 common/string/memcpy.cpp \
983 common/string/memset.cpp \
984 common/string/strlen.cpp
985endif
986
987
988#
989# RuntimeW32GuestR0 - Win32 guest driver runtime.
990#
991RuntimeW32GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
992RuntimeW32GuestR0_SDKS = W2K3DDKX86 WINPSDKINCS
993RuntimeW32GuestR0_INCS := $(PATH_SUB_CURRENT)
994RuntimeW32GuestR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0
995RuntimeW32GuestR0_DEFS.$(BUILD_TARGET) =
996RuntimeW32GuestR0_SOURCES = \
997 $(filter-out generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \
998 $(RuntimeR0Drv_SOURCES.win) \
999 VBox/logbackdoor.cpp
1000ifdef VBOX_USE_VCC80
1001RuntimeW32GuestR0_SOURCES += \
1002 common/string/memchr.cpp \
1003 common/string/memcmp.cpp \
1004 common/string/memcpy.cpp \
1005 common/string/memset.cpp \
1006 common/string/strlen.cpp
1007endif
1008
1009
1010#
1011# RuntimeW32NT4GuestR0 - Win32 NT4 guest driver runtime.
1012#
1013RuntimeW32NT4GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
1014RuntimeW32NT4GuestR0_SDKS = $(RuntimeW32GuestR0_SDKS)
1015RuntimeW32NT4GuestR0_DEFS = $(RuntimeW32GuestR0_DEFS) IPRT_TARGET_NT4
1016RuntimeW32NT4GuestR0_INCS = $(RuntimeW32GuestR0_INCS)
1017RuntimeW32NT4GuestR0_SOURCES = $(RuntimeW32GuestR0_SOURCES)
1018
1019
1020#
1021# RuntimeLnx32GuestR0 - 32-bit Linux guest driver runtime.
1022#
1023RuntimeLnx32GuestR0_TEMPLATE = VBOXLNX32GUESTR0
1024RuntimeLnx32GuestR0_DEFS = RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0 \
1025 MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\)
1026RuntimeLnx32GuestR0_INCS = $(RuntimeR0Drv_INCS.linux) $(RuntimeR0Drv_INCS)
1027RuntimeLnx32GuestR0_SOURCES = \
1028 $(RuntimeR0Drv_SOURCES) \
1029 $(RuntimeR0Drv_SOURCES.linux) \
1030 VBox/logbackdoor.cpp
1031
1032
1033#
1034# RuntimeOS2GuestR0 - OS/2 Warp 4.5 guest driver runtime.
1035#
1036RuntimeOS2GuestR0_TEMPLATE = VBOXOS2GUESTR0LIB
1037RuntimeOS2GuestR0_INCS := $(PATH_SUB_CURRENT)
1038RuntimeOS2GuestR0_DEFS = RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
1039RuntimeOS2GuestR0_SOURCES = \
1040 $(filter-out common/misc/assert.cpp generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \
1041 $(RuntimeR0Drv_SOURCES.os2) \
1042 VBox/logbackdoor.cpp
1043
1044
1045#
1046# RuntimeGC - Guest context library.
1047#
1048RuntimeGC_TEMPLATE = VBOXGC
1049RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX
1050RuntimeGC_SOURCES = \
1051 common/log/log.cpp \
1052 common/log/logcom.cpp \
1053 common/log/logformat.cpp \
1054 common/misc/assert.cpp \
1055 common/misc/sanity-c.c \
1056 common/misc/sanity-cpp.cpp \
1057 common/string/memchr.cpp \
1058 common/string/memcmp.cpp \
1059 common/string/memcpy.cpp \
1060 common/string/memset.cpp \
1061 common/string/strcpy.cpp \
1062 common/string/strformat.cpp \
1063 common/string/strformatrt.cpp \
1064 common/string/strlen.cpp \
1065 common/string/strncmp.cpp \
1066 common/string/strpbrk.cpp \
1067 common/string/strprintf.cpp \
1068 common/table/avllu32.cpp \
1069 common/table/avlogcphys.cpp \
1070 common/table/avlogcptr.cpp \
1071 common/table/avlohcphys.cpp \
1072 common/table/avloioport.cpp \
1073 common/table/avlrogcphys.cpp \
1074 common/table/avlrogcptr.cpp \
1075 common/table/avlroioport.cpp \
1076 common/table/avlroogcptr.cpp \
1077 common/table/avlu32.cpp \
1078 common/time/timeprog.cpp \
1079 common/time/timesup.cpp \
1080 gc/initterm-gc.cpp \
1081 generic/RTAssertDoBreakpoint-generic.cpp \
1082 VBox/strformat-vbox.cpp \
1083
1084#if1of ($(BUILD_TARGET_ARCH),amd64 x86)
1085# RuntimeGC_SOURCES += common/time/timesupA.asm
1086#else
1087 RuntimeGC_SOURCES += common/time/timesupref.cpp
1088#endif
1089
1090RuntimeGC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
1091
1092ifeq ($(VBOX_LDR_FMT32),lx)
1093 RuntimeGC_SOURCES += os2/sys0.asm
1094endif
1095
1096ifeq ($(filter-out darwin solaris freebsd,$(BUILD_TARGET)),)
1097RuntimeGC_SOURCES += \
1098 common/math/gcc/adddi3.c \
1099 common/math/gcc/anddi3.c \
1100 common/math/gcc/ashldi3.c \
1101 common/math/gcc/ashrdi3.c \
1102 common/math/gcc/cmpdi2.c \
1103 common/math/gcc/divdi3.c \
1104 common/math/gcc/iordi3.c \
1105 common/math/gcc/lshldi3.c \
1106 common/math/gcc/lshrdi3.c \
1107 common/math/gcc/moddi3.c \
1108 common/math/gcc/muldi3.c \
1109 common/math/gcc/negdi2.c \
1110 common/math/gcc/notdi2.c \
1111 common/math/gcc/qdivrem.c \
1112 common/math/gcc/subdi3.c \
1113 common/math/gcc/ucmpdi2.c \
1114 common/math/gcc/udivdi3.c \
1115 common/math/gcc/umoddi3.c \
1116 common/math/gcc/xordi3.c
1117endif
1118
1119
1120#
1121# Static library for new & delete for the electric fence.
1122#
1123RuntimeEFCPP_TEMPLATE = $(RuntimeR3_TEMPLATE)
1124RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
1125RuntimeEFCPP_SDKS.$(BUILD_TARGET) = $(RuntimeR3_SDKS.$(BUILD_TARGET))
1126RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
1127RuntimeEFCPP_DEFS.$(BUILD_TARGET) = $(RuntimeR3_DEFS.$(BUILD_TARGET))
1128RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
1129RuntimeEFCPP_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
1130RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
1131
1132
1133
1134#
1135# errmsg.cpp depends on a generated header.
1136#
1137common/err/errmsg.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h
1138common/err/errmsg.cpp_INCS = $(PATH_TARGET)
1139
1140win/errmsgwin.cpp_DEPS = $(PATH_TARGET)/errmsgcomdata.h
1141win/errmsgwin.cpp_INCS = $(PATH_TARGET)
1142
1143
1144# Generate the rules
1145include $(PATH_KBUILD)/footer.kmk
1146
1147
1148ifneq ($(wildcard /usr/bin/chcon),)
1149# this is needed for testcases executed at build time
1150$(PATH_BIN)/VBoxRT.so:
1151 $(INSTALL) $(out) $@
1152 chcon -t texrel_shlib_t $@ || true
1153endif
1154
1155
1156#
1157# Generate the status code data.
1158#
1159$(PATH_TARGET)/errmsgdata.h: common/err/errmsg.sed $(DEPTH)/include/iprt/err.h $(DEPTH)/include/VBox/err.h
1160 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1161 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1162 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1163
1164## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
1165$(PATH_TARGET)/errmsgcomdata.h: common/err/errmsgcom.sed $(PATH_SDK_WINPSDK_INC)/WinError.h
1166 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1167 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1168 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1169
1170$(PATH_TARGET)/errmsgxpcomdata.h: common/err/errmsgxpcom.sed $(DEPTH)/src/libs/xpcom18a4/xpcom/base/nsError.h
1171 $(call MSG_GENERATE,,$@,$(filter %.h,$^))
1172 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
1173 $(QUIET)$(REDIRECT) -wo $@ -- $(SED) -f $< $(filter %.h,$^)
1174
1175
1176#
1177# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
1178#
1179ldrELFRelocatable.cpp.o: ldrELF.o
1180ldrELFRelocatable.cpp.obj: ldrELF.obj
1181
1182
1183#
1184# Doxygen documentation.
1185#
1186DOXYGEN_INPUT_DIRS = \
1187 $(PATH_ROOT)/include/iprt \
1188 $(PATH_ROOT)/include/iprt/nocrt \
1189 $(PATH_ROOT)/include/iprt/nocrt/x86 \
1190 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
1191 include/internal \
1192 common/alloc \
1193 common/checksum \
1194 common/err \
1195 common/ldr \
1196 common/log \
1197 common/misc \
1198 common/string \
1199 common/table \
1200 common/time \
1201 $(foreach dir, . r3 r0drv,\
1202 $(dir) \
1203 $(dir)/darwin \
1204 $(dir)/l4 \
1205 $(dir)/linux \
1206 $(dir)/nt \
1207 $(dir)/os2 \
1208 $(dir)/win \
1209 $(dir)/win32 \
1210 $(dir)/win64 \
1211 $(dir)/generic \
1212 )
1213
1214# These must come first in order to make things look nice.
1215DOXYGEN_INPUT_FIRST =\
1216 $(PATH_ROOT)/include/iprt/cdefs.h \
1217 $(PATH_ROOT)/include/iprt/types.h \
1218 $(PATH_ROOT)/include/iprt/runtime.h \
1219 $(PATH_ROOT)/include/iprt/param.h \
1220 $(PATH_ROOT)/include/iprt/assert.h \
1221 $(PATH_ROOT)/include/iprt/asm.h \
1222
1223DOXYGEN_INPUT := \
1224 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(DOXYGEN_INPUT_DIRS)))) ) \
1225 $(foreach dir, $(DOXYGEN_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
1226DOXYGEN_INPUT := \
1227 $(DOXYGEN_INPUT_FIRST) \
1228 $(filter-out $(DOXYGEN_INPUT_FIRST), $(DOXYGEN_INPUT))
1229
1230
1231DOXYGEN_OUTPUT = $(PATH_OUT)/docs/iprt
1232
1233-include $(PATH_TARGET)/Doxyfile.dep
1234
1235# Generate the Doxyfile
1236$(PATH_TARGET)/Doxyfile: Doxyfile \
1237 $(comp-vars DOXYGEN_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
1238 $(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
1239 | $(call DIRDEP, $(PATH_TARGET))
1240 $(RM) -f $@ [email protected] $(PATH_TARGET)/Doxyfile.dep
1241 $(CP) -f Doxyfile [email protected]
1242 $(APPEND) [email protected]
1243 $(APPEND) [email protected] "OUTPUT_DIRECTORY = $(DOXYGEN_OUTPUT)"
1244 $(APPEND) [email protected] "WARN_LOGFILE = $(DOXYGEN_OUTPUT)/errors"
1245 $(APPEND) [email protected] "INCLUDE_PATH = $(PATH_ROOT)/include include . common/table"
1246 $(APPEND) [email protected] "INCLUDE_FILE_PATTERNS = *.cpp.h"
1247 $(APPEND) [email protected]
1248 $(APPEND) [email protected] "INPUT = $(DOXYGEN_INPUT)"
1249 $(APPEND) [email protected]
1250 $(MV) -f [email protected] $@
1251 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_OUTPUT_PREV = $(DOXYGEN_OUTPUT)"
1252 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_INPUT_PREV = $(DOXYGEN_INPUT)"
1253
1254# Create the output directory.
1255$(call DIRDEP, $(DOXYGEN_OUTPUT)):
1256 $(MKDIR) -p $@
1257
1258# Do the actual job.
1259$(PATH_TARGET)/docs.iprt: $(PATH_TARGET)/Doxyfile $(DOXYGEN_INPUT) | $(call DIRDEP, $(DOXYGEN_OUTPUT))
1260 $(RM) -f $(wildcard $(DOXYGEN_OUTPUT)/html/*) $(PATH_TARGET)/docs.iprt
1261 doxygen $(PATH_TARGET)/Doxyfile
1262 $(APPEND) $(PATH_TARGET)/docs.iprt
1263
1264# alias
1265docs: $(PATH_TARGET)/docs.iprt
1266
1267test:
1268 @echo test-$(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1269 @echo $(DOXYGEN_OUTPUT)
1270 @echo $(DOXYGEN_OUTPUT_PREV)
1271
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