VirtualBox

source: vbox/trunk/src/VBox/Runtime/Makefile@ 1781

最後變更 在這個檔案從1781是 1781,由 vboxsync 提交於 18 年 前

Split out generic/RTTimerCreate-generic.cpp from generic/timer-generic.cpp.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Id
檔案大小: 27.2 KB
 
1# $Id: Makefile 1781 2007-03-28 16:46:12Z vboxsync $
2## @file
3# Makefile for the InnoTek Portable Runtime (IPRT).
4#
5
6#
7# Copyright (C) 2006 InnoTek Systemberatung GmbH
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.alldomusa.eu.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 as published by the Free Software Foundation,
13# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14# distribution. VirtualBox OSE is distributed in the hope that it will
15# be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# If you received this file as part of a commercial VirtualBox
18# distribution, then only the terms of your commercial VirtualBox
19# license agreement apply instead of the previous paragraph.
20#
21
22
23DEPTH = ../../..
24include $(PATH_KBUILD)/header.kmk
25
26ifndef VBOX_ADDITIONS_LINUX_ONLY
27 # Normal mode.
28 BLDPROGS = uniread
29 LIBRARIES = RuntimeR3 RuntimeR0 RuntimeGC RuntimeEFCPP RuntimeR3NoCRTGCC
30 ifdef VBOX_WITH_VBOXDRV
31 LIBRARIES += RuntimeR0Drv
32 endif
33 ifdef VBOX_WITH_WIN32_ADDITIONS
34 LIBRARIES += RuntimeW32GuestR0 RuntimeW32GuestR3 RuntimeW32NT4GuestR0
35 endif
36 ifdef VBOX_WITH_LINUX_ADDITIONS
37 LIBRARIES += RuntimeLnx32GuestR3
38 ifdef VBOX_WITH_LINUX_ADDITIONS_32BIT_R0
39 LIBRARIES += RuntimeLnx32GuestR0
40 endif
41 endif
42 LIBRARIES.l4= RuntimeR3L4
43 DLLS = VBoxRT
44 OTHER_CLEAN = \
45 $(PATH_TARGET)/errmsgdata.h \
46 $(PATH_TARGET)/errmsgcomdata.h \
47 $(PATH_TARGET)/Doxyfile \
48 $(PATH_TARGET)/Doxyfile.dep \
49 $(PATH_TARGET)/docs.iprt
50
51 SUBDIRS_AFTER = testcase
52
53else
54 # Linux target guest runtime only mode.
55 LIBRARIES = RuntimeLnx32GuestR0 RuntimeLnx32GuestR3
56endif # only linux guest additions
57
58
59# global (for now at least)
60INCS += include
61
62ifneq ($(wildcard ./kLdr/kLdrModMachO.c),)
63 IPRT_WITH_KLDR=1
64 IPRT_PATH_KLDR=./kLdr
65endif
66
67#
68# Unicode Specification reader used to regenerate unidata.cpp.
69#
70uniread_TEMPLATE = VBOXBLDPROG
71uniread_SOURCES = uniread.cpp
72
73#
74# Win64 assembly sources.
75#
76RuntimeWin64ASM_SOURCES = \
77 win64/ASMAtomicBitClear.asm \
78 win64/ASMAtomicBitTestAndToggle.asm \
79 win64/ASMAtomicBitToggle.asm \
80 win64/ASMAtomicReadU64.asm \
81 win64/ASMAtomicXchgU16.asm \
82 win64/ASMAtomicXchgU8.asm \
83 win64/ASMBitFirstClear.asm \
84 win64/ASMBitFirstSet.asm \
85 win64/ASMGetCS.asm \
86 win64/ASMGetDS.asm \
87 win64/ASMGetES.asm \
88 win64/ASMGetFlags.asm \
89 win64/ASMGetFS.asm \
90 win64/ASMGetGS.asm \
91 win64/ASMGetIDTR.asm \
92 win64/ASMGetGDTR.asm \
93 win64/ASMGetTR.asm \
94 win64/ASMGetSS.asm \
95 win64/ASMProbeReadByte.asm \
96 win64/ASMSetFlags.asm \
97 win64/ASMGetDR0.asm \
98 win64/ASMGetDR1.asm \
99 win64/ASMGetDR2.asm \
100 win64/ASMGetDR3.asm \
101 win64/ASMGetDR6.asm \
102 win64/ASMGetDR7.asm \
103
104#
105# RuntimeR3 - Static Runtime for Ring-3 executables.
106#
107RuntimeR3_TEMPLATE = VBOXR3EXE
108RuntimeR3_SDKS.win = WINPSDK W2K3DDK
109RuntimeR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
110ifdef IPRT_WITH_KLDR
111 RuntimeR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
112 RuntimeR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
113endif
114RuntimeR3_DEFS.l4 = L4
115ifdef VBOX_MAIN_RELEASE_LOG ## @todo (dmik): temporary, until RTThreadSelf/RTThreadAdopt are properly updated
116 RuntimeR3_DEFS += RTCRITSECT_STRICT
117endif
118RuntimeR3_INCS = \
119 $(PATH_ROOT)/src/libs/liblzf-1.51
120ifdef IPRT_WITH_KLDR
121 RuntimeR3_INCS += \
122 $(IPRT_PATH_KLDR)
123endif
124RuntimeR3_INCS.l4 = \
125 $(L4_INCDIR)
126# for iconv.h
127RuntimeR3_INCS.freebsd = \
128 /usr/local/include
129
130RuntimeR3_SOURCES = \
131 misc/sanity-cpp.cpp \
132 misc/sanity-c.c \
133 alloc.cpp \
134 alloc/heapsimple.cpp \
135 assert.cpp \
136 table/avlhcphys.cpp \
137 table/avlgcptr.cpp \
138 table/avlogcphys.cpp \
139 table/avlogcptr.cpp \
140 table/avlohcphys.cpp \
141 table/avloioport.cpp \
142 table/avlpv.cpp \
143 table/avlrgcptr.cpp \
144 table/avlrogcphys.cpp \
145 table/avlrogcptr.cpp \
146 table/avlroogcptr.cpp \
147 table/avlroioport.cpp \
148 table/avlu32.cpp \
149 table/avlul.cpp \
150 table/table.cpp \
151 crc32.cpp \
152 crc64.cpp \
153 dir.cpp \
154 errmsg.cpp \
155 fileio.cpp \
156 fs.cpp \
157 generic/critsect-generic.cpp \
158 generic/RTFileCopy-generic.cpp \
159 generic/RTLogWriteStdErr-generic.cpp \
160 generic/RTLogWriteStdOut-generic.cpp \
161 generic/RTLogWriteUser-generic.cpp \
162 generic/semfastmutex-generic.cpp \
163 generic/spinlock-generic.cpp \
164 ldr.cpp \
165 ldrFile.cpp \
166 ldrNative.cpp \
167 ldrELF.cpp \
168 ldrEx.cpp \
169 ldrPE.cpp \
170 log.cpp \
171 logcom.cpp \
172 logformat.cpp \
173 md5.cpp \
174 path.cpp \
175 req.cpp \
176 r3/alloc-ef.cpp \
177 r3/alloc.cpp \
178 r3/init.cpp \
179 r3/process.cpp \
180 r3/stream.cpp \
181 r3/tcp.cpp \
182 RTErrConvertFromErrno.cpp \
183 semspingpong.cpp \
184 straprintf.cpp \
185 strformat.cpp \
186 strformatrt.cpp \
187 string.cpp \
188 strprintf.cpp \
189 strspace.cpp \
190 strstrip.cpp \
191 strtonum.cpp \
192 thread.cpp \
193 time.cpp \
194 timeprog.cpp \
195 uni.cpp \
196 unidata.cpp \
197 utf-16.cpp \
198 utf-8.cpp \
199 zip.cpp \
200 misc/rand.cpp \
201
202ifdef IPRT_WITH_KLDR
203 RuntimeR3_SOURCES += \
204 ldrkLdr.cpp \
205 $(IPRT_PATH_KLDR)/kLdrMod.c \
206 $(IPRT_PATH_KLDR)/kLdrModLX.c \
207 $(IPRT_PATH_KLDR)/kLdrModPE.c \
208 $(IPRT_PATH_KLDR)/kLdrModMachO.c \
209 $(IPRT_PATH_KLDR)/kLdrModNative.c \
210 $(IPRT_PATH_KLDR)/kLdrMisc.c \
211 $(IPRT_PATH_KLDR)/kLdrRdr.c \
212 $(IPRT_PATH_KLDR)/kLdrHlpStr.c
213# We Implement these using IPRT facilities.
214# $(IPRT_PATH_KLDR)/kLdrHlp.c \
215# $(IPRT_PATH_KLDR)/kLdrHlpHeap.c \
216# $(IPRT_PATH_KLDR)/kLdrHlpSem.c \
217# $(IPRT_PATH_KLDR)/kLdrHlpMem.c \
218# $(IPRT_PATH_KLDR)/kLdrHlpPath.c
219
220endif
221
222# VBox specific stuff.
223RuntimeR3_SOURCES += \
224 VBox/strformat-vbox.cpp \
225 VBox/RTAssertDoBreakpoint-vbox.cpp \
226 VBox/log-vbox.cpp
227
228RuntimeR3_SOURCES.win = \
229 generic/RTDirQueryInfo-generic.cpp \
230 generic/RTDirSetTimes-generic.cpp \
231 generic/semsrw-generic.cpp \
232 generic/semnoint-generic.cpp \
233 generic/rand-stubs-generic.cpp \
234 nt/RTErrConvertFromNtStatus.cpp \
235 win32/errmsgwin.cpp \
236 r3/posix/env-posix.cpp \
237 r3/win32/alloc-win32.cpp \
238 r3/win32/dir-win32.cpp \
239 r3/win32/fileio-win32.cpp \
240 r3/win32/fs-win32.cpp \
241 r3/win32/ldrNative-win32.cpp \
242 r3/win32/path-win32.cpp \
243 r3/win32/process-win32.cpp \
244 r3/win32/RTLogWriteDebugger-win32.cpp \
245 r3/win32/sched-win32.cpp \
246 r3/win32/sems-win32.cpp \
247 r3/win32/system-win32.cpp \
248 r3/win32/thread-win32.cpp \
249 r3/win32/time-win32.cpp \
250 r3/win32/timer-win32.cpp \
251 r3/win32/utf16locale-win32.cpp \
252 r3/win32/utf8-win32.cpp \
253 r3/win32/uuid-win32.cpp \
254 timesup.cpp \
255 win32/RTErrConvertFromWin32.cpp
256
257RuntimeR3_SOURCES.win.amd64 = \
258 $(RuntimeWin64ASM_SOURCES)
259
260RuntimeR3_SOURCES.linux = \
261 generic/RTDirQueryInfo-generic.cpp \
262 generic/RTDirSetTimes-generic.cpp \
263 generic/RTFileMove-generic.cpp \
264 generic/RTLogWriteDebugger-generic.cpp \
265 r3/posix/RTTimeNow-posix.cpp \
266 r3/posix/alloc-posix.cpp \
267 r3/posix/dir-posix.cpp \
268 r3/posix/env-posix.cpp \
269 r3/posix/fileio-posix.cpp \
270 r3/posix/filelock-posix.cpp \
271 r3/posix/fs-posix.cpp \
272 r3/posix/ldrNative-posix.cpp \
273 r3/posix/path-posix.cpp \
274 generic/pathhost-generic.cpp \
275 r3/posix/process-posix.cpp \
276 r3/posix/rand-posix.cpp \
277 r3/posix/system-posix.cpp \
278 r3/linux/sched-linux.cpp \
279 r3/posix/thread-posix.cpp \
280 r3/linux/time-linux.cpp \
281 r3/posix/timer-posix.cpp \
282 generic/utf16locale-generic.cpp \
283 r3/posix/utf8-posix.cpp \
284 generic/uuid-generic.cpp \
285 timesup.cpp
286ifeq ($(BUILD_TARGET_ARCH),amd64)
287 RuntimeR3_SOURCES.linux += r3/linux/sems-linux.cpp
288else
289 RuntimeR3_SOURCES.linux += r3/posix/sems-posix.cpp
290endif
291
292RuntimeR3_SOURCES.os2 = \
293 generic/RTDirQueryInfo-generic.cpp \
294 generic/RTDirSetTimes-generic.cpp \
295 generic/RTFileMove-generic.cpp \
296 generic/RTLogWriteDebugger-generic.cpp \
297 os2/RTErrConvertFromOS2.cpp \
298 r3/os2/sems-os2.cpp \
299 r3/os2/system-os2.cpp \
300 r3/os2/thread-os2.cpp \
301 r3/posix/alloc-posix.cpp \
302 r3/posix/dir-posix.cpp \
303 r3/posix/env-posix.cpp \
304 r3/posix/fileio-posix.cpp \
305 r3/posix/filelock-posix.cpp \
306 r3/posix/fs-posix.cpp \
307 r3/posix/ldrNative-posix.cpp \
308 r3/posix/path-posix.cpp \
309 generic/pathhost-generic.cpp \
310 r3/posix/process-posix.cpp \
311 generic/rand-stubs-generic.cpp \
312 generic/semsrw-generic.cpp \
313 generic/semnoint-generic.cpp \
314 generic/sched-generic.cpp \
315 r3/os2/time-os2.cpp \
316 r3/posix/timer-posix.cpp \
317 r3/posix/RTTimeNow-posix.cpp \
318 generic/utf16locale-generic.cpp \
319 r3/posix/utf8-posix.cpp \
320 generic/uuid-generic.cpp \
321 timesup.cpp \
322
323RuntimeR3_SOURCES.darwin = \
324 generic/RTDirQueryInfo-generic.cpp \
325 generic/RTDirSetTimes-generic.cpp \
326 generic/RTFileMove-generic.cpp \
327 generic/RTLogWriteDebugger-generic.cpp \
328 generic/RTTimerCreate-generic.cpp \
329 generic/pathhost-generic.cpp \
330 generic/sched-generic.cpp \
331 generic/timer-generic.cpp \
332 generic/utf16locale-generic.cpp \
333 generic/uuid-generic.cpp\
334 r3/darwin/alloc-darwin.cpp \
335 r3/posix/dir-posix.cpp \
336 r3/posix/env-posix.cpp \
337 r3/posix/fileio-posix.cpp \
338 r3/darwin/filelock-darwin.cpp \
339 r3/posix/fs-posix.cpp \
340 r3/posix/ldrNative-posix.cpp \
341 r3/posix/path-posix.cpp \
342 r3/posix/process-posix.cpp \
343 r3/posix/rand-posix.cpp \
344 r3/posix/sems-posix.cpp \
345 r3/posix/system-posix.cpp \
346 r3/posix/thread-posix.cpp \
347 r3/posix/utf8-posix.cpp \
348 r3/darwin/time-darwin.cpp \
349 timesup.cpp \
350
351## @todo Make BSD sched.
352RuntimeR3_SOURCES.freebsd = \
353 generic/RTDirQueryInfo-generic.cpp \
354 generic/RTDirSetTimes-generic.cpp \
355 generic/RTFileMove-generic.cpp \
356 generic/RTLogWriteDebugger-generic.cpp \
357 generic/pathhost-generic.cpp \
358 generic/sched-generic.cpp \
359 generic/uuid-generic.cpp \
360 r3/freebsd/alloc-freebsd.cpp \
361 r3/posix/dir-posix.cpp \
362 r3/posix/env-posix.cpp \
363 r3/posix/fileio-posix.cpp \
364 r3/posix/filelocks-posix.cpp \
365 r3/posix/fs-posix.cpp \
366 r3/posix/ldrNative-posix.cpp \
367 r3/posix/path-posix.cpp \
368 r3/posix/process-posix.cpp \
369 r3/posix/rand-posix.cpp \
370 r3/posix/sems-posix.cpp \
371 r3/posix/system-posix.cpp \
372 r3/posix/thread-posix.cpp \
373 r3/posix/time-posix.cpp \
374 r3/posix/timer-posix.cpp \
375 r3/posix/RTTimeNow-posix.cpp \
376 generic/utf16locale-generic.cpp \
377 r3/posix/utf8-posix.cpp \
378 timesup.cpp \
379
380## PORTME: Porters add their selection of platform specific files for Ring-3 here.
381
382
383#
384# L4 RuntimeR3 subtarget since L4 headers won't work with VBOXR3.
385#
386RuntimeR3L4_TEMPLATE = VBOXR3NP
387RuntimeR3L4_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF LDR_WITH_PE
388RuntimeR3L4_INCS = $(L4_INCDIR)
389
390RuntimeR3L4_SOURCES = \
391 generic/RTDirQueryInfo-generic.cpp \
392 generic/RTDirSetTimes-generic.cpp \
393 generic/RTFileMove-generic.cpp \
394 generic/RTLogWriteDebugger-generic.cpp \
395 generic/fs-stubs-generic.cpp \
396 generic/pathhost-generic.cpp \
397 generic/sched-generic.cpp \
398 generic/semsrw-generic.cpp \
399 generic/semnoint-generic.cpp \
400 generic/uuid-generic.cpp \
401 l4/l4-errno.cpp \
402 l4/process-l4env.cpp \
403 l4/sems-l4env.cpp \
404 l4/system-l4env.cpp \
405 l4/thread-l4env.cpp \
406 l4/timer-l4env.cpp \
407 generic/utf16locale-generic.cpp \
408 l4/utf8-l4env.cpp \
409 r3/posix/alloc-posix.cpp \
410 r3/posix/env-posix.cpp \
411 r3/posix/dir-posix.cpp \
412 r3/posix/fileio-posix.cpp \
413 r3/posix/filelock-posix.cpp \
414 r3/posix/ldrNative-posix.cpp \
415 r3/posix/path-posix.cpp \
416 r3/posix/rand-posix.cpp \
417 r3/posix/time-posix.cpp \
418 r3/posix/RTTimeNow-posix.cpp \
419 timesup.cpp
420
421#
422# RuntimeW32GuestR3 - Win32 guest program runtime.
423#
424RuntimeW32GuestR3_TEMPLATE = VBOXW32GUESTR3LIB
425RuntimeW32GuestR3_SDKS = WINPSDK W2K3DDK
426RuntimeW32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
427ifdef IPRT_WITH_KLDR
428 RuntimeW32GuestR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
429 RuntimeW32GuestR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
430endif
431RuntimeW32GuestR3_SOURCES = $(RuntimeR3_SOURCES.win) $(RuntimeR3_SOURCES)
432RuntimeW32GuestR3_INCS = $(RuntimeR3_INCS.win) $(RuntimeR3_INCS)
433
434
435#
436# RuntimeLnx32GuestR3 - 32-bit Linux guest program runtime.
437#
438RuntimeLnx32GuestR3_TEMPLATE = VBOXLNX32GUESTR3LIB
439RuntimeLnx32GuestR3_DEFS = IN_RT_R3 IN_SUP_R3 LDR_WITH_NATIVE LDR_WITH_ELF32 LDR_WITH_PE RT_WITH_VBOX
440ifdef IPRT_WITH_KLDR
441 RuntimeLnx32GuestR3_DEFS += LDR_WITH_KLDR KLDR_USE_CRT
442 RuntimeLnx32GuestR3_DEFS.debug += KLDRMOD_STRICT KLDRMODLX_STRICT KLDRMODPE_STRICT KLDRMODNATIVE_STRICT KLDRRDR_STRICT
443endif
444RuntimeLnx32GuestR3_SOURCES = $(RuntimeR3_SOURCES.linux) $(RuntimeR3_SOURCES)
445RuntimeLnx32GuestR3_INCS = $(RuntimeR3_INCS.linux) $(RuntimeR3_INCS)
446
447
448#
449# VBoxRT - Shared Object / DLL version.
450#
451VBoxRT_TEMPLATE = VBOXR3
452VBoxRT_SDKS.win = WINPSDK W2K3DDK VBOX_NTDLL
453ifeq ($(BUILD_TARGET),darwin)
454VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
455endif
456VBoxRT_DEFS = $(RuntimeR3_DEFS) IN_SUP_R3 IN_SUP_R3
457VBoxRT_DEFS.$(BUILD_TYPE) = $(RuntimeR3_DEFS.$(BUILD_TYPE))
458VBoxRT_SOURCES = \
459 VBox/VBoxRTDeps.cpp \
460 $(RuntimeR3_SOURCES)
461VBoxRT_SOURCES.$(BUILD_TARGET) = $(RuntimeR3_SOURCES.$(BUILD_TARGET))
462VBoxRT_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_SOURCES.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
463VBoxRT_SOURCES.win += r3/win32/dllmain-win32.cpp
464VBoxRT_SOURCES.win.amd64 += r3/win64/VBoxRT-win64.def
465VBoxRT_INCS = $(RuntimeR3_INCS)
466VBoxRT_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
467VBoxRT_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH) = $(RuntimeR3_INCS.$(BUILD_TARGET).$(BUILD_TARGET_ARCH))
468VBoxRT_LIBS = \
469 $(PATH_LIB)/SUPR3$(VBOX_SUFF_LIB) \
470 $(PATH_LIB)/VBox-liblzf$(VBOX_SUFF_LIB)
471VBoxRT_LIBS.darwin = \
472 iconv
473VBoxRT_LIBS.freebsd = \
474 iconv
475VBoxRT_LIBPATH.freebsd = \
476 /usr/local/lib
477VBoxRT_LDFLAGS.darwin = -framework IOKit -install_name @executable_path/VBoxRT.dylib
478ifdef VBOX_USE_VCC80
479VBoxRT_LDFLAGS.win = /MANIFEST
480endif
481VBoxRT_LDFLAGS.l4 = \
482 -Wl,-whole-archive \
483 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB) \
484 -Wl,-no-whole-archive
485ifeq ($(BUILD_TARGET),l4)
486VBoxRT_LIBS += \
487 $(L4_LIBDIR)/libl4sys.a \
488 $(L4_LIBDIR)/libl4sys.p.a
489endif
490VBoxRT_LIBS.l4 = \
491 $(PATH_LIB)/RuntimeR3L4$(VBOX_SUFF_LIB)
492
493
494#
495# RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
496# This is used together with VBoxRT.
497#
498RuntimeR3NoCRTGCC_TEMPLATE = VBOXNOCRTGCC
499RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
500RuntimeR3NoCRTGCC_SOURCES = \
501 misc/sanity-cpp.cpp \
502 misc/sanity-c.c \
503 \
504 math/ceill.asm \
505 math/cosl.asm \
506 math/fabs.asm \
507 math/fabsf.asm \
508 math/fabsl.asm \
509 math/floor.asm \
510 math/floorf.asm \
511 math/floorl.asm \
512 math/ldexpl.asm \
513 math/llrint.asm \
514 math/llrintf.asm \
515 math/llrintl.asm \
516 math/logl.asm \
517 math/lrint.asm \
518 math/lrintf.asm \
519 math/lrintl.asm \
520 math/remainder.asm \
521 math/remainderf.asm \
522 math/remainderl.asm \
523 math/sinl.asm \
524 math/tanl.asm \
525 math/trunc.asm \
526 math/truncf.asm \
527 math/truncl.asm \
528 \
529 misc/setjmp.asm \
530 \
531 string/memchr.asm \
532 string/memchr_alias.c \
533 string/memcmp.asm \
534 string/memcmp_alias.c \
535 string/memcpy.asm \
536 string/memcpy_alias.c \
537 string/mempcpy.asm \
538 string/memset.asm \
539 string/memset_alias.c \
540 string/strchr.asm \
541 string/strchr_alias.c \
542 string/strcmp.asm \
543 string/strcmp_alias.c
544
545RuntimeR3NoCRTGCC_SOURCES.x86 = \
546 math/x86/fenv-x86.c \
547 math/gcc/adddi3.c \
548 math/gcc/anddi3.c \
549 math/gcc/ashldi3.c \
550 math/gcc/ashrdi3.c \
551 math/gcc/cmpdi2.c \
552 math/gcc/divdi3.c \
553 math/gcc/iordi3.c \
554 math/gcc/lshldi3.c \
555 math/gcc/lshrdi3.c \
556 math/gcc/moddi3.c \
557 math/gcc/muldi3.c \
558 math/gcc/negdi2.c \
559 math/gcc/notdi2.c \
560 math/gcc/qdivrem.c \
561 math/gcc/subdi3.c \
562 math/gcc/ucmpdi2.c \
563 math/gcc/udivdi3.c \
564 math/gcc/umoddi3.c \
565 math/gcc/xordi3.c
566
567
568## @todo stop using the old memcpy.c and memset.c code.
569
570#
571# RuntimeR0 - Ring0 library for VMMR0.
572#
573RuntimeR0_TEMPLATE = VBOXR0
574RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX
575RuntimeR0_SOURCES = \
576 misc/sanity-cpp.cpp \
577 misc/sanity-c.c \
578 assert.cpp \
579 generic/RTAssertDoBreakpoint-generic.cpp \
580 table/avlhcphys.cpp \
581 table/avlgcptr.cpp \
582 table/avlogcphys.cpp \
583 table/avlohcphys.cpp \
584 table/avlpv.cpp \
585 table/avlrogcphys.cpp \
586 table/avlogcptr.cpp \
587 table/avlrogcptr.cpp \
588 table/avlroogcptr.cpp \
589 table/avloioport.cpp \
590 table/avlroioport.cpp \
591 logcom.cpp \
592 logformat.cpp \
593 strformat.cpp \
594 strformatrt.cpp \
595 strprintf.cpp \
596 string/memchr.cpp \
597 string/memcmp.cpp \
598 string/memcpy.cpp \
599 string/memset.cpp \
600 string/strcpy.cpp \
601 string/strlen.cpp \
602 string/strncmp.cpp \
603 string/strpbrk.cpp \
604 VBox/strformat-vbox.cpp \
605 timesup.cpp
606
607RuntimeR0_SOURCES.win.amd64 = $(RuntimeWin64ASM_SOURCES)
608
609RuntimeR0_SOURCES.os2 = \
610 os2/RTErrConvertFromOS2.cpp \
611 os2/sys0.asm
612
613RuntimeR0_SOURCES.darwin.x86 = \
614 math/gcc/adddi3.c \
615 math/gcc/anddi3.c \
616 math/gcc/ashldi3.c \
617 math/gcc/ashrdi3.c \
618 math/gcc/cmpdi2.c \
619 math/gcc/divdi3.c \
620 math/gcc/iordi3.c \
621 math/gcc/lshldi3.c \
622 math/gcc/lshrdi3.c \
623 math/gcc/moddi3.c \
624 math/gcc/muldi3.c \
625 math/gcc/negdi2.c \
626 math/gcc/notdi2.c \
627 math/gcc/qdivrem.c \
628 math/gcc/subdi3.c \
629 math/gcc/ucmpdi2.c \
630 math/gcc/udivdi3.c \
631 math/gcc/umoddi3.c \
632 math/gcc/xordi3.c
633
634
635string/memchr.cpp_CXXFLAGS.win = -Oi-
636string/memcmp.cpp_CXXFLAGS.win = -Oi-
637string/memcpy.cpp_CXXFLAGS.win = -Oi-
638string/memset.cpp_CXXFLAGS.win = -Oi-
639string/strcpy.cpp_CXXFLAGS.win = -Oi-
640string/strlen.cpp_CXXFLAGS.win = -Oi-
641
642ifeq ($(BUILD_TARGET),l4)
643RuntimeR0Drv_BLD_TRG = linux
644RuntimeR0Drv_BLD_TRG_ARCH = x86
645RuntimeR0Drv_BLD_TRG_CPU = i386
646endif
647
648#
649# RuntimeR0Drv - Ring0 library for host drivers.
650#
651RuntimeR0Drv_TEMPLATE = VBOXR0DRV
652RuntimeR0Drv_SDKS.win = W2K3DDK WINPSDKINCS
653RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS
654RuntimeR0Drv_DEFS.win = IN_SUP_R0
655RuntimeR0Drv_DEFS.linux = MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) IN_SUP_R0 # why is IN_SUP_R0 here? because!
656
657RuntimeR0Drv_INCS.linux = \
658 r0drv/linux
659
660RuntimeR0Drv_SOURCES = \
661 misc/sanity-cpp.cpp \
662 misc/sanity-c.c \
663 assert.cpp \
664 log.cpp \
665 logcom.cpp \
666 logformat.cpp \
667 string/strpbrk.cpp \
668 strformat.cpp \
669 strformatrt.cpp \
670 strtonum.cpp \
671 strprintf.cpp \
672 VBox/strformat-vbox.cpp \
673 r0drv/alloc-r0drv.cpp \
674 r0drv/initterm-r0drv.cpp \
675 generic/RTLogWriteStdErr-stub-generic.cpp \
676 generic/RTLogWriteStdOut-stub-generic.cpp \
677 generic/RTLogWriteUser-generic.cpp \
678 VBox/log-vbox.cpp \
679 table/avlpv.cpp \
680 crc32.cpp \
681 crc64.cpp
682
683RuntimeR0Drv_SOURCES.linux = \
684 generic/RTAssertDoBreakpoint-generic.cpp \
685 alloc/heapsimple.cpp \
686 r0drv/linux/alloc-r0drv-linux.c \
687 r0drv/linux/initterm-r0drv-linux.c \
688 r0drv/linux/process-r0drv-linux.c \
689 r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
690 r0drv/linux/semaphore-r0drv-linux.c \
691 r0drv/linux/spinlock-r0drv-linux.c \
692 r0drv/linux/thread-r0drv-linux.c
693
694RuntimeR0Drv_SOURCES.win = \
695 generic/RTAssertDoBreakpoint-generic.cpp \
696 nt/RTErrConvertFromNtStatus.cpp \
697 r0drv/nt/alloc-r0drv-nt.cpp \
698 r0drv/nt/initterm-r0drv-nt.cpp \
699 r0drv/nt/process-r0drv-nt.cpp \
700 r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
701 r0drv/nt/semaphore-r0drv-nt.cpp \
702 r0drv/nt/spinlock-r0drv-nt.cpp \
703 r0drv/nt/thread-r0drv-nt.cpp \
704 string/strncmp.cpp
705
706RuntimeR0Drv_SOURCES.win.amd64 = \
707 $(RuntimeWin64ASM_SOURCES)
708
709RuntimeR0Drv_SOURCES.darwin = \
710 generic/RTAssertDoBreakpoint-generic.cpp \
711 generic/RTTimerCreate-generic.cpp \
712 RTErrConvertFromErrno.cpp \
713 string/memchr.asm \
714 r0drv/memobj-r0drv.cpp \
715 r0drv/darwin/alloc-r0drv-darwin.cpp \
716 r0drv/darwin/memobj-r0drv-darwin.cpp \
717 r0drv/darwin/initterm-r0drv-darwin.cpp \
718 r0drv/darwin/process-r0drv-darwin.cpp \
719 r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
720 r0drv/darwin/semaphore-r0drv-darwin.cpp \
721 r0drv/darwin/spinlock-r0drv-darwin.cpp \
722 r0drv/darwin/thread-r0drv-darwin.cpp \
723 r0drv/darwin/thread2-r0drv-darwin.cpp \
724 r0drv/darwin/time-r0drv-darwin.cpp \
725 thread.cpp \
726 generic/timer-generic.cpp \
727
728RuntimeR0Drv_DEFS.os2 += RT_WITHOUT_NOCRT_WRAPPERS
729RuntimeR0Drv_SOURCES.os2 = \
730 string/memchr.asm \
731 string/memcmp.asm \
732 string/memcpy.asm \
733 string/mempcpy.asm \
734 string/memset.asm \
735 string/strchr.asm \
736 string/strcmp.asm \
737 \
738 string/strcpy.cpp \
739 string/strlen.cpp \
740 string/strncmp.cpp \
741 \
742 os2/RTErrConvertFromOS2.cpp \
743 os2/sys0.asm \
744 thread.cpp \
745 r0drv/memobj-r0drv.cpp \
746 r0drv/os2/alloc-r0drv-os2.cpp \
747 r0drv/os2/assert-r0drv-os2.cpp \
748 r0drv/os2/assertA-r0drv-os2.asm \
749 r0drv/os2/initterm-r0drv-os2.cpp \
750 r0drv/os2/memobj-r0drv-os2.cpp \
751 r0drv/os2/os2imports.imp \
752 r0drv/os2/process-r0drv-os2.cpp \
753 r0drv/os2/semevent-r0drv-os2.cpp \
754 r0drv/os2/semeventmulti-r0drv-os2.cpp \
755 r0drv/os2/semfastmutex-r0drv-os2.cpp \
756 r0drv/os2/spinlock-r0drv-os2.cpp \
757 r0drv/os2/thread-r0drv-os2.cpp \
758 r0drv/os2/thread2-r0drv-os2.cpp \
759 r0drv/os2/time-r0drv-os2.cpp \
760 r0drv/os2/timer-r0drv-os2.cpp \
761 r0drv/os2/timerA-r0drv-os2.asm \
762 r0drv/os2/RTAssertDoBreakpoint-r0drv-os2.asm \
763 r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
764 r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
765 generic/RTLogWriteDebugger-generic.cpp
766
767## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
768
769#
770# RuntimeW32GuestR0 - Win32 guest driver runtime.
771#
772RuntimeW32GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
773RuntimeW32GuestR0_SDKS = W2K3DDKX86 WINPSDKINCS
774RuntimeW32GuestR0_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0
775RuntimeW32GuestR0_SOURCES = \
776 $(filter-out generic/RTLogWriteUser-generic.cpp,$(RuntimeR0Drv_SOURCES)) \
777 $(RuntimeR0Drv_SOURCES.win) \
778 VBox/logbackdoor.cpp
779ifdef VBOX_USE_VCC80
780RuntimeW32GuestR0_SOURCES += \
781 string/memchr.cpp \
782 string/memcmp.cpp \
783 string/memcpy.cpp \
784 string/memset.cpp \
785 string/strlen.cpp
786endif
787
788
789#
790# RuntimeW32NT4GuestR0 - Win32 NT4 guest driver runtime.
791#
792RuntimeW32NT4GuestR0_TEMPLATE = VBOXW32GUESTR0LIB
793RuntimeW32NT4GuestR0_SDKS = $(RuntimeW32GuestR0_SDKS)
794RuntimeW32NT4GuestR0_DEFS = $(RuntimeW32GuestR0_DEFS) IPRT_TARGET_NT4
795RuntimeW32NT4GuestR0_INCS = $(RuntimeW32GuestR0_INCS)
796RuntimeW32NT4GuestR0_SOURCES = $(RuntimeW32GuestR0_SOURCES)
797
798
799#
800# RuntimeLnx32GuestR0 - 32-bit Linux guest driver runtime.
801#
802RuntimeLnx32GuestR0_TEMPLATE = VBOXLNX32GUESTR0
803RuntimeLnx32GuestR0_DEFS = RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS IN_SUP_R0 \
804 MODULE KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\)
805RuntimeLnx32GuestR0_INCS = $(RuntimeR0Drv_INCS.linux) $(RuntimeR0Drv_INCS)
806RuntimeLnx32GuestR0_SOURCES = \
807 $(RuntimeR0Drv_SOURCES) \
808 $(RuntimeR0Drv_SOURCES.linux) \
809 VBox/logbackdoor.cpp
810
811#
812# RuntimeGC - Guest context library.
813#
814RuntimeGC_TEMPLATE = VBOXGC
815RuntimeGC_DEFS = IN_RT_GC RT_WITH_VBOX
816RuntimeGC_SOURCES = \
817 misc/sanity-cpp.cpp \
818 misc/sanity-c.c \
819 table/avlogcphys.cpp \
820 table/avlrogcphys.cpp \
821 table/avlogcptr.cpp \
822 table/avlohcphys.cpp \
823 table/avlrogcptr.cpp \
824 table/avlroogcptr.cpp \
825 table/avloioport.cpp \
826 table/avlroioport.cpp \
827 assert.cpp \
828 generic/RTAssertDoBreakpoint-generic.cpp \
829 log.cpp \
830 logcom.cpp \
831 logformat.cpp \
832 string/strpbrk.cpp \
833 string/strncmp.cpp \
834 strformat.cpp \
835 strformatrt.cpp \
836 strprintf.cpp \
837 VBox/strformat-vbox.cpp \
838 timesup.cpp \
839 string/memchr.cpp \
840 string/memcmp.cpp \
841 string/memcpy.cpp \
842 string/memset.cpp \
843 string/strcpy.cpp \
844 string/strlen.cpp
845
846ifeq ($(VBOX_LDR_FMT32),lx)
847RuntimeGC_SOURCES += os2/sys0.asm
848endif
849
850RuntimeGC_SOURCES.darwin = \
851 math/gcc/adddi3.c \
852 math/gcc/anddi3.c \
853 math/gcc/ashldi3.c \
854 math/gcc/ashrdi3.c \
855 math/gcc/cmpdi2.c \
856 math/gcc/divdi3.c \
857 math/gcc/iordi3.c \
858 math/gcc/lshldi3.c \
859 math/gcc/lshrdi3.c \
860 math/gcc/moddi3.c \
861 math/gcc/muldi3.c \
862 math/gcc/negdi2.c \
863 math/gcc/notdi2.c \
864 math/gcc/qdivrem.c \
865 math/gcc/subdi3.c \
866 math/gcc/ucmpdi2.c \
867 math/gcc/udivdi3.c \
868 math/gcc/umoddi3.c \
869 math/gcc/xordi3.c
870
871
872#
873# Static library for new & delete for the electric fence.
874#
875RuntimeEFCPP_TEMPLATE = $(RuntimeR3_TEMPLATE)
876RuntimeEFCPP_SDKS = $(RuntimeR3_SDKS)
877RuntimeEFCPP_SDKS.$(BUILD_TARGET) = $(RuntimeR3_SDKS.$(BUILD_TARGET))
878RuntimeEFCPP_DEFS = $(RuntimeR3_DEFS)
879RuntimeEFCPP_DEFS.$(BUILD_TARGET) = $(RuntimeR3_DEFS.$(BUILD_TARGET))
880RuntimeEFCPP_INCS = $(RuntimeR3_INCS)
881RuntimeEFCPP_INCS.$(BUILD_TARGET) = $(RuntimeR3_INCS.$(BUILD_TARGET))
882RuntimeEFCPP_SOURCES = r3/alloc-ef-cpp.cpp
883
884
885
886#
887# errmsg.cpp depends on a generated header.
888#
889errmsg.cpp_DEPS = $(PATH_TARGET)/errmsgdata.h
890errmsg.cpp_INCS = $(PATH_TARGET)
891
892win32/errmsgwin.cpp_DEPS = $(PATH_TARGET)/errmsgcomdata.h
893win32/errmsgwin.cpp_INCS = $(PATH_TARGET)
894
895linux/errmsglinux.cpp_DEPS = $(PATH_TARGET)/errmsgxpcomdata.h
896linux/errmsglinux.cpp_INCS = $(PATH_TARGET)
897
898
899# Generate the rules
900include $(PATH_KBUILD)/footer.kmk
901
902
903#
904# Generate the status code data.
905#
906$(PATH_TARGET)/errmsgdata.h: errmsg.sed $(DEPTH)/include/iprt/err.h $(DEPTH)/include/VBox/err.h
907 $(call MSG_L1,Generating $@)
908 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
909 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
910## @todo r=bird: rename this to indicate that it's not only COM errors, but all win32/64 errors.
911$(PATH_TARGET)/errmsgcomdata.h: errmsgcom.sed $(PATH_SDK_WINPSDK_INC)/WinError.h
912 $(call MSG_L1,Generating $@)
913 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
914 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
915$(PATH_TARGET)/errmsgxpcomdata.h: errmsgxpcom.sed $(DEPTH)/src/libs/xpcom18a4/xpcom/base/nsError.h
916 $(call MSG_L1,Generating $@)
917 $(QUIET)$(MKDIR) -p $(PATH_TARGET)
918 $(QUIET)$(SED) -f $< $(filter %.h,$^) > $@
919
920
921#
922# Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
923#
924ldrELFRelocatable.cpp.o: ldrELF.o
925ldrELFRelocatable.cpp.obj: ldrELF.obj
926
927
928#
929# Doxygen documentation.
930#
931DOXYGEN_INPUT_DIRS = \
932 $(PATH_ROOT)/include/iprt \
933 $(PATH_ROOT)/include/iprt/nocrt \
934 $(PATH_ROOT)/include/iprt/nocrt/x86 \
935 $(PATH_ROOT)/include/iprt/nocrt/amd64 \
936 include/internal \
937 string \
938 table \
939 $(foreach dir, . r3 r0drv,\
940 $(dir) \
941 $(dir)/darwin \
942 $(dir)/l4 \
943 $(dir)/linux \
944 $(dir)/nt \
945 $(dir)/os2 \
946 $(dir)/win \
947 $(dir)/win32 \
948 $(dir)/win64 \
949 $(dir)/generic \
950 )
951
952# These must come first in order to make things look nice.
953DOXYGEN_INPUT_FIRST =\
954 $(PATH_ROOT)/include/iprt/cdefs.h \
955 $(PATH_ROOT)/include/iprt/types.h \
956 $(PATH_ROOT)/include/iprt/runtime.h \
957 $(PATH_ROOT)/include/iprt/param.h \
958 $(PATH_ROOT)/include/iprt/assert.h \
959 $(PATH_ROOT)/include/iprt/asm.h \
960
961DOXYGEN_INPUT := \
962 $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(DOXYGEN_INPUT_DIRS)))) ) \
963 $(foreach dir, $(DOXYGEN_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
964DOXYGEN_INPUT := \
965 $(DOXYGEN_INPUT_FIRST) \
966 $(filter-out $(DOXYGEN_INPUT_FIRST), $(DOXYGEN_INPUT))
967
968
969DOXYGEN_OUTPUT = $(PATH_OUT)/docs/iprt
970
971-include $(PATH_TARGET)/Doxyfile.dep
972
973# Generate the Doxyfile
974$(PATH_TARGET)/Doxyfile: Doxyfile \
975 $(comp-vars DOXYGEN_INPUT,DOXYGEN_INPUT_PREV,FORCE) \
976 $(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE) \
977 | $(call DIRDEP, $(PATH_TARGET))
978 $(RM) -f $@ $@.tmp $(PATH_TARGET)/Doxyfile.dep
979 $(CP) -f Doxyfile $@.tmp
980 $(APPEND) $@.tmp
981 $(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(DOXYGEN_OUTPUT)"
982 $(APPEND) $@.tmp "WARN_LOGFILE = $(DOXYGEN_OUTPUT)/errors"
983 $(APPEND) $@.tmp "INCLUDE_PATH = $(PATH_ROOT)/include include . table"
984 $(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
985 $(APPEND) $@.tmp
986 $(APPEND) $@.tmp "INPUT = $(DOXYGEN_INPUT)"
987 $(APPEND) $@.tmp
988 $(MV) -f $@.tmp $@
989 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_OUTPUT_PREV = $(DOXYGEN_OUTPUT)"
990 @$(APPEND) $(PATH_TARGET)/Doxyfile.dep "DOXYGEN_INPUT_PREV = $(DOXYGEN_INPUT)"
991
992# Create the output directory.
993$(call DIRDEP, $(DOXYGEN_OUTPUT)):
994 $(MKDIR) -p $@
995
996# Do the actual job.
997$(PATH_TARGET)/docs.iprt: $(PATH_TARGET)/Doxyfile $(DOXYGEN_INPUT) | $(call DIRDEP, $(DOXYGEN_OUTPUT))
998 $(RM) -f $(wildcard $(DOXYGEN_OUTPUT)/html/*) $(PATH_TARGET)/docs.iprt
999 doxygen $(PATH_TARGET)/Doxyfile
1000 $(APPEND) $(PATH_TARGET)/docs.iprt
1001
1002# alias
1003docs: $(PATH_TARGET)/docs.iprt
1004
1005test:
1006 @echo test-$(comp-vars DOXYGEN_OUTPUT,DOXYGEN_OUTPUT_PREV,FORCE)
1007 @echo $(DOXYGEN_OUTPUT)
1008 @echo $(DOXYGEN_OUTPUT_PREV)
1009
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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