1 | # $Id: Makefile.kmk 93115 2022-01-01 11:31:46Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the IPRT.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2022 Oracle Corporation
|
---|
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 | SUB_DEPTH = ../../..
|
---|
28 | include $(KBUILD_PATH)/subheader.kmk
|
---|
29 |
|
---|
30 | ifdef VBOX_ONLY_ADDITIONS
|
---|
31 | #
|
---|
32 | # Only build the additions, sort out the legacy names first.
|
---|
33 | #
|
---|
34 | LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
|
---|
35 | LIBRARIES.win += RuntimeR3NoCrt
|
---|
36 | LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
|
---|
37 | ifdef VBOX_WITH_ADDITION_DRIVERS
|
---|
38 | LIBRARIES += RuntimeGuestR0
|
---|
39 | #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
|
---|
40 | endif
|
---|
41 | ifndef VBOX_ONLY_ADDITIONS_WITHOUT_RTISOMAKER
|
---|
42 | LIBRARIES += RuntimeBldProg
|
---|
43 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
44 | endif
|
---|
45 |
|
---|
46 | else ifdef VBOX_ONLY_VALIDATIONKIT
|
---|
47 | #
|
---|
48 | # Only build the Validation Kit.
|
---|
49 | #
|
---|
50 | LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared RuntimeR3 RuntimeR0 RuntimeBldProg
|
---|
51 | LIBRARIES.solaris += RuntimeR0Stub
|
---|
52 | LIBRARIES.win += RuntimeR0Stub #RuntimeR3NoCrt
|
---|
53 | LIBRARIES.win.x86 += RuntimeR3VccTricks
|
---|
54 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
55 |
|
---|
56 | else ifdef VBOX_ONLY_DOCS
|
---|
57 | #
|
---|
58 | # Build docs only - need just regular R3 runtime.
|
---|
59 | #
|
---|
60 | LIBRARIES += RuntimeR3 RuntimeBldProg
|
---|
61 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
62 |
|
---|
63 | else ifdef VBOX_ONLY_EXTPACKS_USE_IMPLIBS
|
---|
64 | #
|
---|
65 | # Build extension packs using import libraries as much as possible (VBoxDTrace
|
---|
66 | # needs Ring-0 IPRT, though).
|
---|
67 | #
|
---|
68 | LIBRARIES += RuntimeBldProg RuntimeR0
|
---|
69 | LIBRARIES.solaris += RuntimeR0Stub
|
---|
70 | LIBRARIES.win += RuntimeR0Stub
|
---|
71 | ifdef VBOX_WITH_RAW_MODE
|
---|
72 | LIBRARIES.win += RuntimeRCStub
|
---|
73 | endif
|
---|
74 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
75 |
|
---|
76 | else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_VALIDATIONKIT && !VBOX_ONLY_DOCS
|
---|
77 |
|
---|
78 | #
|
---|
79 | # Normal build.
|
---|
80 | #
|
---|
81 | ifndef VBOX_ONLY_EXTPACKS
|
---|
82 | include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
|
---|
83 | endif
|
---|
84 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
85 |
|
---|
86 | BLDPROGS += uniread
|
---|
87 | LIBRARIES += RuntimeR3 RuntimeBldProg RuntimeR0 RuntimeEFCPP RuntimeR3NoCRTGCC
|
---|
88 | LIBRARIES.solaris += RuntimeR0Stub
|
---|
89 | LIBRARIES.win += RuntimeR0Stub RuntimeR3NoCrt
|
---|
90 | LIBRARIES.win.amd64 += RuntimeR3-x86
|
---|
91 | ifdef VBOX_WITH_RAW_MODE
|
---|
92 | LIBRARIES += RuntimeRC
|
---|
93 | LIBRARIES.win += RuntimeRCStub
|
---|
94 | endif
|
---|
95 | ifdef VBOX_WITH_VBOXDRV
|
---|
96 | LIBRARIES += RuntimeR0Drv
|
---|
97 | endif
|
---|
98 | ifdef VBOX_WITH_ADDITIONS
|
---|
99 | LIBRARIES += RuntimeGuestR3 RuntimeGuestR3Shared
|
---|
100 | LIBRARIES.win.amd64 += RuntimeGuestR3-x86 RuntimeGuestR3Shared-x86
|
---|
101 | ifdef VBOX_WITH_ADDITION_DRIVERS
|
---|
102 | LIBRARIES += RuntimeGuestR0
|
---|
103 | endif
|
---|
104 | #LIBRARIES.os2 += RuntimeGuestR0OS2Warp3
|
---|
105 | endif # VBOX_WITH_ADDITIONS
|
---|
106 | LIBRARIES.win.x86 += RuntimeR3VccTricks
|
---|
107 | DLLS += VBoxRT
|
---|
108 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
109 | DLLS += VBoxRT-x86
|
---|
110 | endif
|
---|
111 | endif
|
---|
112 |
|
---|
113 |
|
---|
114 | # Always build the ntdll import libraries on windows.
|
---|
115 | LIBRARIES.win += RuntimeR3NtDll-x86
|
---|
116 | if1of (amd64, $(KBUILD_TARGET_ARCH) $(KBUILD_HOST_ARCH))
|
---|
117 | LIBRARIES.win += RuntimeR3NtDll-amd64
|
---|
118 | endif
|
---|
119 |
|
---|
120 |
|
---|
121 | # Always build the import library.
|
---|
122 | IMPORT_LIBS += VBoxRTImp
|
---|
123 |
|
---|
124 |
|
---|
125 | # Where the generated stuff goes.
|
---|
126 | IPRT_OUT_DIR := $(PATH_TARGET)/Runtime
|
---|
127 | BLDDIRS += $(IPRT_OUT_DIR)
|
---|
128 | OTHER_CLEAN += \
|
---|
129 | $(IPRT_OUT_DIR)/errmsgdata.h \
|
---|
130 | $(IPRT_OUT_DIR)/errmsgwindata.h \
|
---|
131 | $(IPRT_OUT_DIR)/errmsgwindata-sorted.h \
|
---|
132 | $(IPRT_OUT_DIR)/errmsgwindata-sorted.h.ts \
|
---|
133 | $(IPRT_OUT_DIR)/errmsgvboxcomdata.h \
|
---|
134 | $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts \
|
---|
135 | $(IPRT_OUT_DIR)/odi2name.h \
|
---|
136 | $(IPRT_OUT_DIR)/odi2name.h.ts \
|
---|
137 | $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt \
|
---|
138 | $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt.dep \
|
---|
139 | $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
|
---|
140 |
|
---|
141 |
|
---|
142 | #
|
---|
143 | # Globals
|
---|
144 | #
|
---|
145 | VBOX_PATH_RUNTIME_SRC := $(PATH_SUB_CURRENT)
|
---|
146 |
|
---|
147 |
|
---|
148 | #
|
---|
149 | # Set the defines that buildconfig.cpp needs. Its used by several targets.
|
---|
150 | #
|
---|
151 | common/misc/buildconfig.cpp_DEFS = \
|
---|
152 | IPRT_BLDCFG_SCM_REV=$(VBOX_SVN_REV) \
|
---|
153 | IPRT_BLDCFG_VERSION_MAJOR=$(VBOX_VERSION_MAJOR) \
|
---|
154 | IPRT_BLDCFG_VERSION_MINOR=$(VBOX_VERSION_MINOR) \
|
---|
155 | IPRT_BLDCFG_VERSION_BUILD=$(VBOX_VERSION_BUILD)
|
---|
156 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
157 | common/misc/buildconfig.cpp_DEFS += \
|
---|
158 | IPRT_BLDCFG_VERSION_STRING="$(VBOX_VERSION_STRING)" \
|
---|
159 | IPRT_BLDCFG_TARGET="$(KBUILD_TARGET)" \
|
---|
160 | IPRT_BLDCFG_TARGET_ARCH="$(KBUILD_TARGET_ARCH)" \
|
---|
161 | IPRT_BLDCFG_TYPE="$(KBUILD_TYPE)"
|
---|
162 | else
|
---|
163 | common/misc/buildconfig.cpp_DEFS += \
|
---|
164 | IPRT_BLDCFG_VERSION_STRING=\"$(VBOX_VERSION_STRING)\" \
|
---|
165 | IPRT_BLDCFG_TARGET=\"$(KBUILD_TARGET)\" \
|
---|
166 | IPRT_BLDCFG_TARGET_ARCH=\"$(KBUILD_TARGET_ARCH)\" \
|
---|
167 | IPRT_BLDCFG_TYPE=\"$(KBUILD_TYPE)\"
|
---|
168 | endif
|
---|
169 |
|
---|
170 | #
|
---|
171 | # OID to C table conversion program.
|
---|
172 | #
|
---|
173 | BLDPROGS += oiddb2c
|
---|
174 | oiddb2c_TEMPLATE = VBoxBldProg
|
---|
175 | oiddb2c_SOURCES = common/asn1/oiddb2c.cpp
|
---|
176 |
|
---|
177 | common/asn1/asn1-dump.cpp_DEPS = $(IPRT_OUT_DIR)/oiddb.h
|
---|
178 | common/asn1/asn1-dump.cpp_INCS = $(IPRT_OUT_DIR)
|
---|
179 | OTHER_CLEAN += $(IPRT_OUT_DIR)/oiddb.h $(IPRT_OUT_DIR)/oiddb.h.ts
|
---|
180 |
|
---|
181 | $(IPRT_OUT_DIR)/oiddb.h.ts +| $(IPRT_OUT_DIR)/oiddb.h: \
|
---|
182 | $(VBOX_PATH_RUNTIME_SRC)/common/asn1/oiddb.cfg \
|
---|
183 | $(VBOX_EXTRA_OID_CFG_FILES) \
|
---|
184 | $$(oiddb2c_1_TARGET) \
|
---|
185 | | $$(dir $$@)
|
---|
186 | $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
|
---|
187 | $(QUIET)$(oiddb2c_1_TARGET) "$@" $(filter %.cfg,$^)
|
---|
188 | $(QUIET)$(CP) --changed -fv "$@" "$(IPRT_OUT_DIR)/oiddb.h"
|
---|
189 |
|
---|
190 |
|
---|
191 | #
|
---|
192 | # Unicode Specification reader used to regenerate unidata-*.cpp.
|
---|
193 | #
|
---|
194 | uniread_TEMPLATE = VBoxBldProg
|
---|
195 | uniread_SOURCES = common/string/uniread.cpp
|
---|
196 | uniread_INCS = include
|
---|
197 |
|
---|
198 | #
|
---|
199 | # Win64 assembly sources.
|
---|
200 | #
|
---|
201 | RuntimeWin64ASM_SOURCES = \
|
---|
202 | win/amd64/ASMAtomicBitClear.asm \
|
---|
203 | win/amd64/ASMAtomicBitTestAndToggle.asm \
|
---|
204 | win/amd64/ASMAtomicBitToggle.asm \
|
---|
205 | win/amd64/ASMAtomicReadU64.asm \
|
---|
206 | win/amd64/ASMAtomicXchgU8.asm \
|
---|
207 | win/amd64/ASMGetCS.asm \
|
---|
208 | win/amd64/ASMGetDS.asm \
|
---|
209 | win/amd64/ASMGetES.asm \
|
---|
210 | common/asm/ASMGetFlags.asm \
|
---|
211 | win/amd64/ASMGetFS.asm \
|
---|
212 | win/amd64/ASMGetGS.asm \
|
---|
213 | win/amd64/ASMGetSS.asm \
|
---|
214 | win/amd64/ASMProbeReadByte.asm \
|
---|
215 | common/asm/ASMSetFlags.asm \
|
---|
216 | common/asm/ASMAddFlags.asm \
|
---|
217 | win/amd64/ASMGetDR0.asm \
|
---|
218 | win/amd64/ASMGetDR1.asm \
|
---|
219 | win/amd64/ASMGetDR2.asm \
|
---|
220 | win/amd64/ASMGetDR3.asm \
|
---|
221 | win/amd64/ASMGetDR6.asm \
|
---|
222 | win/amd64/ASMGetDR7.asm \
|
---|
223 | common/asm/ASMAtomicCmpXchgU8.asm \
|
---|
224 | common/asm/ASMAtomicCmpXchgU16.asm \
|
---|
225 | common/asm/ASMAtomicXchgU16.asm \
|
---|
226 | common/asm/ASMBitFirstClear.asm \
|
---|
227 | common/asm/ASMBitFirstSet.asm \
|
---|
228 | common/asm/ASMBitNextClear.asm \
|
---|
229 | common/asm/ASMBitNextSet.asm \
|
---|
230 | common/asm/ASMMultU32ByU32DivByU32.asm \
|
---|
231 | common/asm/ASMMultU64ByU32DivByU32.asm \
|
---|
232 | common/asm/ASMCpuId_Idx_ECX.asm \
|
---|
233 | common/asm/ASMNopPause.asm \
|
---|
234 | common/asm/ASMGetIDTR.asm \
|
---|
235 | common/asm/ASMGetIdtrLimit.asm \
|
---|
236 | common/asm/ASMSetIDTR.asm \
|
---|
237 | common/asm/ASMGetGDTR.asm \
|
---|
238 | common/asm/ASMSetGDTR.asm \
|
---|
239 | common/asm/ASMGetLDTR.asm \
|
---|
240 | common/asm/ASMGetSegAttr.asm \
|
---|
241 | common/asm/ASMGetFSBase.asm \
|
---|
242 | common/asm/ASMSetFSBase.asm \
|
---|
243 | common/asm/ASMGetGSBase.asm \
|
---|
244 | common/asm/ASMSetGSBase.asm \
|
---|
245 | common/asm/ASMGetTR.asm \
|
---|
246 |
|
---|
247 | #
|
---|
248 | # Win32 assembly sources.
|
---|
249 | #
|
---|
250 | RuntimeWin32ASM_SOURCES = \
|
---|
251 | common/asm/ASMAtomicCmpXchgU8.asm \
|
---|
252 | common/asm/ASMAtomicCmpXchgU16.asm \
|
---|
253 | common/asm/ASMAtomicXchgU16.asm \
|
---|
254 | common/asm/ASMMultU32ByU32DivByU32.asm \
|
---|
255 | common/asm/ASMMultU64ByU32DivByU32.asm \
|
---|
256 | common/asm/ASMCpuId_Idx_ECX.asm \
|
---|
257 | common/asm/ASMGetSegAttr.asm
|
---|
258 |
|
---|
259 | #
|
---|
260 | # NoCRT sources (minus math stuff).
|
---|
261 | #
|
---|
262 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
263 | RuntimeNoCrt_SOURCES = \
|
---|
264 | common/misc/setjmp.asm \
|
---|
265 | common/string/bzero.asm \
|
---|
266 | common/string/memchr.asm \
|
---|
267 | common/string/memcmp.asm \
|
---|
268 | common/string/memcpy.asm \
|
---|
269 | common/string/mempcpy.asm \
|
---|
270 | common/string/memmove.asm \
|
---|
271 | common/string/memset.asm \
|
---|
272 | common/string/strchr.asm \
|
---|
273 | common/string/strcpy.asm \
|
---|
274 | common/string/strncpy.asm \
|
---|
275 | common/string/strcmp.asm \
|
---|
276 | common/string/strlen.asm
|
---|
277 | endif
|
---|
278 |
|
---|
279 |
|
---|
280 | #
|
---|
281 | # RuntimeR3 - Static Runtime for Ring-3 executables.
|
---|
282 | #
|
---|
283 | RuntimeR3_TEMPLATE = VBoxR3Static
|
---|
284 | RuntimeR3_SDKS = VBOX_LIBXML2
|
---|
285 | RuntimeR3_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK)
|
---|
286 | RuntimeR3_DEFS = \
|
---|
287 | IN_RT_R3 \
|
---|
288 | LDR_WITH_NATIVE \
|
---|
289 | LDR_WITH_ELF32 \
|
---|
290 | LDR_WITH_LX \
|
---|
291 | LDR_WITH_MACHO \
|
---|
292 | LDR_WITH_PE \
|
---|
293 | RT_WITH_VBOX \
|
---|
294 | RT_NO_GIP \
|
---|
295 | RT_WITHOUT_NOCRT_WRAPPERS \
|
---|
296 | NOFILEID
|
---|
297 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
298 | RuntimeR3_DEFS += \
|
---|
299 | IN_SUP_R3
|
---|
300 | endif
|
---|
301 | #RuntimeR3_DEFS += RTMEM_WRAP_TO_EF_APIS
|
---|
302 | ifdef IPRT_WITH_LZJB
|
---|
303 | RuntimeR3_DEFS += RTZIP_USE_LZJB
|
---|
304 | endif
|
---|
305 | ifdef IPRT_WITH_LZO
|
---|
306 | RuntimeR3_DEFS += RTZIP_USE_LZO
|
---|
307 | endif
|
---|
308 | ifn1of ($(KBUILD_TARGET), win)
|
---|
309 | RuntimeR3_DEFS += RT_WITH_ICONV_CACHE
|
---|
310 | endif
|
---|
311 | ifdef IPRT_WITH_FUTEX_BASED_SEMS
|
---|
312 | RuntimeR3_DEFS.linux += IPRT_WITH_FUTEX_BASED_SEMS
|
---|
313 | endif
|
---|
314 | ifdef IPRT_HTTP_WITH_WEBDAV
|
---|
315 | RuntimeR3_DEFS += IPRT_HTTP_WITH_WEBDAV
|
---|
316 | endif
|
---|
317 | RuntimeR3_INCS = \
|
---|
318 | include \
|
---|
319 | $(SDK_VBOX_ZLIB_INCS) \
|
---|
320 | $(SDK_VBOX_LZF_INCS)
|
---|
321 |
|
---|
322 | # RuntimeR3_INCS.solaris = \
|
---|
323 | # /usr/include
|
---|
324 |
|
---|
325 | RuntimeR3_SOURCES = \
|
---|
326 | common/alloc/alloc.cpp \
|
---|
327 | common/alloc/heapsimple.cpp \
|
---|
328 | common/alloc/heapoffset.cpp \
|
---|
329 | common/alloc/memcache.cpp \
|
---|
330 | common/alloc/memtracker.cpp \
|
---|
331 | common/asn1/asn1-basics.cpp \
|
---|
332 | common/asn1/asn1-cursor.cpp \
|
---|
333 | common/asn1/asn1-default-allocator.cpp \
|
---|
334 | common/asn1/asn1-efence-allocator.cpp \
|
---|
335 | common/asn1/asn1-safer-allocator.cpp \
|
---|
336 | common/asn1/asn1-dump.cpp \
|
---|
337 | common/asn1/asn1-encode.cpp \
|
---|
338 | common/asn1/asn1-ut-bitstring.cpp \
|
---|
339 | common/asn1/asn1-ut-bitstring-decode.cpp \
|
---|
340 | common/asn1/asn1-ut-boolean.cpp \
|
---|
341 | common/asn1/asn1-ut-boolean-decode.cpp \
|
---|
342 | common/asn1/asn1-ut-core.cpp \
|
---|
343 | common/asn1/asn1-ut-core-decode.cpp \
|
---|
344 | common/asn1/asn1-ut-dyntype.cpp \
|
---|
345 | common/asn1/asn1-ut-dyntype-decode.cpp \
|
---|
346 | common/asn1/asn1-ut-integer.cpp \
|
---|
347 | common/asn1/asn1-ut-integer-decode.cpp \
|
---|
348 | common/asn1/asn1-ut-null.cpp \
|
---|
349 | common/asn1/asn1-ut-null-decode.cpp \
|
---|
350 | common/asn1/asn1-ut-objid.cpp \
|
---|
351 | common/asn1/asn1-ut-objid-decode.cpp \
|
---|
352 | common/asn1/asn1-ut-octetstring.cpp \
|
---|
353 | common/asn1/asn1-ut-octetstring-decode.cpp \
|
---|
354 | common/asn1/asn1-ut-string.cpp \
|
---|
355 | common/asn1/asn1-ut-string-decode.cpp \
|
---|
356 | common/asn1/asn1-ut-time.cpp \
|
---|
357 | common/asn1/asn1-ut-time-decode.cpp \
|
---|
358 | common/checksum/adler32.cpp \
|
---|
359 | common/checksum/crc32.cpp \
|
---|
360 | common/checksum/crc32c.cpp \
|
---|
361 | common/checksum/crc64.cpp \
|
---|
362 | common/checksum/crc16ccitt.cpp \
|
---|
363 | common/checksum/alt-md2.cpp \
|
---|
364 | common/checksum/alt-md4.cpp \
|
---|
365 | common/checksum/alt-md5.cpp \
|
---|
366 | common/checksum/alt-sha1.cpp \
|
---|
367 | common/checksum/alt-sha256.cpp \
|
---|
368 | common/checksum/alt-sha512.cpp \
|
---|
369 | common/checksum/alt-sha3.cpp \
|
---|
370 | common/checksum/md2str.cpp \
|
---|
371 | common/checksum/md4str.cpp \
|
---|
372 | common/checksum/md5str.cpp \
|
---|
373 | common/checksum/ipv4.cpp \
|
---|
374 | common/checksum/ipv6.cpp \
|
---|
375 | common/checksum/manifest.cpp \
|
---|
376 | common/checksum/manifest2.cpp \
|
---|
377 | common/checksum/manifest3.cpp \
|
---|
378 | common/checksum/manifest-file.cpp \
|
---|
379 | common/checksum/RTSha1Digest.cpp \
|
---|
380 | common/checksum/RTSha256Digest.cpp \
|
---|
381 | common/checksum/sha1str.cpp \
|
---|
382 | common/checksum/sha224str.cpp \
|
---|
383 | common/checksum/sha256str.cpp \
|
---|
384 | common/checksum/sha384str.cpp \
|
---|
385 | common/checksum/sha512str.cpp \
|
---|
386 | common/checksum/sha512t224str.cpp \
|
---|
387 | common/checksum/sha512t256str.cpp \
|
---|
388 | common/crypto/cipher-openssl.cpp \
|
---|
389 | common/crypto/digest-core.cpp \
|
---|
390 | common/crypto/digest-builtin.cpp \
|
---|
391 | common/crypto/digest-vfs.cpp \
|
---|
392 | common/crypto/iprt-openssl.cpp \
|
---|
393 | common/crypto/key.cpp \
|
---|
394 | common/crypto/key-file.cpp \
|
---|
395 | common/crypto/key-openssl.cpp \
|
---|
396 | common/crypto/key-create-rsa-openssl.cpp \
|
---|
397 | common/crypto/rc4-openssl.cpp \
|
---|
398 | common/crypto/rsa-asn1-decoder.cpp \
|
---|
399 | common/crypto/rsa-core.cpp \
|
---|
400 | common/crypto/rsa-init.cpp \
|
---|
401 | common/crypto/rsa-sanity.cpp \
|
---|
402 | common/crypto/pemfile-read.cpp \
|
---|
403 | common/crypto/pemfile-write.cpp \
|
---|
404 | common/crypto/pkcs7-asn1-decoder.cpp \
|
---|
405 | common/crypto/pkcs7-core.cpp \
|
---|
406 | common/crypto/pkcs7-file.cpp \
|
---|
407 | common/crypto/pkcs7-init.cpp \
|
---|
408 | common/crypto/pkcs7-sanity.cpp \
|
---|
409 | common/crypto/pkcs7-sign.cpp \
|
---|
410 | common/crypto/pkcs7-verify.cpp \
|
---|
411 | common/crypto/pkix-sign.cpp \
|
---|
412 | common/crypto/pkix-signature-builtin.cpp \
|
---|
413 | common/crypto/pkix-signature-core.cpp \
|
---|
414 | common/crypto/pkix-signature-rsa.cpp \
|
---|
415 | common/crypto/pkix-util.cpp \
|
---|
416 | common/crypto/pkix-verify.cpp \
|
---|
417 | common/crypto/spc-asn1-decoder.cpp \
|
---|
418 | common/crypto/spc-core.cpp \
|
---|
419 | common/crypto/spc-init.cpp \
|
---|
420 | common/crypto/spc-sanity.cpp \
|
---|
421 | common/crypto/ssl-openssl.cpp \
|
---|
422 | common/crypto/x509-asn1-decoder.cpp \
|
---|
423 | common/crypto/x509-certpaths.cpp \
|
---|
424 | common/crypto/x509-core.cpp \
|
---|
425 | common/crypto/x509-file.cpp \
|
---|
426 | common/crypto/x509-init.cpp \
|
---|
427 | common/crypto/x509-sanity.cpp \
|
---|
428 | common/crypto/x509-verify.cpp \
|
---|
429 | common/crypto/taf-asn1-decoder.cpp \
|
---|
430 | common/crypto/taf-core.cpp \
|
---|
431 | common/crypto/taf-init.cpp \
|
---|
432 | common/crypto/taf-sanity.cpp \
|
---|
433 | common/crypto/tsp-asn1-decoder.cpp \
|
---|
434 | common/crypto/tsp-core.cpp \
|
---|
435 | common/crypto/tsp-init.cpp \
|
---|
436 | common/crypto/tsp-sanity.cpp \
|
---|
437 | common/crypto/store.cpp \
|
---|
438 | common/crypto/store-inmem.cpp \
|
---|
439 | common/crypto/store-cert-add-basic.cpp \
|
---|
440 | common/crypto/RTCrPkcs5Pbkdf2Hmac-openssl.cpp \
|
---|
441 | common/crypto/RTCrRandBytes-openssl.cpp \
|
---|
442 | common/crypto/RTCrStoreCertAddFromJavaKeyStore.cpp \
|
---|
443 | common/crypto/RTCrStoreCertAddWantedFromFishingExpedition.cpp \
|
---|
444 | common/crypto/RTCrStoreCertExportAsPem.cpp \
|
---|
445 | common/crypto/RTCrStoreCreateSnapshotOfUserAndSystemTrustedCAsAndCerts.cpp \
|
---|
446 | common/dbg/dbg.cpp \
|
---|
447 | common/dbg/dbgas.cpp \
|
---|
448 | common/dbg/dbgcfg.cpp \
|
---|
449 | common/dbg/dbgmod.cpp \
|
---|
450 | common/dbg/dbgmodldr.cpp \
|
---|
451 | common/dbg/dbgmodcontainer.cpp \
|
---|
452 | common/dbg/dbgmoddeferred.cpp \
|
---|
453 | common/dbg/dbgmodexports.cpp \
|
---|
454 | common/dbg/dbgmodcodeview.cpp \
|
---|
455 | common/dbg/dbgmoddwarf.cpp \
|
---|
456 | common/dbg/dbgmodmapsym.cpp \
|
---|
457 | common/dbg/dbgmodnm.cpp \
|
---|
458 | common/dvm/dvm.cpp \
|
---|
459 | common/dvm/dvmbsdlabel.cpp \
|
---|
460 | common/dvm/dvmgpt.cpp \
|
---|
461 | common/dvm/dvmmbr.cpp \
|
---|
462 | common/dvm/dvmvfs.cpp \
|
---|
463 | common/efi/efiguid.cpp \
|
---|
464 | common/efi/efitime.cpp \
|
---|
465 | common/efi/efisignaturedb.cpp \
|
---|
466 | common/efi/efivarstorevfs.cpp \
|
---|
467 | common/err/errinfo.cpp \
|
---|
468 | common/err/errinfolog.cpp \
|
---|
469 | common/err/errinfo-alloc.cpp \
|
---|
470 | common/err/errmsg.cpp \
|
---|
471 | common/err/RTErrConvertFromErrno.cpp \
|
---|
472 | common/err/RTErrConvertToErrno.cpp \
|
---|
473 | common/fs/extvfs.cpp \
|
---|
474 | common/fs/fatvfs.cpp \
|
---|
475 | common/fs/isovfs.cpp \
|
---|
476 | common/fs/isomaker.cpp \
|
---|
477 | common/fs/isomakercmd.cpp \
|
---|
478 | common/fs/isomakerimport.cpp \
|
---|
479 | common/fs/ntfsvfs.cpp \
|
---|
480 | common/fs/RTFsCmdLs.cpp \
|
---|
481 | common/ioqueue/ioqueuebase.cpp \
|
---|
482 | common/ioqueue/ioqueue-stdfile-provider.cpp \
|
---|
483 | common/ldr/ldr.cpp \
|
---|
484 | common/ldr/ldrELF.cpp \
|
---|
485 | common/ldr/ldrEx.cpp \
|
---|
486 | common/ldr/ldrFile.cpp \
|
---|
487 | common/ldr/ldrVfsFile.cpp \
|
---|
488 | common/ldr/ldrLX.cpp \
|
---|
489 | common/ldr/ldrMachO.cpp \
|
---|
490 | common/ldr/ldrMemory.cpp \
|
---|
491 | common/ldr/ldrNative.cpp \
|
---|
492 | common/ldr/ldrPE.cpp \
|
---|
493 | common/log/log.cpp \
|
---|
494 | common/log/logellipsis.cpp \
|
---|
495 | common/log/logrel.cpp \
|
---|
496 | common/log/logrelellipsis.cpp \
|
---|
497 | common/log/logcom.cpp \
|
---|
498 | common/log/logformat.cpp \
|
---|
499 | common/log/tracebuf.cpp \
|
---|
500 | common/log/tracedefault.cpp \
|
---|
501 | common/log/tracelogreader.cpp \
|
---|
502 | common/log/tracelogwriter.cpp \
|
---|
503 | common/log/RTLogCreateEx.cpp \
|
---|
504 | common/math/bignum.cpp \
|
---|
505 | common/misc/RTAssertMsg1Weak.cpp \
|
---|
506 | common/misc/RTAssertMsg2.cpp \
|
---|
507 | common/misc/RTAssertMsg2Add.cpp \
|
---|
508 | common/misc/RTAssertMsg2AddWeak.cpp \
|
---|
509 | common/misc/RTAssertMsg2AddWeakV.cpp \
|
---|
510 | common/misc/RTAssertMsg2Weak.cpp \
|
---|
511 | common/misc/RTAssertMsg2WeakV.cpp \
|
---|
512 | common/misc/RTFileModeToFlags.cpp \
|
---|
513 | common/misc/RTFileOpenF.cpp \
|
---|
514 | common/misc/RTFileOpenV.cpp \
|
---|
515 | common/misc/RTMemWipeThoroughly.cpp \
|
---|
516 | common/misc/RTSystemFirmwareTypeName.cpp \
|
---|
517 | common/misc/assert.cpp \
|
---|
518 | common/misc/buildconfig.cpp \
|
---|
519 | common/misc/cidr.cpp \
|
---|
520 | common/misc/getopt.cpp \
|
---|
521 | common/misc/getoptargv.cpp \
|
---|
522 | common/misc/handle.cpp \
|
---|
523 | common/misc/handletable.cpp \
|
---|
524 | common/misc/handletablectx.cpp \
|
---|
525 | common/misc/handletablesimple.cpp \
|
---|
526 | common/misc/inifile.cpp \
|
---|
527 | common/misc/json.cpp \
|
---|
528 | common/misc/lockvalidator.cpp \
|
---|
529 | common/misc/message.cpp \
|
---|
530 | common/misc/messagerefentry.cpp \
|
---|
531 | common/misc/once.cpp \
|
---|
532 | common/misc/req.cpp \
|
---|
533 | common/misc/reqpool.cpp \
|
---|
534 | common/misc/reqqueue.cpp \
|
---|
535 | common/misc/sanity-c.c \
|
---|
536 | common/misc/sanity-cpp.cpp \
|
---|
537 | common/misc/semspingpong.cpp \
|
---|
538 | common/misc/sg.cpp \
|
---|
539 | common/misc/circbuf.cpp \
|
---|
540 | common/misc/thread.cpp \
|
---|
541 | common/misc/term.cpp \
|
---|
542 | common/misc/uri.cpp \
|
---|
543 | common/net/netaddrstr2.cpp \
|
---|
544 | common/net/macstr.cpp \
|
---|
545 | common/path/rtPathRootSpecLen.cpp \
|
---|
546 | common/path/rtPathVolumeSpecLen.cpp \
|
---|
547 | common/path/RTPathAbsDup.cpp \
|
---|
548 | common/path/RTPathAbsEx.cpp \
|
---|
549 | common/path/RTPathAbsExDup.cpp \
|
---|
550 | common/path/RTPathAppend.cpp \
|
---|
551 | common/path/RTPathAppendEx.cpp \
|
---|
552 | common/path/RTPathCalcRelative.cpp \
|
---|
553 | common/path/RTPathChangeToDosSlashes.cpp \
|
---|
554 | common/path/RTPathChangeToUnixSlashes.cpp \
|
---|
555 | common/path/RTPathCopyComponents.cpp \
|
---|
556 | common/path/RTPathCountComponents.cpp \
|
---|
557 | common/path/RTPathEnsureTrailingSeparator.cpp \
|
---|
558 | common/path/RTPathExt.cpp \
|
---|
559 | common/path/RTPathFilename.cpp \
|
---|
560 | common/path/RTPathFilenameUtf16.cpp \
|
---|
561 | common/path/RTPathFindCommon.cpp \
|
---|
562 | common/path/RTPathGlob.cpp \
|
---|
563 | common/path/RTPathHasExt.cpp \
|
---|
564 | common/path/RTPathHasPath.cpp \
|
---|
565 | common/path/RTPathJoin.cpp \
|
---|
566 | common/path/RTPathJoinA.cpp \
|
---|
567 | common/path/RTPathJoinEx.cpp \
|
---|
568 | common/path/RTPathParentLength.cpp \
|
---|
569 | common/path/RTPathParse.cpp \
|
---|
570 | common/path/RTPathParsedReassemble.cpp \
|
---|
571 | common/path/RTPathParseSimple.cpp \
|
---|
572 | common/path/RTPathPurgeFilename.cpp \
|
---|
573 | common/path/RTPathRealDup.cpp \
|
---|
574 | common/path/RTPathRmCmd.cpp \
|
---|
575 | common/path/RTPathSkipRootSpec.cpp \
|
---|
576 | common/path/RTPathSplit.cpp \
|
---|
577 | common/path/RTPathSplitA.cpp \
|
---|
578 | common/path/RTPathSplitReassemble.cpp \
|
---|
579 | common/path/RTPathStartsWithRoot.cpp \
|
---|
580 | common/path/RTPathStripExt.cpp \
|
---|
581 | common/path/RTPathStripFilename.cpp \
|
---|
582 | common/path/RTPathStripTrailingSlash.cpp \
|
---|
583 | common/path/RTPathTraverseList.cpp \
|
---|
584 | common/path/comparepaths.cpp \
|
---|
585 | common/rand/rand.cpp \
|
---|
586 | common/rand/randadv.cpp \
|
---|
587 | common/rand/randparkmiller.cpp \
|
---|
588 | common/sort/RTSortIsSorted.cpp \
|
---|
589 | common/sort/RTSortApvIsSorted.cpp \
|
---|
590 | common/sort/shellsort.cpp \
|
---|
591 | common/string/RTStrCat.cpp \
|
---|
592 | common/string/RTStrCatEx.cpp \
|
---|
593 | common/string/RTStrCatP.cpp \
|
---|
594 | common/string/RTStrCatPEx.cpp \
|
---|
595 | common/string/RTStrCmp.cpp \
|
---|
596 | common/string/RTStrCopy.cpp \
|
---|
597 | common/string/RTStrCopyEx.cpp \
|
---|
598 | common/string/RTStrCopyP.cpp \
|
---|
599 | common/string/RTStrCopyPEx.cpp \
|
---|
600 | common/string/RTStrNCmp.cpp \
|
---|
601 | common/string/RTStrNLen.cpp \
|
---|
602 | common/string/RTStrNLenEx.cpp \
|
---|
603 | common/string/RTStrPrintHexBytes.cpp \
|
---|
604 | common/string/RTStrStartsWith.cpp \
|
---|
605 | common/string/RTStrIStartsWith.cpp \
|
---|
606 | common/string/RTStrICmpAscii.cpp \
|
---|
607 | common/string/RTStrNICmpAscii.cpp \
|
---|
608 | common/string/RTStrSplit.cpp \
|
---|
609 | common/string/RTStrStr.cpp \
|
---|
610 | common/string/RTUtf16Copy.cpp \
|
---|
611 | common/string/RTUtf16CopyAscii.cpp \
|
---|
612 | common/string/RTUtf16CopyEx.cpp \
|
---|
613 | common/string/RTUtf16Cat.cpp \
|
---|
614 | common/string/RTUtf16CatAscii.cpp \
|
---|
615 | common/string/RTUtf16Chr.cpp \
|
---|
616 | common/string/RTUtf16CmpAscii.cpp \
|
---|
617 | common/string/RTUtf16ICmpAscii.cpp \
|
---|
618 | common/string/RTUtf16End.cpp \
|
---|
619 | common/string/RTUtf16NCmp.cpp \
|
---|
620 | common/string/RTUtf16NCmpAscii.cpp \
|
---|
621 | common/string/RTUtf16NCmpUtf8.cpp \
|
---|
622 | common/string/RTUtf16NICmpAscii.cpp \
|
---|
623 | common/string/RTUtf16NLen.cpp \
|
---|
624 | common/string/RTUtf16NLenEx.cpp \
|
---|
625 | common/string/RTUtf16PrintHexBytes.cpp \
|
---|
626 | common/string/base64.cpp \
|
---|
627 | common/string/base64-utf16.cpp \
|
---|
628 | common/string/simplepattern.cpp \
|
---|
629 | common/string/straprintf.cpp \
|
---|
630 | common/string/strformat.cpp \
|
---|
631 | common/string/RTStrFormat.cpp \
|
---|
632 | common/string/strformatnum.cpp \
|
---|
633 | common/string/strformatrt.cpp \
|
---|
634 | common/string/strformattype.cpp \
|
---|
635 | common/string/strhash1.cpp \
|
---|
636 | common/string/stringalloc.cpp \
|
---|
637 | common/string/strprintf.cpp \
|
---|
638 | common/string/strprintf-ellipsis.cpp \
|
---|
639 | common/string/strprintf2.cpp \
|
---|
640 | common/string/strprintf2-ellipsis.cpp \
|
---|
641 | common/string/strcache.cpp \
|
---|
642 | common/string/strspace.cpp \
|
---|
643 | common/string/strstrip.cpp \
|
---|
644 | common/string/strtonum.cpp \
|
---|
645 | common/string/strversion.cpp \
|
---|
646 | common/string/uni.cpp \
|
---|
647 | common/string/unidata-flags.cpp \
|
---|
648 | common/string/unidata-lower.cpp \
|
---|
649 | common/string/unidata-upper.cpp \
|
---|
650 | common/string/utf-16.cpp \
|
---|
651 | common/string/utf-16-case.cpp \
|
---|
652 | common/string/utf-16-latin-1.cpp \
|
---|
653 | common/string/utf-16-printf.cpp \
|
---|
654 | common/string/utf-8.cpp \
|
---|
655 | common/string/utf-8-case.cpp \
|
---|
656 | common/string/utf-8-case2.cpp \
|
---|
657 | common/string/ministring.cpp \
|
---|
658 | common/table/avlgcptr.cpp \
|
---|
659 | common/table/avlhcphys.cpp \
|
---|
660 | common/table/avlgcphys.cpp \
|
---|
661 | common/table/avllu32.cpp \
|
---|
662 | common/table/avlou32.cpp \
|
---|
663 | common/table/avlogcphys.cpp \
|
---|
664 | common/table/avlogcptr.cpp \
|
---|
665 | common/table/avlohcphys.cpp \
|
---|
666 | common/table/avloioport.cpp \
|
---|
667 | common/table/avlpv.cpp \
|
---|
668 | common/table/avlrgcptr.cpp \
|
---|
669 | common/table/avlrogcphys.cpp \
|
---|
670 | common/table/avlrogcptr.cpp \
|
---|
671 | common/table/avlroioport.cpp \
|
---|
672 | common/table/avlroogcptr.cpp \
|
---|
673 | common/table/avlrpv.cpp \
|
---|
674 | common/table/avlruintptr.cpp \
|
---|
675 | common/table/avlrfoff.cpp \
|
---|
676 | common/table/avlru64.cpp \
|
---|
677 | common/table/avlu32.cpp \
|
---|
678 | common/table/avlu64.cpp \
|
---|
679 | common/table/avluintptr.cpp \
|
---|
680 | common/table/avlul.cpp \
|
---|
681 | common/table/table.cpp \
|
---|
682 | common/time/time.cpp \
|
---|
683 | common/time/timeprog.cpp \
|
---|
684 | common/time/timesup.cpp \
|
---|
685 | common/time/timezoneinfo.cpp \
|
---|
686 | common/vfs/vfsbase.cpp \
|
---|
687 | common/vfs/vfschain.cpp \
|
---|
688 | common/vfs/vfsfss2dir.cpp \
|
---|
689 | common/vfs/vfsiosmisc.cpp \
|
---|
690 | common/vfs/vfsmemory.cpp \
|
---|
691 | common/vfs/vfsmisc.cpp \
|
---|
692 | common/vfs/vfsmount.cpp \
|
---|
693 | common/vfs/vfsmsg.cpp \
|
---|
694 | common/vfs/vfsprogress.cpp \
|
---|
695 | common/vfs/vfsreadahead.cpp \
|
---|
696 | common/vfs/vfsstddir.cpp \
|
---|
697 | common/vfs/vfsstdfile.cpp \
|
---|
698 | common/vfs/vfsstdpipe.cpp \
|
---|
699 | common/vfs/vfsprintf.cpp \
|
---|
700 | common/zip/cpiovfs.cpp \
|
---|
701 | common/zip/tar.cpp \
|
---|
702 | common/zip/tarcmd.cpp \
|
---|
703 | common/zip/tarvfs.cpp \
|
---|
704 | common/zip/tarvfswriter.cpp \
|
---|
705 | common/zip/gzipvfs.cpp \
|
---|
706 | common/zip/gzipcmd.cpp \
|
---|
707 | common/zip/pkzip.cpp \
|
---|
708 | common/zip/pkzipvfs.cpp \
|
---|
709 | common/zip/unzipcmd.cpp \
|
---|
710 | common/zip/zip.cpp \
|
---|
711 | generic/createtemp-generic.cpp \
|
---|
712 | generic/critsect-generic.cpp \
|
---|
713 | generic/critsectrw-generic.cpp \
|
---|
714 | generic/env-generic.cpp \
|
---|
715 | generic/http.cpp \
|
---|
716 | generic/RTDirCreateUniqueNumbered-generic.cpp \
|
---|
717 | generic/RTEnvDupEx-generic.cpp \
|
---|
718 | generic/RTFileCopy-generic.cpp \
|
---|
719 | generic/RTFileCopyAttributes-generic.cpp \
|
---|
720 | generic/RTFileCopyEx-generic.cpp \
|
---|
721 | generic/RTFileCopyByHandlesEx-generic.cpp \
|
---|
722 | generic/RTFileCopyPart-generic.cpp \
|
---|
723 | generic/RTFileQuerySize-generic.cpp \
|
---|
724 | generic/RTFileReadAll-generic.cpp \
|
---|
725 | generic/RTFileReadAllEx-generic.cpp \
|
---|
726 | generic/RTFileReadAllByHandle-generic.cpp \
|
---|
727 | generic/RTFileReadAllByHandleEx-generic.cpp \
|
---|
728 | generic/RTFileReadAllFree-generic.cpp \
|
---|
729 | generic/RTLogWriteStdErr-generic.cpp \
|
---|
730 | generic/RTLogWriteStdOut-generic.cpp \
|
---|
731 | generic/RTLogWriteUser-generic.cpp \
|
---|
732 | generic/RTPathGetCurrentDrive-generic.cpp \
|
---|
733 | generic/RTPathIsSame-generic.cpp \
|
---|
734 | generic/RTTimerLRCreate-generic.cpp \
|
---|
735 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
736 | generic/mempool-generic.cpp \
|
---|
737 | generic/semfastmutex-generic.cpp \
|
---|
738 | generic/semxroads-generic.cpp \
|
---|
739 | generic/spinlock-generic.cpp \
|
---|
740 | generic/timerlr-generic.cpp \
|
---|
741 | r3/alloc-ef.cpp \
|
---|
742 | r3/alloc.cpp \
|
---|
743 | r3/allocex.cpp \
|
---|
744 | r3/dir.cpp \
|
---|
745 | r3/dir2.cpp \
|
---|
746 | r3/fileio.cpp \
|
---|
747 | r3/fs.cpp \
|
---|
748 | r3/ftp-server.cpp \
|
---|
749 | r3/http-server.cpp \
|
---|
750 | r3/init.cpp \
|
---|
751 | r3/memsafer-r3.cpp \
|
---|
752 | r3/path.cpp \
|
---|
753 | r3/RTPathTemp.cpp \
|
---|
754 | r3/poll.cpp \
|
---|
755 | r3/process.cpp \
|
---|
756 | r3/socket.cpp \
|
---|
757 | r3/stream.cpp \
|
---|
758 | r3/test.cpp \
|
---|
759 | r3/testi.cpp \
|
---|
760 | r3/tcp.cpp \
|
---|
761 | r3/udp.cpp \
|
---|
762 | r3/generic/semspinmutex-r3-generic.cpp \
|
---|
763 | r3/xml.cpp \
|
---|
764 | common/zip/xarvfs.cpp
|
---|
765 |
|
---|
766 |
|
---|
767 | #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
|
---|
768 | # RuntimeR3_SOURCES += common/time/timesupA.asm
|
---|
769 | #else
|
---|
770 | RuntimeR3_SOURCES += common/time/timesupref.cpp
|
---|
771 | #endif
|
---|
772 |
|
---|
773 | RuntimeR3_SOURCES.x86 += \
|
---|
774 | generic/RTMpGetDescription-generic.cpp \
|
---|
775 | common/misc/zero.asm \
|
---|
776 | common/misc/RTSystemIsInsideVM-amd64-x86.cpp \
|
---|
777 | common/string/RTStrMemFind32.asm
|
---|
778 | RuntimeR3_SOURCES.amd64 += \
|
---|
779 | generic/RTMpGetDescription-generic.cpp \
|
---|
780 | common/misc/zero.asm \
|
---|
781 | common/misc/RTSystemIsInsideVM-amd64-x86.cpp \
|
---|
782 | common/string/RTStrMemFind32.asm
|
---|
783 | RuntimeR3_SOURCES.arm32 := \
|
---|
784 | common/asm/ASMBitFirstClear-generic.cpp \
|
---|
785 | common/asm/ASMBitNextClear-generic.cpp \
|
---|
786 | common/asm/ASMBitFirstSet-generic.cpp \
|
---|
787 | common/asm/ASMBitNextSet-generic.cpp \
|
---|
788 | common/asm/ASMMemZeroPage-generic.cpp \
|
---|
789 | common/asm/ASMMemZero32-generic.cpp \
|
---|
790 | common/asm/ASMMemFill32-generic.cpp \
|
---|
791 | common/asm/ASMMemFirstMismatchingU8-generic.cpp \
|
---|
792 | common/asm/ASMMemFirstNonZero-generic.cpp \
|
---|
793 | common/misc/zero-alt.S
|
---|
794 | RuntimeR3_SOURCES.arm64 := \
|
---|
795 | common/asm/ASMBitFirstClear-generic.cpp \
|
---|
796 | common/asm/ASMBitNextClear-generic.cpp \
|
---|
797 | common/asm/ASMBitFirstSet-generic.cpp \
|
---|
798 | common/asm/ASMBitNextSet-generic.cpp \
|
---|
799 | common/asm/ASMMemZeroPage-generic.cpp \
|
---|
800 | common/asm/ASMMemZero32-generic.cpp \
|
---|
801 | common/asm/ASMMemFill32-generic.cpp \
|
---|
802 | common/asm/ASMMemFirstMismatchingU8-generic.cpp \
|
---|
803 | common/asm/ASMMemFirstNonZero-generic.cpp \
|
---|
804 | common/misc/zero-alt.S
|
---|
805 | RuntimeR3_SOURCES.sparc32 += \
|
---|
806 | generic/RTMpGetDescription-generic-stub.cpp \
|
---|
807 | generic/RTSystemIsInsideVM-generic.cpp \
|
---|
808 | common/asm/ASMBitFirstClear-generic.cpp \
|
---|
809 | common/asm/ASMBitNextClear-generic.cpp \
|
---|
810 | common/asm/ASMBitFirstSet-generic.cpp \
|
---|
811 | common/asm/ASMBitNextSet-generic.cpp \
|
---|
812 | common/asm/ASMMemZeroPage-generic.cpp \
|
---|
813 | common/asm/ASMMemZero32-generic.cpp \
|
---|
814 | common/asm/ASMMemFill32-generic.cpp \
|
---|
815 | common/asm/ASMMemFirstMismatchingU8-generic.cpp \
|
---|
816 | common/asm/ASMMemFirstNonZero-generic.cpp \
|
---|
817 | common/asm/asm-fake.cpp \
|
---|
818 | common/misc/zero-alt.S \
|
---|
819 | common/string/RTStrMemFind32.cpp
|
---|
820 | RuntimeR3_SOURCES.sparc64 += \
|
---|
821 | generic/RTMpGetDescription-generic-stub.cpp \
|
---|
822 | generic/RTSystemIsInsideVM-generic.cpp \
|
---|
823 | common/asm/ASMBitFirstClear-generic.cpp \
|
---|
824 | common/asm/ASMBitNextClear-generic.cpp \
|
---|
825 | common/asm/ASMBitFirstSet-generic.cpp \
|
---|
826 | common/asm/ASMBitNextSet-generic.cpp \
|
---|
827 | common/asm/ASMMemZeroPage-generic.cpp \
|
---|
828 | common/asm/ASMMemZero32-generic.cpp \
|
---|
829 | common/asm/ASMMemFill32-generic.cpp \
|
---|
830 | common/asm/ASMMemFirstMismatchingU8-generic.cpp \
|
---|
831 | common/asm/ASMMemFirstNonZero-generic.cpp \
|
---|
832 | common/asm/asm-fake.cpp \
|
---|
833 | common/misc/zero-alt.S \
|
---|
834 | common/string/RTStrMemFind32.cpp
|
---|
835 |
|
---|
836 | ifdef IPRT_WITH_LZJB
|
---|
837 | RuntimeR3_SOURCES += common/misc/lzjb.c
|
---|
838 | endif
|
---|
839 |
|
---|
840 | # AMD64 / x86 assembly code.
|
---|
841 | RuntimeR3_SOURCES.x86 += \
|
---|
842 | common/asm/ASMCpuIdExSlow.asm \
|
---|
843 | common/asm/ASMAtomicUoAndU64.asm \
|
---|
844 | common/asm/ASMAtomicUoAndU32.asm \
|
---|
845 | common/asm/ASMAtomicUoDecU32.asm \
|
---|
846 | common/asm/ASMAtomicUoIncU32.asm \
|
---|
847 | common/asm/ASMAtomicUoOrU64.asm \
|
---|
848 | common/asm/ASMAtomicUoOrU32.asm \
|
---|
849 | common/asm/ASMAtomicUoXorU32.asm \
|
---|
850 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
851 | common/asm/ASMRdMsrEx.asm \
|
---|
852 | common/asm/ASMWrMsrEx.asm \
|
---|
853 | common/asm/ASMGetXcr0.asm \
|
---|
854 | common/asm/ASMSetXcr0.asm \
|
---|
855 | common/asm/ASMXSave.asm \
|
---|
856 | common/asm/ASMXRstor.asm \
|
---|
857 | common/asm/ASMFxSave.asm \
|
---|
858 | common/asm/ASMFxRstor.asm \
|
---|
859 | common/asm/ASMSerializeInstruction-cpuid.asm \
|
---|
860 | common/asm/ASMSerializeInstruction-iret.asm \
|
---|
861 | common/asm/ASMSerializeInstruction-rdtscp.asm \
|
---|
862 | common/dbg/dbgstackdumpself.cpp \
|
---|
863 | common/dbg/dbgstackdumpself-amd64-x86.asm \
|
---|
864 | common/math/bignum-amd64-x86.asm \
|
---|
865 | common/string/RTStrEnd.asm
|
---|
866 | RuntimeR3_SOURCES.amd64 += \
|
---|
867 | common/asm/ASMCpuIdExSlow.asm \
|
---|
868 | common/asm/ASMAtomicUoAndU64.asm \
|
---|
869 | common/asm/ASMAtomicUoAndU32.asm \
|
---|
870 | common/asm/ASMAtomicUoDecU32.asm \
|
---|
871 | common/asm/ASMAtomicUoIncU32.asm \
|
---|
872 | common/asm/ASMAtomicUoOrU64.asm \
|
---|
873 | common/asm/ASMAtomicUoOrU32.asm \
|
---|
874 | common/asm/ASMAtomicUoXorU32.asm \
|
---|
875 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
876 | common/asm/ASMRdMsrEx.asm \
|
---|
877 | common/asm/ASMWrMsrEx.asm \
|
---|
878 | common/asm/ASMGetXcr0.asm \
|
---|
879 | common/asm/ASMSetXcr0.asm \
|
---|
880 | common/asm/ASMXSave.asm \
|
---|
881 | common/asm/ASMXRstor.asm \
|
---|
882 | common/asm/ASMFxSave.asm \
|
---|
883 | common/asm/ASMFxRstor.asm \
|
---|
884 | common/asm/ASMSerializeInstruction-cpuid.asm \
|
---|
885 | common/asm/ASMSerializeInstruction-iret.asm \
|
---|
886 | common/asm/ASMSerializeInstruction-rdtscp.asm \
|
---|
887 | common/dbg/dbgstackdumpself.cpp \
|
---|
888 | common/dbg/dbgstackdumpself-amd64-x86.asm \
|
---|
889 | common/math/bignum-amd64-x86.asm \
|
---|
890 | common/math/RTUInt128MulByU64.asm \
|
---|
891 | common/string/RTStrEnd.asm
|
---|
892 |
|
---|
893 | # Some versions of GCC might require this.
|
---|
894 | RuntimeR3_SOURCES.x86 += \
|
---|
895 | common/asm/ASMAtomicXchgU64.asm \
|
---|
896 | common/asm/ASMAtomicCmpXchgU64.asm \
|
---|
897 | common/asm/ASMAtomicCmpXchgExU64.asm \
|
---|
898 | common/asm/ASMAtomicReadU64.asm \
|
---|
899 | common/asm/ASMAtomicUoReadU64.asm
|
---|
900 |
|
---|
901 | # Some non-assembly for non-AMD64 / non-x86 targets:
|
---|
902 | RuntimeR3_SOURCES.arm32 += \
|
---|
903 | common/string/RTStrEnd.cpp
|
---|
904 | RuntimeR3_SOURCES.arm64 += \
|
---|
905 | common/string/RTStrEnd.cpp
|
---|
906 | RuntimeR3_SOURCES.sparc32 += \
|
---|
907 | common/string/RTStrEnd.cpp
|
---|
908 | RuntimeR3_SOURCES.sparc64 += \
|
---|
909 | common/string/RTStrEnd.cpp
|
---|
910 |
|
---|
911 | # VBox specific stuff.
|
---|
912 | RuntimeR3_SOURCES += \
|
---|
913 | VBox/RTAssertShouldPanic-vbox.cpp \
|
---|
914 | VBox/log-vbox.cpp
|
---|
915 | ifneq ($(KBUILD_TARGET),win)
|
---|
916 | RuntimeR3_SOURCES += \
|
---|
917 | common/err/errmsgxpcom.cpp
|
---|
918 | endif
|
---|
919 | if1of ($(KBUILD_TARGET),freebsd linux netbsd openbsd solaris)
|
---|
920 | RuntimeR3_SOURCES += \
|
---|
921 | $(if $(VBOX_WITH_DBUS),VBox/dbus.cpp,)
|
---|
922 | endif
|
---|
923 |
|
---|
924 | VBOX_WITH_NT_DIRENUM = 1
|
---|
925 | RuntimeR3_SOURCES.win = \
|
---|
926 | common/dbg/dbgmoddbghelp.cpp \
|
---|
927 | common/ioqueue/ioqueue-aiofile-provider.cpp \
|
---|
928 | generic/cdrom-generic.cpp \
|
---|
929 | generic/RTDirExists-generic.cpp \
|
---|
930 | generic/RTDirSetMode-generic.cpp \
|
---|
931 | generic/RTDirSetTimes-generic.cpp \
|
---|
932 | generic/fileio-sg-generic.cpp \
|
---|
933 | generic/fileio-sg-at-generic.cpp \
|
---|
934 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
935 | generic/RTFileExists-generic.cpp \
|
---|
936 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
937 | generic/RTMpGetCurFrequency-generic.cpp \
|
---|
938 | generic/RTMpGetMaxFrequency-generic.cpp \
|
---|
939 | generic/RTRandAdvCreateSystemFaster-generic.cpp \
|
---|
940 | generic/RTRandAdvCreateSystemTruer-generic.cpp \
|
---|
941 | generic/RTSemEventWait-2-ex-generic.cpp \
|
---|
942 | generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
|
---|
943 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
944 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
945 | generic/RTSemMutexRequest-generic.cpp \
|
---|
946 | generic/RTSemMutexRequestDebug-generic.cpp \
|
---|
947 | generic/RTTimerCreate-generic.cpp \
|
---|
948 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
949 | generic/mppresent-generic-online.cpp \
|
---|
950 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
951 | generic/uuid-generic.cpp \
|
---|
952 | generic/RTProcDaemonize-generic.cpp \
|
---|
953 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
954 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
955 | nt/RTErrConvertFromNtStatus.cpp \
|
---|
956 | nt/RTNtPathExpand8dot3Path.cpp \
|
---|
957 | nt/RTNtPathExpand8dot3PathA.cpp \
|
---|
958 | nt/RTNtPathFindPossible8dot3Name.cpp \
|
---|
959 | nt/fileioutils-nt.cpp \
|
---|
960 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
961 | r3/nt/dirrel-r3-nt.cpp \
|
---|
962 | r3/nt/fs-nt.cpp \
|
---|
963 | r3/nt/pathint-nt.cpp \
|
---|
964 | r3/nt/RTFileQueryFsSizes-nt.cpp \
|
---|
965 | r3/nt/RTFileSetMode-r3-nt.cpp \
|
---|
966 | r3/nt/RTPathQueryInfo-nt.cpp \
|
---|
967 | r3/nt/RTPathSetMode-r3-nt.cpp \
|
---|
968 | r3/nt/RTProcQueryParent-r3-nt.cpp \
|
---|
969 | nt/semevent-nt.cpp \
|
---|
970 | nt/RTSemEventGetResolution-nt.cpp \
|
---|
971 | nt/semeventmulti-nt.cpp \
|
---|
972 | nt/RTSemEventMultiGetResolution-nt.cpp \
|
---|
973 | r3/win/env-win.cpp \
|
---|
974 | r3/win/RTCrStoreCreateSnapshotById-win.cpp \
|
---|
975 | r3/win/RTFileQuerySectorSize-win.cpp \
|
---|
976 | r3/win/RTHandleGetStandard-win.cpp \
|
---|
977 | r3/win/RTLocaleQueryNormalizedBaseLocaleName-win.cpp \
|
---|
978 | r3/win/RTLocaleQueryUserCountryCode-win.cpp \
|
---|
979 | r3/win/RTSystemQueryOSInfo-win.cpp \
|
---|
980 | r3/win/RTSystemShutdown-win.cpp \
|
---|
981 | r3/win/RTSystemQueryDmiString-win.cpp \
|
---|
982 | r3/win/RTSystemFirmware-win.cpp \
|
---|
983 | r3/win/RTSystemQueryTotalRam-win.cpp \
|
---|
984 | r3/win/RTTimeZoneGetCurrent-win.cpp \
|
---|
985 | r3/win/alloc-win.cpp \
|
---|
986 | r3/win/allocex-win.cpp \
|
---|
987 | r3/win/dir-win.cpp \
|
---|
988 | $(if-expr defined(VBOX_WITH_NT_DIRENUM),r3/nt/direnum-r3-nt.cpp,r3/win/direnum-win.cpp generic/RTDirQueryInfo-generic.cpp) \
|
---|
989 | r3/win/errvars-win.cpp \
|
---|
990 | r3/win/fileaio-win.cpp \
|
---|
991 | r3/win/fileio-win.cpp \
|
---|
992 | r3/win/init-win.cpp \
|
---|
993 | r3/win/krnlmod-win.cpp \
|
---|
994 | r3/win/ldrNative-win.cpp \
|
---|
995 | r3/win/localipc-win.cpp \
|
---|
996 | r3/win/mp-win.cpp \
|
---|
997 | r3/win/path-win.cpp \
|
---|
998 | r3/win/pathint-win.cpp \
|
---|
999 | r3/win/pipe-win.cpp \
|
---|
1000 | r3/win/process-win.cpp \
|
---|
1001 | r3/win/RTLogWriteDebugger-win.cpp \
|
---|
1002 | r3/win/rtProcInitExePath-win.cpp \
|
---|
1003 | r3/win/sched-win.cpp \
|
---|
1004 | r3/win/semmutex-win.cpp \
|
---|
1005 | r3/win/serialport-win.cpp \
|
---|
1006 | r3/win/shmem-win.cpp \
|
---|
1007 | r3/win/symlink-win.cpp \
|
---|
1008 | r3/win/system-get-nt-xxx-win.cpp \
|
---|
1009 | r3/win/thread-win.cpp \
|
---|
1010 | r3/win/thread2-win.cpp \
|
---|
1011 | $(if-expr 1,r3/win/time-win.cpp,r3/nt/time-nt.cpp) \
|
---|
1012 | r3/win/time2-win.cpp \
|
---|
1013 | r3/win/timer-win.cpp \
|
---|
1014 | r3/win/tls-win.cpp \
|
---|
1015 | r3/win/tpm-win.cpp \
|
---|
1016 | r3/win/utf16locale-win.cpp \
|
---|
1017 | r3/win/utf8-win.cpp \
|
---|
1018 | r3/win/RTUuidCreate-win.cpp \
|
---|
1019 | win/errmsgwin.cpp \
|
---|
1020 | win/RTErrConvertFromWin32.cpp \
|
---|
1021 | common/string/mempcpy.asm
|
---|
1022 |
|
---|
1023 | RuntimeR3_SOURCES.win.amd64 := \
|
---|
1024 | $(RuntimeWin64ASM_SOURCES) \
|
---|
1025 | common/string/memrchr.asm
|
---|
1026 | RuntimeR3_SOURCES.win.x86 := \
|
---|
1027 | $(RuntimeWin32ASM_SOURCES) \
|
---|
1028 | common/string/memrchr.asm
|
---|
1029 |
|
---|
1030 | RuntimeR3_SOURCES.linux = \
|
---|
1031 | common/ioqueue/ioqueue-aiofile-provider.cpp \
|
---|
1032 | generic/cdrom-generic.cpp \
|
---|
1033 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
1034 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1035 | generic/RTDirSetMode-generic.cpp \
|
---|
1036 | generic/RTDirSetTimes-generic.cpp \
|
---|
1037 | generic/RTFileMove-generic.cpp \
|
---|
1038 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1039 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1040 | generic/RTProcDaemonize-generic.cpp \
|
---|
1041 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1042 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1043 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1044 | generic/RTTimerCreate-generic.cpp \
|
---|
1045 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1046 | generic/RTUuidCreate-generic.cpp \
|
---|
1047 | generic/mppresent-generic.cpp \
|
---|
1048 | generic/utf16locale-generic.cpp \
|
---|
1049 | generic/uuid-generic.cpp \
|
---|
1050 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1051 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1052 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1053 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1054 | r3/posix/allocex-r3-posix.cpp \
|
---|
1055 | r3/linux/RTThreadGetNativeState-linux.cpp \
|
---|
1056 | r3/linux/fileaio-linux.cpp \
|
---|
1057 | r3/linux/ioqueue-iouringfile-provider.cpp \
|
---|
1058 | r3/linux/krnlmod-linux.cpp \
|
---|
1059 | r3/linux/mp-linux.cpp \
|
---|
1060 | r3/linux/rtProcInitExePath-linux.cpp \
|
---|
1061 | r3/linux/sched-linux.cpp \
|
---|
1062 | r3/linux/sysfs.cpp \
|
---|
1063 | r3/linux/time-linux.cpp \
|
---|
1064 | r3/linux/thread-affinity-linux.cpp \
|
---|
1065 | r3/linux/tpm-linux.cpp \
|
---|
1066 | r3/linux/RTFileCopyPartEx-linux.cpp \
|
---|
1067 | r3/linux/RTFileQuerySectorSize-linux.cpp \
|
---|
1068 | r3/linux/RTFileSetAllocationSize-linux.cpp \
|
---|
1069 | r3/linux/RTProcIsRunningByName-linux.cpp \
|
---|
1070 | r3/linux/RTSystemFirmware-linux.cpp \
|
---|
1071 | r3/linux/RTSystemQueryDmiString-linux.cpp \
|
---|
1072 | r3/linux/RTSystemShutdown-linux.cpp \
|
---|
1073 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1074 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1075 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1076 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1077 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1078 | r3/linux/systemmem-linux.cpp \
|
---|
1079 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1080 | r3/posix/RTTimeSet-posix.cpp \
|
---|
1081 | r3/posix/RTTimeZoneGetCurrent-posix.cpp \
|
---|
1082 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1083 | r3/posix/dir-posix.cpp \
|
---|
1084 | r3/posix/env-posix.cpp \
|
---|
1085 | r3/posix/errvars-posix.cpp \
|
---|
1086 | r3/posix/fileio-posix.cpp \
|
---|
1087 | r3/posix/fileio2-posix.cpp \
|
---|
1088 | r3/posix/fileio-at-posix.cpp \
|
---|
1089 | r3/posix/fileio-sg-posix.cpp \
|
---|
1090 | r3/posix/fileio-sg-at-posix.cpp \
|
---|
1091 | r3/posix/filelock-posix.cpp \
|
---|
1092 | r3/posix/fs-posix.cpp \
|
---|
1093 | r3/posix/fs2-posix.cpp \
|
---|
1094 | r3/posix/fs3-posix.cpp \
|
---|
1095 | r3/posix/ldrNative-posix.cpp \
|
---|
1096 | r3/posix/localipc-posix.cpp \
|
---|
1097 | r3/posix/path-posix.cpp \
|
---|
1098 | r3/posix/path2-posix.cpp \
|
---|
1099 | r3/posix/pathhost-posix.cpp \
|
---|
1100 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
1101 | r3/posix/pipe-posix.cpp \
|
---|
1102 | r3/posix/process-posix.cpp \
|
---|
1103 | r3/posix/process-creation-posix.cpp \
|
---|
1104 | r3/posix/rand-posix.cpp \
|
---|
1105 | r3/posix/semrw-posix.cpp \
|
---|
1106 | r3/posix/serialport-posix.cpp \
|
---|
1107 | r3/posix/shmem-posix.cpp \
|
---|
1108 | r3/posix/symlink-posix.cpp \
|
---|
1109 | r3/posix/thread-posix.cpp \
|
---|
1110 | r3/posix/thread2-posix.cpp \
|
---|
1111 | r3/posix/timelocal-posix.cpp \
|
---|
1112 | r3/posix/timer-posix.cpp \
|
---|
1113 | r3/posix/tls-posix.cpp \
|
---|
1114 | r3/posix/utf8-posix.cpp
|
---|
1115 | ifdef IPRT_WITH_FUTEX_BASED_SEMS
|
---|
1116 | RuntimeR3_SOURCES.linux += \
|
---|
1117 | r3/linux/semevent-linux.cpp \
|
---|
1118 | r3/linux/semeventmulti-linux.cpp \
|
---|
1119 | r3/linux/semmutex-linux.cpp
|
---|
1120 | else
|
---|
1121 | RuntimeR3_SOURCES.linux.x86 += \
|
---|
1122 | r3/posix/semevent-posix.cpp \
|
---|
1123 | r3/posix/semeventmulti-posix.cpp \
|
---|
1124 | r3/posix/semmutex-posix.cpp
|
---|
1125 | RuntimeR3_SOURCES.linux.amd64 += \
|
---|
1126 | r3/linux/semevent-linux.cpp \
|
---|
1127 | r3/linux/semeventmulti-linux.cpp
|
---|
1128 | ifdef RT_NEW_LINUX_MUTEX_CODE
|
---|
1129 | RuntimeR3_SOURCES.linux.amd64 += \
|
---|
1130 | r3/linux/semmutex-linux.cpp
|
---|
1131 | else
|
---|
1132 | RuntimeR3_SOURCES.linux.amd64 += \
|
---|
1133 | r3/posix/semmutex-posix.cpp
|
---|
1134 | endif
|
---|
1135 | endif
|
---|
1136 |
|
---|
1137 | RuntimeR3_SOURCES.os2 = \
|
---|
1138 | common/string/memrchr.asm \
|
---|
1139 | generic/cdrom-generic.cpp \
|
---|
1140 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
1141 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1142 | generic/RTDirSetMode-generic.cpp \
|
---|
1143 | generic/RTDirSetTimes-generic.cpp \
|
---|
1144 | generic/fileio-at-generic.cpp \
|
---|
1145 | generic/fileio-sg-generic.cpp \
|
---|
1146 | generic/fileio-sg-at-generic.cpp \
|
---|
1147 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1148 | generic/RTFileMove-generic.cpp \
|
---|
1149 | generic/RTFileQuerySectorSize-generic.cpp \
|
---|
1150 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
1151 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1152 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1153 | generic/RTProcDaemonize-generic.cpp \
|
---|
1154 | generic/RTRandAdvCreateSystemFaster-generic.cpp \
|
---|
1155 | generic/RTRandAdvCreateSystemTruer-generic.cpp \
|
---|
1156 | generic/RTSystemQueryDmiString-generic.cpp \
|
---|
1157 | generic/RTSystemFirmware-generic.cpp \
|
---|
1158 | generic/RTSystemShutdown-generic.cpp \
|
---|
1159 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1160 | generic/RTTimerCreate-generic.cpp \
|
---|
1161 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1162 | generic/RTUuidCreate-generic.cpp \
|
---|
1163 | generic/mppresent-generic.cpp \
|
---|
1164 | generic/RTSemEventWait-generic.cpp \
|
---|
1165 | generic/RTSemEventMultiWait-generic.cpp \
|
---|
1166 | generic/RTSemMutexRequest-generic.cpp \
|
---|
1167 | generic/RTSemMutexRequestDebug-generic.cpp \
|
---|
1168 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
1169 | generic/timer-generic.cpp \
|
---|
1170 | generic/utf16locale-generic.cpp \
|
---|
1171 | generic/uuid-generic.cpp \
|
---|
1172 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
1173 | generic/RTMpGetOnlineCoreCount-generic.cpp \
|
---|
1174 | generic/RTMpGetCurFrequency-generic.cpp \
|
---|
1175 | generic/RTMpGetMaxFrequency-generic.cpp \
|
---|
1176 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1177 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1178 | os2/RTErrConvertFromOS2.cpp \
|
---|
1179 | r3/generic/allocex-r3-generic.cpp \
|
---|
1180 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1181 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1182 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1183 | r3/generic/RTTimeZoneGetCurrent-generic.cpp \
|
---|
1184 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1185 | r3/os2/RTTimeSet-os2.cpp \
|
---|
1186 | r3/os2/filelock-os2.cpp \
|
---|
1187 | r3/os2/mp-os2.cpp \
|
---|
1188 | r3/os2/pipe-os2.cpp \
|
---|
1189 | r3/os2/rtProcInitExePath-os2.cpp \
|
---|
1190 | r3/os2/sched-os2.cpp \
|
---|
1191 | r3/os2/sems-os2.cpp \
|
---|
1192 | r3/os2/serialport-os2.cpp \
|
---|
1193 | r3/os2/systemmem-os2.cpp \
|
---|
1194 | r3/os2/thread-os2.cpp \
|
---|
1195 | r3/os2/time-os2.cpp \
|
---|
1196 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1197 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1198 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1199 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1200 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1201 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1202 | r3/posix/dir-posix.cpp \
|
---|
1203 | r3/posix/env-posix.cpp \
|
---|
1204 | r3/posix/errvars-posix.cpp \
|
---|
1205 | r3/posix/fileio-posix.cpp \
|
---|
1206 | r3/posix/fileio2-posix.cpp \
|
---|
1207 | r3/posix/fs-posix.cpp \
|
---|
1208 | r3/posix/fs2-posix.cpp \
|
---|
1209 | r3/posix/fs3-posix.cpp \
|
---|
1210 | r3/posix/ldrNative-posix.cpp \
|
---|
1211 | r3/posix/localipc-posix.cpp \
|
---|
1212 | r3/posix/path-posix.cpp \
|
---|
1213 | r3/posix/path2-posix.cpp \
|
---|
1214 | r3/posix/pathhost-posix.cpp \
|
---|
1215 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1216 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
1217 | r3/posix/process-posix.cpp \
|
---|
1218 | r3/posix/process-creation-posix.cpp \
|
---|
1219 | r3/posix/symlink-posix.cpp \
|
---|
1220 | r3/posix/timelocal-posix.cpp \
|
---|
1221 | r3/posix/utf8-posix.cpp
|
---|
1222 |
|
---|
1223 | RuntimeR3_SOURCES.darwin = \
|
---|
1224 | common/ioqueue/ioqueue-aiofile-provider.cpp \
|
---|
1225 | darwin/RTErrConvertFromDarwin.cpp \
|
---|
1226 | darwin/RTErrConvertFromDarwinCOM.cpp \
|
---|
1227 | darwin/RTErrConvertFromDarwinIO.cpp \
|
---|
1228 | darwin/RTErrConvertFromDarwinKern.cpp \
|
---|
1229 | generic/cdrom-generic.cpp \
|
---|
1230 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1231 | generic/RTDirSetMode-generic.cpp \
|
---|
1232 | generic/RTDirSetTimes-generic.cpp \
|
---|
1233 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1234 | generic/RTFileMove-generic.cpp \
|
---|
1235 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
1236 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1237 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1238 | generic/RTProcDaemonize-generic.cpp \
|
---|
1239 | generic/RTThreadGetAffinity-stub-generic.cpp \
|
---|
1240 | generic/RTThreadSetAffinity-stub-generic.cpp \
|
---|
1241 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1242 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1243 | generic/RTTimerCreate-generic.cpp \
|
---|
1244 | generic/RTUuidCreate-generic.cpp \
|
---|
1245 | generic/mppresent-generic.cpp \
|
---|
1246 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1247 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1248 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
1249 | generic/RTSystemShutdown-generic.cpp \
|
---|
1250 | generic/timer-generic.cpp \
|
---|
1251 | generic/utf16locale-generic.cpp \
|
---|
1252 | generic/uuid-generic.cpp\
|
---|
1253 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1254 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1255 | generic/RTSystemFirmware-generic.cpp \
|
---|
1256 | r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp \
|
---|
1257 | r3/darwin/filelock-darwin.cpp \
|
---|
1258 | r3/darwin/RTFileQuerySectorSize-darwin.cpp \
|
---|
1259 | r3/darwin/krnlmod-darwin.cpp \
|
---|
1260 | r3/darwin/mp-darwin.cpp \
|
---|
1261 | r3/darwin/pathhost-darwin.cpp \
|
---|
1262 | r3/darwin/rtProcInitExePath-darwin.cpp \
|
---|
1263 | r3/darwin/RTSystemQueryDmiString-darwin.cpp \
|
---|
1264 | r3/darwin/sched-darwin.cpp \
|
---|
1265 | r3/darwin/systemmem-darwin.cpp \
|
---|
1266 | r3/darwin/time-darwin.cpp \
|
---|
1267 | r3/darwin/RTPathUserDocuments-darwin.cpp \
|
---|
1268 | r3/generic/allocex-r3-generic.cpp \
|
---|
1269 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1270 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1271 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1272 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1273 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1274 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1275 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1276 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1277 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1278 | r3/posix/RTTimeSet-posix.cpp \
|
---|
1279 | r3/posix/RTTimeZoneGetCurrent-posix.cpp \
|
---|
1280 | r3/posix/dir-posix.cpp \
|
---|
1281 | r3/posix/env-posix.cpp \
|
---|
1282 | r3/posix/errvars-posix.cpp \
|
---|
1283 | r3/posix/fileaio-posix.cpp \
|
---|
1284 | r3/posix/fileio-posix.cpp \
|
---|
1285 | r3/posix/fileio2-posix.cpp \
|
---|
1286 | r3/posix/fileio-at-posix.cpp \
|
---|
1287 | r3/posix/fileio-sg-posix.cpp \
|
---|
1288 | r3/posix/fileio-sg-at-posix.cpp \
|
---|
1289 | r3/posix/fs-posix.cpp \
|
---|
1290 | r3/posix/fs2-posix.cpp \
|
---|
1291 | r3/posix/fs3-posix.cpp \
|
---|
1292 | r3/posix/ldrNative-posix.cpp \
|
---|
1293 | r3/posix/localipc-posix.cpp \
|
---|
1294 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1295 | r3/posix/path-posix.cpp \
|
---|
1296 | r3/posix/path2-posix.cpp \
|
---|
1297 | r3/posix/pipe-posix.cpp \
|
---|
1298 | r3/posix/process-posix.cpp \
|
---|
1299 | r3/posix/process-creation-posix.cpp \
|
---|
1300 | r3/posix/rand-posix.cpp \
|
---|
1301 | r3/posix/semevent-posix.cpp \
|
---|
1302 | r3/posix/semeventmulti-posix.cpp \
|
---|
1303 | r3/posix/semmutex-posix.cpp \
|
---|
1304 | r3/posix/serialport-posix.cpp \
|
---|
1305 | r3/posix/symlink-posix.cpp \
|
---|
1306 | r3/posix/shmem-posix.cpp \
|
---|
1307 | r3/posix/thread-posix.cpp \
|
---|
1308 | r3/posix/thread2-posix.cpp \
|
---|
1309 | r3/posix/timelocal-posix.cpp \
|
---|
1310 | r3/posix/tls-posix.cpp \
|
---|
1311 | r3/posix/utf8-posix.cpp
|
---|
1312 | RuntimeR3_SOURCES.darwin.x86 += common/string/memrchr.asm
|
---|
1313 | RuntimeR3_SOURCES.darwin.amd64 += common/string/memrchr.asm
|
---|
1314 | RuntimeR3_SOURCES.darwin.arm32 += \
|
---|
1315 | common/string/memrchr.cpp \
|
---|
1316 | r3/darwin/RTMpGetDescription-generic.cpp
|
---|
1317 | RuntimeR3_SOURCES.darwin.arm64 += \
|
---|
1318 | common/string/memrchr.cpp \
|
---|
1319 | r3/darwin/RTMpGetDescription-generic.cpp
|
---|
1320 |
|
---|
1321 | ## @todo Make BSD sched, implement RTMP*.
|
---|
1322 | RuntimeR3_SOURCES.freebsd = \
|
---|
1323 | common/ioqueue/ioqueue-aiofile-provider.cpp \
|
---|
1324 | generic/cdrom-generic.cpp \
|
---|
1325 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
1326 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1327 | generic/RTDirSetMode-generic.cpp \
|
---|
1328 | generic/RTDirSetTimes-generic.cpp \
|
---|
1329 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1330 | generic/RTFileMove-generic.cpp \
|
---|
1331 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
1332 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1333 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1334 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1335 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1336 | generic/RTSystemQueryDmiString-generic.cpp \
|
---|
1337 | generic/RTSystemFirmware-generic.cpp \
|
---|
1338 | generic/RTSystemShutdown-generic.cpp \
|
---|
1339 | generic/RTThreadGetAffinity-stub-generic.cpp \
|
---|
1340 | generic/RTThreadSetAffinity-stub-generic.cpp \
|
---|
1341 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1342 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1343 | generic/RTTimerCreate-generic.cpp \
|
---|
1344 | generic/RTUuidCreate-generic.cpp \
|
---|
1345 | generic/mppresent-generic.cpp \
|
---|
1346 | generic/sched-generic.cpp \
|
---|
1347 | generic/utf16locale-generic.cpp \
|
---|
1348 | generic/uuid-generic.cpp \
|
---|
1349 | generic/RTMpCpuId-generic.cpp \
|
---|
1350 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
1351 | generic/RTMpGetOnlineCoreCount-generic.cpp \
|
---|
1352 | generic/RTProcDaemonize-generic.cpp \
|
---|
1353 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1354 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1355 | r3/freebsd/fileaio-freebsd.cpp \
|
---|
1356 | r3/freebsd/RTFileQuerySectorSize-freebsd.cpp \
|
---|
1357 | r3/freebsd/mp-freebsd.cpp \
|
---|
1358 | r3/freebsd/systemmem-freebsd.cpp \
|
---|
1359 | r3/freebsd/rtProcInitExePath-freebsd.cpp \
|
---|
1360 | r3/generic/allocex-r3-generic.cpp \
|
---|
1361 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1362 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1363 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1364 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1365 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1366 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1367 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1368 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1369 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1370 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1371 | r3/posix/RTTimeSet-posix.cpp \
|
---|
1372 | r3/posix/RTTimeZoneGetCurrent-posix.cpp \
|
---|
1373 | r3/posix/dir-posix.cpp \
|
---|
1374 | r3/posix/env-posix.cpp \
|
---|
1375 | r3/posix/errvars-posix.cpp \
|
---|
1376 | r3/posix/fileio-posix.cpp \
|
---|
1377 | r3/posix/fileio2-posix.cpp \
|
---|
1378 | r3/posix/fileio-at-posix.cpp \
|
---|
1379 | r3/posix/fileio-sg-posix.cpp \
|
---|
1380 | r3/posix/fileio-sg-at-posix.cpp \
|
---|
1381 | r3/posix/filelock-posix.cpp \
|
---|
1382 | r3/posix/fs-posix.cpp \
|
---|
1383 | r3/posix/fs2-posix.cpp \
|
---|
1384 | r3/posix/fs3-posix.cpp \
|
---|
1385 | r3/posix/ldrNative-posix.cpp \
|
---|
1386 | r3/posix/localipc-posix.cpp \
|
---|
1387 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1388 | r3/posix/path-posix.cpp \
|
---|
1389 | r3/posix/path2-posix.cpp \
|
---|
1390 | r3/posix/pathhost-posix.cpp \
|
---|
1391 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
1392 | r3/posix/pipe-posix.cpp \
|
---|
1393 | r3/posix/process-posix.cpp \
|
---|
1394 | r3/posix/process-creation-posix.cpp \
|
---|
1395 | r3/posix/rand-posix.cpp \
|
---|
1396 | r3/posix/semevent-posix.cpp \
|
---|
1397 | r3/posix/semeventmulti-posix.cpp \
|
---|
1398 | r3/posix/semmutex-posix.cpp \
|
---|
1399 | r3/posix/semrw-posix.cpp \
|
---|
1400 | r3/posix/serialport-posix.cpp \
|
---|
1401 | r3/posix/symlink-posix.cpp \
|
---|
1402 | r3/posix/shmem-posix.cpp \
|
---|
1403 | r3/posix/thread-posix.cpp \
|
---|
1404 | r3/posix/thread2-posix.cpp \
|
---|
1405 | r3/posix/time-posix.cpp \
|
---|
1406 | r3/posix/timelocal-posix.cpp \
|
---|
1407 | r3/posix/timer-posix.cpp \
|
---|
1408 | r3/posix/tls-posix.cpp \
|
---|
1409 | r3/posix/utf8-posix.cpp
|
---|
1410 |
|
---|
1411 | RuntimeR3_SOURCES.netbsd = \
|
---|
1412 | generic/cdrom-generic.cpp \
|
---|
1413 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1414 | generic/RTDirSetMode-generic.cpp \
|
---|
1415 | generic/RTDirSetTimes-generic.cpp \
|
---|
1416 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1417 | generic/RTFileMove-generic.cpp \
|
---|
1418 | generic/RTFileQuerySectorSize-generic.cpp \
|
---|
1419 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1420 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1421 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1422 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1423 | generic/RTSystemQueryDmiString-generic.cpp \
|
---|
1424 | generic/RTSystemFirmware-generic.cpp \
|
---|
1425 | generic/RTSystemShutdown-generic.cpp \
|
---|
1426 | generic/RTThreadGetAffinity-stub-generic.cpp \
|
---|
1427 | generic/RTThreadSetAffinity-stub-generic.cpp \
|
---|
1428 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1429 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1430 | generic/RTTimerCreate-generic.cpp \
|
---|
1431 | generic/RTUuidCreate-generic.cpp \
|
---|
1432 | generic/mppresent-generic.cpp \
|
---|
1433 | generic/sched-generic.cpp \
|
---|
1434 | generic/utf16locale-generic.cpp \
|
---|
1435 | generic/uuid-generic.cpp \
|
---|
1436 | generic/RTMpCpuId-generic.cpp \
|
---|
1437 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
1438 | generic/RTMpGetOnlineCoreCount-generic.cpp \
|
---|
1439 | generic/RTProcDaemonize-generic.cpp \
|
---|
1440 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1441 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1442 | r3/netbsd/rtProcInitExePath-netbsd.cpp \
|
---|
1443 | r3/generic/allocex-r3-generic.cpp \
|
---|
1444 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1445 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1446 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1447 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1448 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1449 | r3/posix/RTFileSetAllocationSize-posix.cpp \
|
---|
1450 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1451 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1452 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1453 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1454 | r3/posix/RTSystemQueryTotalRam-posix.cpp \
|
---|
1455 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1456 | r3/posix/RTTimeSet-posix.cpp \
|
---|
1457 | r3/posix/RTTimeZoneGetCurrent-posix.cpp \
|
---|
1458 | r3/posix/dir-posix.cpp \
|
---|
1459 | r3/posix/env-posix.cpp \
|
---|
1460 | r3/posix/errvars-posix.cpp \
|
---|
1461 | r3/posix/fileio-posix.cpp \
|
---|
1462 | r3/posix/fileio2-posix.cpp \
|
---|
1463 | r3/posix/fileio-at-posix.cpp \
|
---|
1464 | r3/posix/fileio-sg-posix.cpp \
|
---|
1465 | r3/posix/fileio-sg-at-posix.cpp \
|
---|
1466 | r3/posix/filelock-posix.cpp \
|
---|
1467 | r3/posix/fs-posix.cpp \
|
---|
1468 | r3/posix/fs2-posix.cpp \
|
---|
1469 | r3/posix/fs3-posix.cpp \
|
---|
1470 | r3/posix/ldrNative-posix.cpp \
|
---|
1471 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1472 | r3/posix/path-posix.cpp \
|
---|
1473 | r3/posix/path2-posix.cpp \
|
---|
1474 | r3/posix/pathhost-posix.cpp \
|
---|
1475 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
1476 | r3/posix/pipe-posix.cpp \
|
---|
1477 | r3/posix/process-posix.cpp \
|
---|
1478 | r3/posix/process-creation-posix.cpp \
|
---|
1479 | r3/posix/rand-posix.cpp \
|
---|
1480 | r3/posix/semevent-posix.cpp \
|
---|
1481 | r3/posix/semeventmulti-posix.cpp \
|
---|
1482 | r3/posix/semmutex-posix.cpp \
|
---|
1483 | r3/posix/semrw-posix.cpp \
|
---|
1484 | r3/posix/serialport-posix.cpp \
|
---|
1485 | r3/posix/symlink-posix.cpp \
|
---|
1486 | r3/posix/shmem-posix.cpp \
|
---|
1487 | r3/posix/thread-posix.cpp \
|
---|
1488 | r3/posix/thread2-posix.cpp \
|
---|
1489 | r3/posix/time-posix.cpp \
|
---|
1490 | r3/posix/timelocal-posix.cpp \
|
---|
1491 | r3/posix/timer-posix.cpp \
|
---|
1492 | r3/posix/tls-posix.cpp \
|
---|
1493 | r3/posix/utf8-posix.cpp
|
---|
1494 |
|
---|
1495 | RuntimeR3_SOURCES.solaris = \
|
---|
1496 | common/ioqueue/ioqueue-aiofile-provider.cpp \
|
---|
1497 | generic/cdrom-generic.cpp \
|
---|
1498 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
1499 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1500 | generic/RTDirSetMode-generic.cpp \
|
---|
1501 | generic/RTDirSetTimes-generic.cpp \
|
---|
1502 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1503 | generic/RTFileMove-generic.cpp \
|
---|
1504 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1505 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1506 | generic/RTProcDaemonize-generic.cpp \
|
---|
1507 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1508 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1509 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1510 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
1511 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1512 | generic/RTTimerCreate-generic.cpp \
|
---|
1513 | generic/RTUuidCreate-generic.cpp \
|
---|
1514 | generic/sched-generic.cpp \
|
---|
1515 | generic/utf16locale-generic.cpp \
|
---|
1516 | generic/uuid-generic.cpp \
|
---|
1517 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1518 | generic/RTSystemFirmware-generic.cpp \
|
---|
1519 | r3/generic/allocex-r3-generic.cpp \
|
---|
1520 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1521 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1522 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1523 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1524 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1525 | r3/posix/RTFileSetAllocationSize-posix.cpp \
|
---|
1526 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1527 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1528 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1529 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1530 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1531 | r3/posix/RTTimeSet-posix.cpp \
|
---|
1532 | r3/posix/RTTimeZoneGetCurrent-posix.cpp \
|
---|
1533 | r3/posix/dir-posix.cpp \
|
---|
1534 | r3/posix/env-posix.cpp \
|
---|
1535 | r3/posix/errvars-posix.cpp \
|
---|
1536 | r3/posix/fileio-posix.cpp \
|
---|
1537 | r3/posix/fileio2-posix.cpp \
|
---|
1538 | r3/posix/fileio-at-posix.cpp \
|
---|
1539 | r3/posix/fileio-sg-posix.cpp \
|
---|
1540 | r3/posix/fileio-sg-at-posix.cpp \
|
---|
1541 | r3/posix/filelock-posix.cpp \
|
---|
1542 | r3/posix/fs-posix.cpp \
|
---|
1543 | r3/posix/fs2-posix.cpp \
|
---|
1544 | r3/posix/fs3-posix.cpp \
|
---|
1545 | r3/posix/ldrNative-posix.cpp \
|
---|
1546 | r3/posix/localipc-posix.cpp \
|
---|
1547 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1548 | r3/posix/path-posix.cpp \
|
---|
1549 | r3/posix/path2-posix.cpp \
|
---|
1550 | r3/posix/pathhost-posix.cpp \
|
---|
1551 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
1552 | r3/posix/pipe-posix.cpp \
|
---|
1553 | r3/posix/process-posix.cpp \
|
---|
1554 | r3/posix/process-creation-posix.cpp \
|
---|
1555 | r3/posix/rand-posix.cpp \
|
---|
1556 | r3/posix/semevent-posix.cpp \
|
---|
1557 | r3/posix/semeventmulti-posix.cpp \
|
---|
1558 | r3/posix/semmutex-posix.cpp \
|
---|
1559 | r3/posix/semrw-posix.cpp \
|
---|
1560 | r3/posix/serialport-posix.cpp \
|
---|
1561 | r3/posix/symlink-posix.cpp \
|
---|
1562 | r3/posix/shmem-posix.cpp \
|
---|
1563 | r3/posix/thread-posix.cpp \
|
---|
1564 | r3/posix/thread2-posix.cpp \
|
---|
1565 | r3/posix/time-posix.cpp \
|
---|
1566 | r3/posix/timelocal-posix.cpp \
|
---|
1567 | r3/posix/timer-posix.cpp \
|
---|
1568 | r3/posix/tls-posix.cpp \
|
---|
1569 | r3/posix/utf8-posix.cpp \
|
---|
1570 | r3/solaris/fileaio-solaris.cpp \
|
---|
1571 | r3/solaris/RTFileQuerySectorSize-solaris.cpp \
|
---|
1572 | r3/solaris/krnlmod-solaris.cpp \
|
---|
1573 | r3/solaris/systemmem-solaris.cpp \
|
---|
1574 | r3/solaris/mp-solaris.cpp \
|
---|
1575 | r3/solaris/rtProcInitExePath-solaris.cpp \
|
---|
1576 | r3/solaris/RTSystemShutdown-solaris.cpp \
|
---|
1577 | r3/solaris/thread-affinity-solaris.cpp
|
---|
1578 | RuntimeR3_SOURCES.solaris.amd64 = \
|
---|
1579 | common/string/memrchr.asm \
|
---|
1580 | r3/solaris/coredumper-solaris.cpp \
|
---|
1581 | r3/solaris/RTSystemQueryDmiString-solaris.cpp
|
---|
1582 | RuntimeR3_SOURCES.solaris.x86 = \
|
---|
1583 | common/string/memrchr.asm \
|
---|
1584 | r3/solaris/coredumper-solaris.cpp \
|
---|
1585 | r3/solaris/RTSystemQueryDmiString-solaris.cpp
|
---|
1586 | RuntimeR3_SOURCES.solaris.sparc32 = \
|
---|
1587 | common/string/memrchr.cpp \
|
---|
1588 | generic/RTSystemQueryDmiString-generic.cpp
|
---|
1589 | RuntimeR3_SOURCES.solaris.sparc64 = \
|
---|
1590 | common/string/memrchr.cpp \
|
---|
1591 | generic/RTSystemQueryDmiString-generic.cpp
|
---|
1592 |
|
---|
1593 | RuntimeR3_SOURCES.haiku = \
|
---|
1594 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
1595 | generic/RTDirQueryInfo-generic.cpp \
|
---|
1596 | generic/RTDirSetMode-generic.cpp \
|
---|
1597 | generic/RTDirSetTimes-generic.cpp \
|
---|
1598 | generic/fileio-at-generic.cpp \
|
---|
1599 | generic/fileio-sg-generic.cpp \
|
---|
1600 | generic/fileio-sg-at-generic.cpp \
|
---|
1601 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
1602 | generic/RTFileMove-generic.cpp \
|
---|
1603 | generic/RTFileQuerySectorSize-generic.cpp \
|
---|
1604 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
1605 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
1606 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
1607 | generic/RTProcDaemonize-generic.cpp \
|
---|
1608 | generic/RTTimeLocalNow-generic.cpp \
|
---|
1609 | generic/RTTimerCreate-generic.cpp \
|
---|
1610 | generic/RTUuidCreate-generic.cpp \
|
---|
1611 | generic/mppresent-generic.cpp \
|
---|
1612 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
1613 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
1614 | generic/sched-generic.cpp \
|
---|
1615 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
1616 | generic/timer-generic.cpp \
|
---|
1617 | generic/utf16locale-generic.cpp \
|
---|
1618 | generic/uuid-generic.cpp\
|
---|
1619 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
1620 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
1621 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
1622 | generic/RTMpGetOnlineCoreCount-generic.cpp \
|
---|
1623 | r3/haiku/rtProcInitExePath-haiku.cpp \
|
---|
1624 | r3/haiku/time-haiku.cpp \
|
---|
1625 | r3/generic/allocex-r3-generic.cpp \
|
---|
1626 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
1627 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
1628 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
1629 | r3/generic/RTTimeZoneGetCurrent-generic.cpp \
|
---|
1630 | r3/generic/dirrel-r3-generic.cpp \
|
---|
1631 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
1632 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
1633 | r3/posix/RTMemProtect-posix.cpp \
|
---|
1634 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
1635 | r3/posix/RTSystemQueryOSInfo-posix.cpp \
|
---|
1636 | r3/posix/RTSystemQueryTotalRam-posix.cpp \
|
---|
1637 | r3/posix/RTTimeNow-posix.cpp \
|
---|
1638 | r3/posix/dir-posix.cpp \
|
---|
1639 | r3/posix/env-posix.cpp \
|
---|
1640 | r3/posix/errvars-posix.cpp \
|
---|
1641 | r3/posix/fileio-posix.cpp \
|
---|
1642 | r3/posix/fileio2-posix.cpp \
|
---|
1643 | r3/posix/filelock-posix.cpp \
|
---|
1644 | r3/posix/fs-posix.cpp \
|
---|
1645 | r3/posix/fs2-posix.cpp \
|
---|
1646 | r3/posix/fs3-posix.cpp \
|
---|
1647 | r3/posix/ldrNative-posix.cpp \
|
---|
1648 | r3/posix/localipc-posix.cpp \
|
---|
1649 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
1650 | r3/posix/path-posix.cpp \
|
---|
1651 | r3/posix/path2-posix.cpp \
|
---|
1652 | r3/posix/pathhost-posix.cpp \
|
---|
1653 | r3/posix/pipe-posix.cpp \
|
---|
1654 | r3/posix/process-posix.cpp \
|
---|
1655 | r3/posix/process-creation-posix.cpp \
|
---|
1656 | r3/posix/rand-posix.cpp \
|
---|
1657 | r3/posix/semevent-posix.cpp \
|
---|
1658 | r3/posix/semeventmulti-posix.cpp \
|
---|
1659 | r3/posix/semmutex-posix.cpp \
|
---|
1660 | r3/posix/serialport-posix.cpp \
|
---|
1661 | r3/posix/symlink-posix.cpp \
|
---|
1662 | r3/posix/thread-posix.cpp \
|
---|
1663 | r3/posix/thread2-posix.cpp \
|
---|
1664 | r3/posix/timelocal-posix.cpp \
|
---|
1665 | r3/posix/tls-posix.cpp \
|
---|
1666 | r3/posix/utf8-posix.cpp
|
---|
1667 | RuntimeR3_SOURCES.haiku.x86 += common/string/memrchr.asm
|
---|
1668 | RuntimeR3_SOURCES.haiku.amd64 += common/string/memrchr.asm
|
---|
1669 |
|
---|
1670 | ## PORTME: Porters add their selection of platform specific files for Ring-3 here.
|
---|
1671 |
|
---|
1672 |
|
---|
1673 | #
|
---|
1674 | # Generate RTIsoMaker / VISO help text from the manpage xml.
|
---|
1675 | #
|
---|
1676 | ifn1of ($(KBUILD_TARGET), os2) # breaks validationkit, figure out later.
|
---|
1677 |
|
---|
1678 | IPRT_XML_REFENTRY_FILES = \
|
---|
1679 | common/fs/isomakercmd-man.xml
|
---|
1680 |
|
---|
1681 | #$(call KB_FN_DO_PASS0_ON_TARGET,RuntimeR3)
|
---|
1682 |
|
---|
1683 | BLDDIRS += $(IPRT_OUT_DIR)/man/
|
---|
1684 | OTHER_CLEAN += $(foreach xml,$(basename $(notdir $(IPRT_XML_REFENTRY_FILES))), \
|
---|
1685 | $(IPRT_OUT_DIR)/man/$(xml).xml $(IPRT_OUT_DIR)/man/$(xml).h $(IPRT_OUT_DIR)/man/$(xml).h.ts)
|
---|
1686 |
|
---|
1687 |
|
---|
1688 | include $(PATH_ROOT)/doc/manual/Config.kmk
|
---|
1689 |
|
---|
1690 | # Preprocess the xml files, applying remarks.
|
---|
1691 | $(foreach file,$(IPRT_XML_REFENTRY_FILES) \
|
---|
1692 | , $(evalcall2 def_vbox_refentry_preprocess_for_manpage,$(IPRT_OUT_DIR)/man,$(notdir $(file)),$(VBOX_PATH_RUNTIME_SRC)/$(file)))
|
---|
1693 |
|
---|
1694 | # generate the header and add it as a dependency to the source using it.
|
---|
1695 | $(evalcall2 def_vbox_single_refentry_to_h,$(IPRT_OUT_DIR)/man/isomakercmd-man.h, $(IPRT_OUT_DIR)/man/isomakercmd-man.xml)
|
---|
1696 | common/fs/isomakercmd.cpp_DEPS = $(IPRT_OUT_DIR)/man/isomakercmd-man.h
|
---|
1697 | common/fs/isomakercmd.cpp_INCS = $(IPRT_OUT_DIR)/man/
|
---|
1698 |
|
---|
1699 | endif
|
---|
1700 |
|
---|
1701 |
|
---|
1702 | #
|
---|
1703 | # RuntimeR3-x86 - 32-bit version of RuntimeR3 for windows hosts.
|
---|
1704 | #
|
---|
1705 | RuntimeR3-x86_EXTENDS := RuntimeR3
|
---|
1706 | RuntimeR3-x86_BLD_TRG_ARCH := x86
|
---|
1707 | RuntimeR3-x86_DEFS := $(filter-out IN_SUP_R3 IN_SUP, $(RuntimeR3_DEFS)) IPRT_WITHOUT_LDR_VERIFY RT_NO_GIP
|
---|
1708 |
|
---|
1709 |
|
---|
1710 | #
|
---|
1711 | # RuntimeBldProg - Static Runtime for build programs.
|
---|
1712 | #
|
---|
1713 | # Note! This is a bit of hacky since kBuild doesn't support building libraries
|
---|
1714 | # for build programs.
|
---|
1715 | #
|
---|
1716 | RuntimeBldProg_TEMPLATE := VBoxAdvBldProg
|
---|
1717 | RuntimeBldProg_EXTENDS := RuntimeR3
|
---|
1718 | RuntimeBldProg_BLD_TRG := $(KBUILD_HOST)
|
---|
1719 | RuntimeBldProg_BLD_TRG_ARCH := $(KBUILD_HOST_ARCH)
|
---|
1720 | RuntimeBldProg_BLD_TRG_CPU := $(KBUILD_HOST_CPU)
|
---|
1721 | RuntimeBldProg_DEFS := $(filter-out IN_SUP_R3 IN_SUP, $(RuntimeR3_DEFS)) IPRT_WITHOUT_LDR_VERIFY RT_NO_GIP
|
---|
1722 | RuntimeBldProg_SOURCES = \
|
---|
1723 | common/alloc/alloc.cpp \
|
---|
1724 | common/alloc/memcache.cpp \
|
---|
1725 | common/asn1/asn1-basics.cpp \
|
---|
1726 | common/asn1/asn1-cursor.cpp \
|
---|
1727 | common/asn1/asn1-default-allocator.cpp \
|
---|
1728 | common/asn1/asn1-dump.cpp \
|
---|
1729 | common/asn1/asn1-efence-allocator.cpp \
|
---|
1730 | common/asn1/asn1-encode.cpp \
|
---|
1731 | common/asn1/asn1-safer-allocator.cpp \
|
---|
1732 | common/asn1/asn1-ut-bitstring-decode.cpp \
|
---|
1733 | common/asn1/asn1-ut-bitstring.cpp \
|
---|
1734 | common/asn1/asn1-ut-boolean-decode.cpp \
|
---|
1735 | common/asn1/asn1-ut-boolean.cpp \
|
---|
1736 | common/asn1/asn1-ut-core-decode.cpp \
|
---|
1737 | common/asn1/asn1-ut-core.cpp \
|
---|
1738 | common/asn1/asn1-ut-dyntype-decode.cpp \
|
---|
1739 | common/asn1/asn1-ut-dyntype.cpp \
|
---|
1740 | common/asn1/asn1-ut-integer-decode.cpp \
|
---|
1741 | common/asn1/asn1-ut-integer.cpp \
|
---|
1742 | common/asn1/asn1-ut-null-decode.cpp \
|
---|
1743 | common/asn1/asn1-ut-null.cpp \
|
---|
1744 | common/asn1/asn1-ut-objid-decode.cpp \
|
---|
1745 | common/asn1/asn1-ut-objid.cpp \
|
---|
1746 | common/asn1/asn1-ut-octetstring-decode.cpp \
|
---|
1747 | common/asn1/asn1-ut-octetstring.cpp \
|
---|
1748 | common/asn1/asn1-ut-string-decode.cpp \
|
---|
1749 | common/asn1/asn1-ut-string.cpp \
|
---|
1750 | common/asn1/asn1-ut-time-decode.cpp \
|
---|
1751 | common/asn1/asn1-ut-time.cpp \
|
---|
1752 | common/checksum/adler32.cpp \
|
---|
1753 | common/checksum/alt-md2.cpp \
|
---|
1754 | common/checksum/alt-md4.cpp \
|
---|
1755 | common/checksum/alt-md5.cpp \
|
---|
1756 | common/checksum/alt-sha1.cpp \
|
---|
1757 | common/checksum/alt-sha256.cpp \
|
---|
1758 | common/checksum/alt-sha512.cpp \
|
---|
1759 | common/checksum/crc16ccitt.cpp \
|
---|
1760 | common/checksum/crc32.cpp \
|
---|
1761 | common/checksum/crc32c.cpp \
|
---|
1762 | common/checksum/crc64.cpp \
|
---|
1763 | common/checksum/manifest2.cpp \
|
---|
1764 | common/checksum/manifest3.cpp \
|
---|
1765 | common/checksum/md5str.cpp \
|
---|
1766 | common/checksum/sha1str.cpp \
|
---|
1767 | common/checksum/sha256str.cpp \
|
---|
1768 | common/checksum/sha512str.cpp \
|
---|
1769 | common/crypto/digest-core.cpp \
|
---|
1770 | common/crypto/pemfile-read.cpp \
|
---|
1771 | common/crypto/pkcs7-asn1-decoder.cpp \
|
---|
1772 | common/crypto/pkcs7-core.cpp \
|
---|
1773 | common/crypto/pkcs7-init.cpp \
|
---|
1774 | common/crypto/pkcs7-sanity.cpp \
|
---|
1775 | common/crypto/pkcs7-verify.cpp \
|
---|
1776 | common/crypto/spc-asn1-decoder.cpp \
|
---|
1777 | common/crypto/spc-core.cpp \
|
---|
1778 | common/crypto/spc-init.cpp \
|
---|
1779 | common/crypto/spc-sanity.cpp \
|
---|
1780 | common/crypto/taf-asn1-decoder.cpp \
|
---|
1781 | common/crypto/taf-core.cpp \
|
---|
1782 | common/crypto/taf-init.cpp \
|
---|
1783 | common/crypto/taf-sanity.cpp \
|
---|
1784 | common/crypto/tsp-asn1-decoder.cpp \
|
---|
1785 | common/crypto/tsp-core.cpp \
|
---|
1786 | common/crypto/tsp-init.cpp \
|
---|
1787 | common/crypto/tsp-sanity.cpp \
|
---|
1788 | common/crypto/x509-asn1-decoder.cpp \
|
---|
1789 | common/crypto/x509-core.cpp \
|
---|
1790 | common/crypto/x509-file.cpp \
|
---|
1791 | common/crypto/x509-init.cpp \
|
---|
1792 | common/crypto/x509-sanity.cpp \
|
---|
1793 | common/dbg/dbg.cpp \
|
---|
1794 | common/dbg/dbgcfg.cpp \
|
---|
1795 | common/dbg/dbgmod.cpp \
|
---|
1796 | common/dbg/dbgmodcodeview.cpp \
|
---|
1797 | common/dbg/dbgmodcontainer.cpp \
|
---|
1798 | common/dbg/dbgmoddeferred.cpp \
|
---|
1799 | common/dbg/dbgmoddwarf.cpp \
|
---|
1800 | common/dbg/dbgmodexports.cpp \
|
---|
1801 | common/dbg/dbgmodldr.cpp \
|
---|
1802 | common/dbg/dbgmodmapsym.cpp \
|
---|
1803 | common/dbg/dbgmodnm.cpp \
|
---|
1804 | common/err/errinfo-alloc.cpp \
|
---|
1805 | common/err/errinfo.cpp \
|
---|
1806 | common/err/errinfolog.cpp \
|
---|
1807 | common/err/errmsg.cpp \
|
---|
1808 | common/err/RTErrConvertFromErrno.cpp \
|
---|
1809 | common/err/RTErrConvertToErrno.cpp \
|
---|
1810 | common/fs/isomaker.cpp \
|
---|
1811 | common/fs/isomakercmd.cpp \
|
---|
1812 | common/fs/isomakerimport.cpp \
|
---|
1813 | common/fs/isovfs.cpp \
|
---|
1814 | common/ldr/ldr.cpp \
|
---|
1815 | common/ldr/ldrELF.cpp \
|
---|
1816 | common/ldr/ldrEx.cpp \
|
---|
1817 | common/ldr/ldrFile.cpp \
|
---|
1818 | common/ldr/ldrLX.cpp \
|
---|
1819 | common/ldr/ldrMachO.cpp \
|
---|
1820 | common/ldr/ldrNative.cpp \
|
---|
1821 | common/ldr/ldrPE.cpp \
|
---|
1822 | common/ldr/ldrVfsFile.cpp \
|
---|
1823 | common/log/log.cpp \
|
---|
1824 | common/log/logellipsis.cpp \
|
---|
1825 | common/log/logformat.cpp \
|
---|
1826 | common/log/logrel.cpp \
|
---|
1827 | common/log/logrelellipsis.cpp \
|
---|
1828 | common/log/RTLogCreateEx.cpp \
|
---|
1829 | common/math/bignum.cpp \
|
---|
1830 | common/misc/assert.cpp \
|
---|
1831 | common/misc/cidr.cpp \
|
---|
1832 | common/misc/getopt.cpp \
|
---|
1833 | common/misc/getoptargv.cpp \
|
---|
1834 | common/misc/lockvalidator.cpp \
|
---|
1835 | common/misc/message.cpp \
|
---|
1836 | common/misc/messagerefentry.cpp \
|
---|
1837 | common/misc/once.cpp \
|
---|
1838 | common/misc/RTAssertMsg1Weak.cpp \
|
---|
1839 | common/misc/RTAssertMsg2.cpp \
|
---|
1840 | common/misc/RTAssertMsg2Add.cpp \
|
---|
1841 | common/misc/RTAssertMsg2AddWeak.cpp \
|
---|
1842 | common/misc/RTAssertMsg2AddWeakV.cpp \
|
---|
1843 | common/misc/RTAssertMsg2Weak.cpp \
|
---|
1844 | common/misc/RTAssertMsg2WeakV.cpp \
|
---|
1845 | common/misc/RTFileModeToFlags.cpp \
|
---|
1846 | common/misc/RTFileOpenF.cpp \
|
---|
1847 | common/misc/RTFileOpenV.cpp \
|
---|
1848 | common/misc/RTMemWipeThoroughly.cpp \
|
---|
1849 | common/misc/req.cpp \
|
---|
1850 | common/misc/reqqueue.cpp \
|
---|
1851 | common/misc/reqpool.cpp \
|
---|
1852 | common/misc/sanity-c.c \
|
---|
1853 | common/misc/sanity-cpp.cpp \
|
---|
1854 | common/misc/sg.cpp \
|
---|
1855 | common/misc/term.cpp \
|
---|
1856 | common/misc/thread.cpp \
|
---|
1857 | common/net/macstr.cpp \
|
---|
1858 | common/net/netaddrstr2.cpp \
|
---|
1859 | common/path/comparepaths.cpp \
|
---|
1860 | common/path/RTPathAbsDup.cpp \
|
---|
1861 | common/path/RTPathAbsEx.cpp \
|
---|
1862 | common/path/RTPathAbsExDup.cpp \
|
---|
1863 | common/path/RTPathAppend.cpp \
|
---|
1864 | common/path/RTPathAppendEx.cpp \
|
---|
1865 | common/path/RTPathChangeToDosSlashes.cpp \
|
---|
1866 | common/path/RTPathChangeToUnixSlashes.cpp \
|
---|
1867 | common/path/RTPathCopyComponents.cpp \
|
---|
1868 | common/path/RTPathCountComponents.cpp \
|
---|
1869 | common/path/RTPathEnsureTrailingSeparator.cpp \
|
---|
1870 | common/path/RTPathExt.cpp \
|
---|
1871 | common/path/RTPathFilename.cpp \
|
---|
1872 | common/path/RTPathHasExt.cpp \
|
---|
1873 | common/path/RTPathHasPath.cpp \
|
---|
1874 | common/path/RTPathJoin.cpp \
|
---|
1875 | common/path/RTPathJoinA.cpp \
|
---|
1876 | common/path/RTPathJoinEx.cpp \
|
---|
1877 | common/path/RTPathParse.cpp \
|
---|
1878 | common/path/RTPathParsedReassemble.cpp \
|
---|
1879 | common/path/RTPathParseSimple.cpp \
|
---|
1880 | common/path/RTPathRealDup.cpp \
|
---|
1881 | common/path/rtPathRootSpecLen.cpp \
|
---|
1882 | common/path/RTPathSkipRootSpec.cpp \
|
---|
1883 | common/path/RTPathSplit.cpp \
|
---|
1884 | common/path/RTPathSplitA.cpp \
|
---|
1885 | common/path/RTPathSplitReassemble.cpp \
|
---|
1886 | common/path/RTPathStartsWithRoot.cpp \
|
---|
1887 | common/path/RTPathStripExt.cpp \
|
---|
1888 | common/path/RTPathStripFilename.cpp \
|
---|
1889 | common/path/RTPathStripTrailingSlash.cpp \
|
---|
1890 | common/path/RTPathTraverseList.cpp \
|
---|
1891 | common/path/rtPathVolumeSpecLen.cpp \
|
---|
1892 | common/rand/rand.cpp \
|
---|
1893 | common/rand/randadv.cpp \
|
---|
1894 | common/rand/randparkmiller.cpp \
|
---|
1895 | common/sort/shellsort.cpp \
|
---|
1896 | common/string/base64.cpp \
|
---|
1897 | common/string/RTStrCat.cpp \
|
---|
1898 | common/string/RTStrCmp.cpp \
|
---|
1899 | common/string/RTStrCopy.cpp \
|
---|
1900 | common/string/RTStrCopyEx.cpp \
|
---|
1901 | common/string/RTStrCopyP.cpp \
|
---|
1902 | common/string/RTStrIStartsWith.cpp \
|
---|
1903 | common/string/RTStrNCmp.cpp \
|
---|
1904 | common/string/RTStrNICmpAscii.cpp \
|
---|
1905 | common/string/RTStrNLen.cpp \
|
---|
1906 | common/string/RTStrPrintHexBytes.cpp \
|
---|
1907 | common/string/RTStrStr.cpp \
|
---|
1908 | common/string/simplepattern.cpp \
|
---|
1909 | common/string/straprintf.cpp \
|
---|
1910 | common/string/strcache.cpp \
|
---|
1911 | common/string/strformat.cpp \
|
---|
1912 | common/string/RTStrFormat.cpp \
|
---|
1913 | common/string/strformatnum.cpp \
|
---|
1914 | common/string/strformatrt.cpp \
|
---|
1915 | common/string/strformattype.cpp \
|
---|
1916 | common/string/strhash1.cpp \
|
---|
1917 | common/string/stringalloc.cpp \
|
---|
1918 | common/string/strprintf.cpp \
|
---|
1919 | common/string/strprintf-ellipsis.cpp \
|
---|
1920 | common/string/strprintf2.cpp \
|
---|
1921 | common/string/strprintf2-ellipsis.cpp \
|
---|
1922 | common/string/strspace.cpp \
|
---|
1923 | common/string/strstrip.cpp \
|
---|
1924 | common/string/strtonum.cpp \
|
---|
1925 | common/string/unidata-flags.cpp \
|
---|
1926 | common/string/unidata-lower.cpp \
|
---|
1927 | common/string/unidata-upper.cpp \
|
---|
1928 | common/string/utf-16-case.cpp \
|
---|
1929 | common/string/utf-16.cpp \
|
---|
1930 | common/string/utf-8-case.cpp \
|
---|
1931 | common/string/utf-8-case2.cpp \
|
---|
1932 | common/string/utf-8.cpp \
|
---|
1933 | common/table/avllu32.cpp \
|
---|
1934 | common/table/avlpv.cpp \
|
---|
1935 | common/table/avlrpv.cpp \
|
---|
1936 | common/table/avlruintptr.cpp \
|
---|
1937 | common/table/avlu32.cpp \
|
---|
1938 | common/table/avluintptr.cpp \
|
---|
1939 | common/time/time.cpp \
|
---|
1940 | common/time/timeprog.cpp \
|
---|
1941 | common/time/timesupref.cpp \
|
---|
1942 | common/time/timesysalias.cpp \
|
---|
1943 | common/vfs/vfsbase.cpp \
|
---|
1944 | common/vfs/vfschain.cpp \
|
---|
1945 | common/vfs/vfsmemory.cpp \
|
---|
1946 | common/vfs/vfsmisc.cpp \
|
---|
1947 | common/vfs/vfsmsg.cpp \
|
---|
1948 | common/vfs/vfsstddir.cpp \
|
---|
1949 | common/vfs/vfsstdfile.cpp \
|
---|
1950 | common/vfs/vfsstdpipe.cpp \
|
---|
1951 | common/zip/gzipvfs.cpp \
|
---|
1952 | common/zip/tar.cpp \
|
---|
1953 | common/zip/tarcmd.cpp \
|
---|
1954 | common/zip/tarvfs.cpp \
|
---|
1955 | common/zip/tarvfswriter.cpp \
|
---|
1956 | generic/critsect-generic.cpp \
|
---|
1957 | generic/critsectrw-generic.cpp \
|
---|
1958 | generic/env-generic.cpp \
|
---|
1959 | generic/mempool-generic.cpp \
|
---|
1960 | generic/RTEnvDupEx-generic.cpp \
|
---|
1961 | generic/RTFileCopy-generic.cpp \
|
---|
1962 | generic/RTFileCopyAttributes-generic.cpp \
|
---|
1963 | generic/RTFileCopyEx-generic.cpp \
|
---|
1964 | generic/RTFileCopyByHandlesEx-generic.cpp \
|
---|
1965 | generic/RTFileQuerySize-generic.cpp \
|
---|
1966 | generic/RTFileReadAll-generic.cpp \
|
---|
1967 | generic/RTFileReadAllByHandle-generic.cpp \
|
---|
1968 | generic/RTFileReadAllByHandleEx-generic.cpp \
|
---|
1969 | generic/RTFileReadAllEx-generic.cpp \
|
---|
1970 | generic/RTFileReadAllFree-generic.cpp \
|
---|
1971 | generic/RTLogWriteStdErr-generic.cpp \
|
---|
1972 | generic/RTLogWriteStdOut-generic.cpp \
|
---|
1973 | generic/RTLogWriteUser-generic.cpp \
|
---|
1974 | generic/RTPathIsSame-generic.cpp \
|
---|
1975 | generic/RTPathGetCurrentDrive-generic.cpp \
|
---|
1976 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
1977 | generic/RTTimerLRCreate-generic.cpp \
|
---|
1978 | generic/semfastmutex-generic.cpp \
|
---|
1979 | generic/semxroads-generic.cpp \
|
---|
1980 | generic/spinlock-generic.cpp \
|
---|
1981 | r3/alloc-ef.cpp \
|
---|
1982 | r3/alloc.cpp \
|
---|
1983 | r3/allocex.cpp \
|
---|
1984 | r3/dir.cpp \
|
---|
1985 | r3/dir2.cpp \
|
---|
1986 | r3/fileio.cpp \
|
---|
1987 | r3/fs.cpp \
|
---|
1988 | r3/generic/semspinmutex-r3-generic.cpp \
|
---|
1989 | r3/init.cpp \
|
---|
1990 | r3/memsafer-r3.cpp \
|
---|
1991 | r3/path.cpp \
|
---|
1992 | r3/RTPathTemp.cpp \
|
---|
1993 | r3/process.cpp \
|
---|
1994 | r3/socket.cpp \
|
---|
1995 | r3/stream.cpp \
|
---|
1996 | r3/tcp.cpp \
|
---|
1997 | VBox/log-vbox.cpp \
|
---|
1998 | VBox/RTAssertShouldPanic-vbox.cpp \
|
---|
1999 | \
|
---|
2000 | common/string/ministring.cpp # for main
|
---|
2001 | ifneq ($(KBUILD_HOST),win)
|
---|
2002 | RuntimeBldProg_SOURCES += \
|
---|
2003 | common/err/errmsgxpcom.cpp
|
---|
2004 | endif
|
---|
2005 |
|
---|
2006 | RuntimeBldProg_SOURCES.darwin = $(filter-out \
|
---|
2007 | generic/cdrom-generic.cpp \
|
---|
2008 | generic/RTFileMove-generic.cpp \
|
---|
2009 | generic/RTProcDaemonize-generic.cpp \
|
---|
2010 | generic/RTThreadGetAffinity-stub-generic.cpp \
|
---|
2011 | generic/RTThreadSetAffinity-stub-generic.cpp \
|
---|
2012 | generic/RTThreadSetAffinityToCpu-generic.cpp \
|
---|
2013 | generic/RTTimerCreate-generic.cpp \
|
---|
2014 | generic/mppresent-generic.cpp \
|
---|
2015 | generic/RTSystemShutdown-generic.cpp \
|
---|
2016 | generic/timer-generic.cpp \
|
---|
2017 | generic/utf16locale-generic.cpp \
|
---|
2018 | generic/RTProcIsRunningByName-generic.cpp \
|
---|
2019 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
2020 | r3/darwin/RTCrStoreCreateSnapshotById-darwin.cpp \
|
---|
2021 | r3/darwin/filelock-darwin.cpp \
|
---|
2022 | r3/darwin/systemmem-darwin.cpp \
|
---|
2023 | r3/darwin/krnlmod-darwin.cpp \
|
---|
2024 | r3/darwin/filelock-darwin.cpp \
|
---|
2025 | r3/darwin/RTSystemQueryDmiString-darwin.cpp \
|
---|
2026 | r3/darwin/RTPathUserDocuments-darwin.cpp \
|
---|
2027 | r3/posix/RTTimeSet-posix.cpp \
|
---|
2028 | r3/posix/serialport-posix.cpp \
|
---|
2029 | r3/posix/localipc-posix.cpp \
|
---|
2030 | r3/generic/allocex-r3-generic.cpp \
|
---|
2031 | r3/generic/RTLocaleQueryLocaleName-r3-generic.cpp \
|
---|
2032 | r3/generic/RTLocaleQueryNormalizedBaseLocaleName-r3-generic.cpp \
|
---|
2033 | r3/generic/RTLocaleQueryUserCountryCode-r3-generic.cpp \
|
---|
2034 | , $(RuntimeR3_SOURCES.darwin))
|
---|
2035 |
|
---|
2036 | RuntimeBldProg_SOURCES.win = \
|
---|
2037 | common/dbg/dbgmoddbghelp.cpp \
|
---|
2038 | common/string/mempcpy.asm \
|
---|
2039 | common/string/RTUtf16CopyAscii.cpp \
|
---|
2040 | common/string/RTUtf16End.cpp \
|
---|
2041 | common/string/RTUtf16NLenEx.cpp \
|
---|
2042 | generic/mppresent-generic-online.cpp \
|
---|
2043 | generic/RTDirExists-generic.cpp \
|
---|
2044 | generic/RTDirSetTimes-generic.cpp \
|
---|
2045 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
2046 | generic/RTFileExists-generic.cpp \
|
---|
2047 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
2048 | generic/RTRandAdvCreateSystemFaster-generic.cpp \
|
---|
2049 | generic/RTRandAdvCreateSystemTruer-generic.cpp \
|
---|
2050 | generic/RTSemEventWait-2-ex-generic.cpp \
|
---|
2051 | generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
|
---|
2052 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
2053 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
2054 | generic/RTSemMutexRequest-generic.cpp \
|
---|
2055 | generic/RTSemMutexRequestDebug-generic.cpp \
|
---|
2056 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
2057 | generic/uuid-generic.cpp \
|
---|
2058 | nt/fileioutils-nt.cpp \
|
---|
2059 | nt/RTErrConvertFromNtStatus.cpp \
|
---|
2060 | nt/semevent-nt.cpp \
|
---|
2061 | nt/semeventmulti-nt.cpp \
|
---|
2062 | r3/nt/direnum-r3-nt.cpp \
|
---|
2063 | r3/nt/dirrel-r3-nt.cpp \
|
---|
2064 | r3/nt/fs-nt.cpp \
|
---|
2065 | r3/nt/pathint-nt.cpp \
|
---|
2066 | r3/nt/RTFileQueryFsSizes-nt.cpp \
|
---|
2067 | r3/nt/RTFileSetMode-r3-nt.cpp \
|
---|
2068 | r3/nt/RTPathQueryInfo-nt.cpp \
|
---|
2069 | r3/nt/RTPathSetMode-r3-nt.cpp \
|
---|
2070 | r3/nt/RTProcQueryParent-r3-nt.cpp \
|
---|
2071 | r3/win/alloc-win.cpp \
|
---|
2072 | r3/win/allocex-win.cpp \
|
---|
2073 | r3/win/dir-win.cpp \
|
---|
2074 | r3/win/env-win.cpp \
|
---|
2075 | r3/win/errvars-win.cpp \
|
---|
2076 | r3/win/fileio-win.cpp \
|
---|
2077 | r3/win/init-win.cpp \
|
---|
2078 | r3/win/ldrNative-win.cpp \
|
---|
2079 | r3/win/path-win.cpp \
|
---|
2080 | r3/win/pathint-win.cpp \
|
---|
2081 | r3/win/pipe-win.cpp \
|
---|
2082 | r3/win/process-win.cpp \
|
---|
2083 | r3/win/RTHandleGetStandard-win.cpp \
|
---|
2084 | r3/win/RTLogWriteDebugger-win.cpp \
|
---|
2085 | r3/win/rtProcInitExePath-win.cpp \
|
---|
2086 | r3/win/RTUuidCreate-win.cpp \
|
---|
2087 | r3/win/sched-win.cpp \
|
---|
2088 | r3/win/semmutex-win.cpp \
|
---|
2089 | r3/win/symlink-win.cpp \
|
---|
2090 | r3/win/system-get-nt-xxx-win.cpp \
|
---|
2091 | r3/win/thread-win.cpp \
|
---|
2092 | r3/win/thread2-win.cpp \
|
---|
2093 | $(if-expr 1,r3/win/time-win.cpp,r3/nt/time-nt.cpp) \
|
---|
2094 | r3/win/time2-win.cpp \
|
---|
2095 | r3/win/tls-win.cpp \
|
---|
2096 | r3/win/utf16locale-win.cpp \
|
---|
2097 | r3/win/utf8-win.cpp \
|
---|
2098 | win/errmsgwin.cpp \
|
---|
2099 | win/RTErrConvertFromWin32.cpp
|
---|
2100 |
|
---|
2101 | RuntimeBldProg_SOURCES.win.amd64 := \
|
---|
2102 | $(RuntimeWin64ASM_SOURCES) \
|
---|
2103 | common/string/memrchr.asm
|
---|
2104 | RuntimeBldProg_SOURCES.win.x86 := \
|
---|
2105 | $(RuntimeWin32ASM_SOURCES) \
|
---|
2106 | common/string/memrchr.asm
|
---|
2107 |
|
---|
2108 | ## @todo reduce this
|
---|
2109 | RuntimeBldProg_SOURCES.os2 += \
|
---|
2110 | common/string/memrchr.asm \
|
---|
2111 | generic/mppresent-generic.cpp \
|
---|
2112 | generic/RTCrStoreCreateSnapshotById-generic.cpp \
|
---|
2113 | generic/RTDirQueryInfo-generic.cpp \
|
---|
2114 | generic/RTDirSetTimes-generic.cpp \
|
---|
2115 | generic/fileio-at-generic.cpp \
|
---|
2116 | generic/RTFileCopyPartEx-generic.cpp \
|
---|
2117 | generic/RTFileMove-generic.cpp \
|
---|
2118 | generic/RTFileSetAllocationSize-generic.cpp \
|
---|
2119 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
2120 | generic/RTPathGetCurrentOnDrive-generic.cpp \
|
---|
2121 | generic/RTRandAdvCreateSystemFaster-generic.cpp \
|
---|
2122 | generic/RTRandAdvCreateSystemTruer-generic.cpp \
|
---|
2123 | generic/RTSemEventMultiWait-generic.cpp \
|
---|
2124 | generic/RTSemEventWait-generic.cpp \
|
---|
2125 | generic/RTSemMutexRequest-generic.cpp \
|
---|
2126 | generic/RTSemMutexRequestDebug-generic.cpp \
|
---|
2127 | generic/RTThreadGetNativeState-generic.cpp \
|
---|
2128 | generic/RTUuidCreate-generic.cpp \
|
---|
2129 | generic/semrw-$(if-expr defined(VBOX_WITH_LOCKLESS_SEMRW),lockless-,)generic.cpp \
|
---|
2130 | generic/timer-generic.cpp \
|
---|
2131 | generic/utf16locale-generic.cpp \
|
---|
2132 | generic/uuid-generic.cpp \
|
---|
2133 | os2/RTErrConvertFromOS2.cpp \
|
---|
2134 | r3/generic/allocex-r3-generic.cpp \
|
---|
2135 | r3/generic/dirrel-r3-generic.cpp \
|
---|
2136 | r3/os2/filelock-os2.cpp \
|
---|
2137 | r3/os2/mp-os2.cpp \
|
---|
2138 | r3/os2/pipe-os2.cpp \
|
---|
2139 | r3/os2/rtProcInitExePath-os2.cpp \
|
---|
2140 | r3/os2/sched-os2.cpp \
|
---|
2141 | r3/os2/sems-os2.cpp \
|
---|
2142 | r3/os2/systemmem-os2.cpp \
|
---|
2143 | r3/os2/thread-os2.cpp \
|
---|
2144 | r3/os2/time-os2.cpp \
|
---|
2145 | r3/posix/dir-posix.cpp \
|
---|
2146 | r3/posix/env-posix.cpp \
|
---|
2147 | r3/posix/errvars-posix.cpp \
|
---|
2148 | r3/posix/fileio-posix.cpp \
|
---|
2149 | r3/posix/fileio2-posix.cpp \
|
---|
2150 | r3/posix/fs-posix.cpp \
|
---|
2151 | r3/posix/fs2-posix.cpp \
|
---|
2152 | r3/posix/fs3-posix.cpp \
|
---|
2153 | r3/posix/ldrNative-posix.cpp \
|
---|
2154 | r3/posix/path-posix.cpp \
|
---|
2155 | r3/posix/path2-posix.cpp \
|
---|
2156 | r3/posix/pathhost-posix.cpp \
|
---|
2157 | r3/posix/process-creation-posix.cpp \
|
---|
2158 | r3/posix/process-posix.cpp \
|
---|
2159 | r3/posix/RTFileQueryFsSizes-posix.cpp \
|
---|
2160 | r3/posix/RTHandleGetStandard-posix.cpp \
|
---|
2161 | r3/posix/rtmempage-exec-mmap-heap-posix.cpp \
|
---|
2162 | r3/posix/RTMemProtect-posix.cpp \
|
---|
2163 | r3/posix/RTPathUserDocuments-posix.cpp \
|
---|
2164 | r3/posix/RTPathUserHome-posix.cpp \
|
---|
2165 | r3/posix/RTTimeNow-posix.cpp \
|
---|
2166 | r3/posix/RTTimeSet-posix.cpp \
|
---|
2167 | r3/posix/symlink-posix.cpp \
|
---|
2168 | r3/posix/timelocal-posix.cpp \
|
---|
2169 | r3/posix/utf8-posix.cpp
|
---|
2170 |
|
---|
2171 | ## @todo reduce linux, solaris and freebsd sources too.
|
---|
2172 |
|
---|
2173 |
|
---|
2174 |
|
---|
2175 | #
|
---|
2176 | # RuntimeGuestR3 - Guest Additions Runtime (static/exe).
|
---|
2177 | # (The KBUILD_HOST inheritance here is for cross building the linux
|
---|
2178 | # additions, while .x86 is for cross building x86 while targeting amd64.)
|
---|
2179 | #
|
---|
2180 | RuntimeGuestR3_TEMPLATE := VBoxGuestR3Lib
|
---|
2181 | ## @todo change this to EXTEND the RuntimeR3 target.
|
---|
2182 | RuntimeGuestR3_SDKS.win := $(RuntimeR3_SDKS.win)
|
---|
2183 | RuntimeGuestR3_DEFS := $(filter-out RTCRITSECT_STRICT RT_NO_GIP, $(RuntimeR3_DEFS))
|
---|
2184 | RuntimeGuestR3_DEFS := $(filter-out IN_SUP_R3, $(RuntimeGuestR3_DEFS))
|
---|
2185 | RuntimeGuestR3_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
|
---|
2186 | RuntimeGuestR3_DEFS.$(KBUILD_HOST) := $(RuntimeR3_DEFS.$(KBUILD_HOST))
|
---|
2187 | RuntimeGuestR3_INCS := $(RuntimeR3_INCS)
|
---|
2188 | RuntimeGuestR3_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
|
---|
2189 | RuntimeGuestR3_INCS.$(KBUILD_HOST) := $(RuntimeR3_INCS.$(KBUILD_HOST))
|
---|
2190 | RuntimeGuestR3_SOURCES := $(filter-out \
|
---|
2191 | common/time/timesupref.cpp \
|
---|
2192 | common/time/timesupA.asm \
|
---|
2193 | common/time/timesup.cpp \
|
---|
2194 | common/zip/xarvfs.cpp \
|
---|
2195 | generic/RTLogWriteUser-generic.cpp \
|
---|
2196 | r3/xml.cpp \
|
---|
2197 | , $(RuntimeR3_SOURCES))
|
---|
2198 | RuntimeGuestR3_SOURCES += \
|
---|
2199 | common/time/timesysalias.cpp \
|
---|
2200 | VBox/logbackdoor.cpp
|
---|
2201 | RuntimeGuestR3_SOURCES.$(KBUILD_TARGET) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
|
---|
2202 | RuntimeGuestR3_SOURCES.$(KBUILD_HOST) := $(RuntimeR3_SOURCES.$(KBUILD_HOST))
|
---|
2203 | RuntimeGuestR3_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
|
---|
2204 | RuntimeGuestR3_SOURCES.x86 := $(RuntimeR3_SOURCES.x86)
|
---|
2205 | RuntimeGuestR3_SOURCES.amd64 := $(RuntimeR3_SOURCES.amd64)
|
---|
2206 | RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
|
---|
2207 | RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).x86)
|
---|
2208 | RuntimeGuestR3_SOURCES.$(KBUILD_TARGET).amd64:= $(RuntimeR3_SOURCES.$(KBUILD_TARGET).amd64)
|
---|
2209 | RuntimeGuestR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_HOST).$(KBUILD_TARGET_ARCH))
|
---|
2210 | RuntimeGuestR3_DEFS.win.x86 += VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
|
---|
2211 | RuntimeGuestR3_SOURCES.win.x86 += \
|
---|
2212 | r3/win/vcc-fakes-kernel32.cpp \
|
---|
2213 | r3/win/vcc-fakes-kernel32-A.asm \
|
---|
2214 | r3/win/vcc-fakes-ntdll.cpp \
|
---|
2215 | r3/win/vcc-fakes-ntdll-A.asm \
|
---|
2216 | r3/win/vcc-fakes-ws2_32.cpp \
|
---|
2217 | r3/win/vcc-fakes-ws2_32-A.asm \
|
---|
2218 | r3/win/vcc-fakes-shell32.cpp \
|
---|
2219 | r3/win/vcc-fakes-shell32-A.asm \
|
---|
2220 |
|
---|
2221 |
|
---|
2222 | #
|
---|
2223 | # RuntimeGuestR3-x86 - Same as RuntimeGuestR3, except that it's targeting x86.
|
---|
2224 | #
|
---|
2225 | RuntimeGuestR3-x86_EXTENDS := RuntimeGuestR3
|
---|
2226 | RuntimeGuestR3-x86_BLD_TRG_ARCH := x86
|
---|
2227 |
|
---|
2228 |
|
---|
2229 | #
|
---|
2230 | # RuntimeGuestR3Shared - Guest Additions Runtime (static/dll).
|
---|
2231 | #
|
---|
2232 | RuntimeGuestR3Shared_TEMPLATE := VBoxGuestR3Dll
|
---|
2233 | RuntimeGuestR3Shared_EXTENDS := RuntimeGuestR3
|
---|
2234 | RuntimeGuestR3Shared_INST = $(INST_ADDITIONS_LIB)
|
---|
2235 |
|
---|
2236 |
|
---|
2237 | #
|
---|
2238 | # RuntimeGuestR3Shared-x86 - Same as RuntimeGuestR3Shared, except that it's targeting x86.
|
---|
2239 | #
|
---|
2240 | RuntimeGuestR3Shared-x86_EXTENDS := RuntimeGuestR3Shared
|
---|
2241 | RuntimeGuestR3Shared-x86_BLD_TRG_ARCH := x86
|
---|
2242 |
|
---|
2243 |
|
---|
2244 | #
|
---|
2245 | # VBoxRT - Shared Object / DLL version.
|
---|
2246 | #
|
---|
2247 | VBoxRT_TEMPLATE = VBoxR3DllNoPic
|
---|
2248 | VBoxRT_SDKS = VBOX_LIBXML2
|
---|
2249 | ifdef VBOX_WITH_LIBCURL
|
---|
2250 | VBoxRT_SDKS += VBOX_LIBCURL
|
---|
2251 | endif
|
---|
2252 | VBoxRT_SDKS += VBOX_OPENSSL
|
---|
2253 | VBoxRT_SDKS.win = $(VBOX_WINPSDK) $(VBOX_WINDDK) VBOX_NTDLL
|
---|
2254 | if1of ($(KBUILD_TARGET), win)
|
---|
2255 | VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE) $(VBOX_INST_TOOLS)
|
---|
2256 | else if1of ($(KBUILD_TARGET)$(VBOX_WITH_HARDENING), darwin win$(VBOX_WITH_HARDENING))
|
---|
2257 | VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE)
|
---|
2258 | endif
|
---|
2259 | VBoxRT_DEFS := $(filter-out RT_NO_GIP, $(RuntimeR3_DEFS)) \
|
---|
2260 | IPRT_WITH_OPENSSL \
|
---|
2261 | IPRT_WITH_XAR \
|
---|
2262 | IPRT_WITH_GHIDRA_DBG_MOD \
|
---|
2263 | $(if-expr !defined(VBOX_WITH_ALT_HASH_CODE),IPRT_WITHOUT_SHA512T224 IPRT_WITHOUT_SHA512T256,)
|
---|
2264 | ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
2265 | VBoxRT_DEFS += RT_NO_GIP
|
---|
2266 | endif
|
---|
2267 | ifdef VBOX_WITH_LIBCURL
|
---|
2268 | VBoxRT_DEFS += IPRT_WITH_HTTP
|
---|
2269 | endif
|
---|
2270 | ifdef RTALLOC_REPLACE_MALLOC
|
---|
2271 | VBoxRT_DEFS += RTALLOC_REPLACE_MALLOC
|
---|
2272 | endif
|
---|
2273 | ifdef VBOX_WITH_DTRACE_R3
|
---|
2274 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
2275 | VBoxRT_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_INCLUDE="dtrace/iprt.h"
|
---|
2276 | else
|
---|
2277 | VBoxRT_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_INCLUDE=\"dtrace/iprt.h\"
|
---|
2278 | endif
|
---|
2279 | endif
|
---|
2280 | VBoxRT_DEFS.$(KBUILD_TYPE) := $(RuntimeR3_DEFS.$(KBUILD_TYPE))
|
---|
2281 | VBoxRT_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
|
---|
2282 | VBoxRT_SOURCES := \
|
---|
2283 | VBox/VBoxRTDeps.cpp \
|
---|
2284 | $(filter-out common/checksum/crc32.cpp, \
|
---|
2285 | $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeR3_SOURCES), \
|
---|
2286 | $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeR3_SOURCES)) ) ) \
|
---|
2287 | common/checksum/crc32-zlib.cpp \
|
---|
2288 | common/dbg/dbgmodghidra.cpp \
|
---|
2289 | common/fuzz/fuzz.cpp \
|
---|
2290 | common/fuzz/fuzz-config.cpp \
|
---|
2291 | common/fuzz/fuzz-observer.cpp \
|
---|
2292 | common/fuzz/fuzz-target-recorder.cpp \
|
---|
2293 | common/fuzz/fuzzmastercmd.cpp \
|
---|
2294 | common/fuzz/fuzzclientcmd.cpp
|
---|
2295 | ifneq ($(KBUILD_TARGET),win)
|
---|
2296 | VBox/VBoxRTDeps.cpp_CXXFLAGS = -Wno-deprecated-declarations
|
---|
2297 | endif
|
---|
2298 | ifdef VBOX_WITH_LIBCURL
|
---|
2299 | VBoxRT_SOURCES += \
|
---|
2300 | common/misc/s3.cpp \
|
---|
2301 | generic/http-curl.cpp \
|
---|
2302 | common/rest/rest-primary-object-types.cpp \
|
---|
2303 | common/rest/rest-binary.cpp \
|
---|
2304 | common/rest/RTCRestAnyObject.cpp \
|
---|
2305 | common/rest/RTCRestArrayBase.cpp \
|
---|
2306 | common/rest/RTCRestClientApiBase.cpp \
|
---|
2307 | common/rest/RTCRestClientApiBaseOci.cpp \
|
---|
2308 | common/rest/RTCRestClientRequestBase.cpp \
|
---|
2309 | common/rest/RTCRestClientResponseBase.cpp \
|
---|
2310 | common/rest/RTCRestJsonPrimaryCursor.cpp \
|
---|
2311 | common/rest/RTCRestStringMapBase.cpp \
|
---|
2312 | common/rest/RTCRestOutputBase.cpp \
|
---|
2313 | common/rest/RTCRestOutputPrettyBase.cpp \
|
---|
2314 | common/rest/RTCRestOutputPrettyToString.cpp \
|
---|
2315 | common/rest/RTCRestOutputToString.cpp
|
---|
2316 | endif
|
---|
2317 | ifdef VBOX_WITH_DTRACE_R3
|
---|
2318 | VBoxRT_SOURCES += \
|
---|
2319 | iprt.d
|
---|
2320 | endif
|
---|
2321 | VBoxRT_SOURCES.$(KBUILD_TARGET) = $(RuntimeR3_SOURCES.$(KBUILD_TARGET))
|
---|
2322 | VBoxRT_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
|
---|
2323 | VBoxRT_SOURCES.$(KBUILD_TARGET).x86 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).x86)
|
---|
2324 | VBoxRT_SOURCES.$(KBUILD_TARGET).amd64 := $(RuntimeR3_SOURCES.$(KBUILD_TARGET).amd64)
|
---|
2325 | VBoxRT_SOURCES.$(KBUILD_TARGET_ARCH) := $(RuntimeR3_SOURCES.$(KBUILD_TARGET_ARCH))
|
---|
2326 | VBoxRT_SOURCES.x86 := $(RuntimeR3_SOURCES.x86)
|
---|
2327 | VBoxRT_SOURCES.amd64 := $(RuntimeR3_SOURCES.amd64)
|
---|
2328 | VBoxRT_SOURCES.win += \
|
---|
2329 | r3/win/dllmain-win.cpp \
|
---|
2330 | $(VBoxRT_0_OUTDIR)/VBoxRT.def
|
---|
2331 | VBoxRT_INCS := $(RuntimeR3_INCS)
|
---|
2332 | VBoxRT_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
|
---|
2333 | VBoxRT_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) := $(RuntimeR3_INCS.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH))
|
---|
2334 | VBoxRT_LIBS = \
|
---|
2335 | $(SDK_VBOX_LZF_LIBS) \
|
---|
2336 | $(PATH_STAGE_LIB)/SUPR3$(VBOX_SUFF_LIB)
|
---|
2337 | ifndef SDK_VBOX_LIBXML2_LIBS
|
---|
2338 | VBoxRT_LIBS += \
|
---|
2339 | $(PATH_STAGE_LIB)/VBox-libxml2$(VBOX_SUFF_LIB)
|
---|
2340 | endif
|
---|
2341 | VBoxRT_LIBS += \
|
---|
2342 | $(SDK_VBOX_ZLIB_LIBS)
|
---|
2343 | ifndef SDK_VBOX_OPENSSL_LIBS
|
---|
2344 | VBoxRT_LIBS += \
|
---|
2345 | $(PATH_STAGE_LIB)/VBox-libcrypto$(VBOX_SUFF_LIB) \
|
---|
2346 | $(PATH_STAGE_LIB)/VBox-libssl$(VBOX_SUFF_LIB)
|
---|
2347 | endif
|
---|
2348 | ifdef IPRT_WITH_LZO
|
---|
2349 | VBoxRT_LIBS += lzo2
|
---|
2350 | endif
|
---|
2351 | ifdef RTALLOC_REPLACE_MALLOC
|
---|
2352 | VBoxRT_LIBS += \
|
---|
2353 | $(PATH_STAGE_LIB)/DisasmR3$(VBOX_SUFF_LIB)
|
---|
2354 | endif
|
---|
2355 | VBoxRT_LIBS.darwin = \
|
---|
2356 | iconv
|
---|
2357 | VBoxRT_LIBS.freebsd = \
|
---|
2358 | iconv \
|
---|
2359 | rt
|
---|
2360 | VBoxRT_LIBS.haiku = \
|
---|
2361 | iconv
|
---|
2362 | VBoxRT_LIBS.solaris = \
|
---|
2363 | kstat \
|
---|
2364 | contract
|
---|
2365 | ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
|
---|
2366 | # SMBIOS not available on Solaris SPARC.
|
---|
2367 | VBoxRT_LIBS.solaris += smbios
|
---|
2368 | endif
|
---|
2369 | VBoxRT_LIBS.win += \
|
---|
2370 | $(PATH_SDK_$(VBOX_WINPSDK)_LIB)/wbemuuid.lib \
|
---|
2371 | $(PATH_TOOL_$(VBOX_VCC_TOOL)_LIB)/delayimp.lib
|
---|
2372 | VBoxRT_LDFLAGS.darwin = \
|
---|
2373 | -framework IOKit \
|
---|
2374 | -framework CoreFoundation \
|
---|
2375 | -framework CoreServices \
|
---|
2376 | -framework Security \
|
---|
2377 | -framework SystemConfiguration \
|
---|
2378 | -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxRT.dylib
|
---|
2379 | VBoxRT_LDFLAGS.win = /MANIFEST \
|
---|
2380 | /delayload:user32.dll \
|
---|
2381 | /delayload:shell32.dll \
|
---|
2382 | /delayload:ole32.dll \
|
---|
2383 | /delayload:oleaut32.dll \
|
---|
2384 | /delayload:advapi32.dll
|
---|
2385 |
|
---|
2386 | if1of ($(DLLS), VBoxRT)
|
---|
2387 | VBoxRT_CLEAN += $(VBoxRT_0_OUTDIR)/VBoxRT.def
|
---|
2388 | $$(VBoxRT_0_OUTDIR)/VBoxRT.def: \
|
---|
2389 | $(PATH_SUB_CURRENT)/r3/win/VBoxRT-$$(if-expr $$(KBUILD_TARGET_ARCH) == amd64,win64,win32).def \
|
---|
2390 | $(if-expr defined(VBOX_WITH_OPENSSL_PRE_1_1)\
|
---|
2391 | ,$(PATH_SUB_CURRENT)/r3/win/VBoxRT-openssl-pre-1.1.def \
|
---|
2392 | ,$(PATH_SUB_CURRENT)/r3/win/VBoxRT-openssl-1.1plus.def )\
|
---|
2393 | $(if-expr "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86" && defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES)\
|
---|
2394 | ,$(PATH_SUB_CURRENT)/r3/win/VBoxRT-msvcr100-win32.def ,) \
|
---|
2395 | | $$(dir $$@) #$(PATH_SUB_CURRENT)/r3/win/VBoxRT-msvcp100-win32.def
|
---|
2396 | $(RM) -f -- $@
|
---|
2397 | $(REDIRECT) -wto $@ -- $(CAT_EXT) $^
|
---|
2398 | endif
|
---|
2399 |
|
---|
2400 | if1of (VBoxRT,$(DLLS))
|
---|
2401 | $(call VBOX_SET_VER_INFO_DLL,VBoxRT,VirtualBox Runtime)
|
---|
2402 | endif
|
---|
2403 |
|
---|
2404 |
|
---|
2405 | if defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES) && "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86"
|
---|
2406 | #
|
---|
2407 | # Hacks for running tests on NT 4. Really ugly!
|
---|
2408 | #
|
---|
2409 | # We put most of the CRT in VBoxRT because we cannot even load msvcr100.dll
|
---|
2410 | # or msvcp100.dll on NT4 because of kernel32.dll dependencies. More hacks
|
---|
2411 | # in RuntimeR3VccTricks.
|
---|
2412 | #
|
---|
2413 | TEMPLATE_VBoxR3RuntimeDllItself = xx
|
---|
2414 | TEMPLATE_VBoxR3RuntimeDllItself_EXTENDS = VBoxR3RuntimeDll
|
---|
2415 | TEMPLATE_VBoxR3RuntimeDllItself_LIBS.win.x86 = \
|
---|
2416 | $(filter-out $(PATH_STAGE_LIB)/RuntimeR3VccTricks%, $(TEMPLATE_VBoxR3RuntimeDll_LIBS.win.x86))
|
---|
2417 | TEMPLATE_VBoxR3RuntimeDllItself_SOURCES = \
|
---|
2418 | r3/win/vcc-fakes-kernel32.cpp \
|
---|
2419 | r3/win/vcc-fakes-kernel32-fakesA.asm \
|
---|
2420 | r3/win/vcc-fakes-ws2_32.cpp \
|
---|
2421 | r3/win/vcc-fakes-ws2_32-fakesA.asm \
|
---|
2422 | r3/win/vcc-fakes-ntdll.cpp \
|
---|
2423 | r3/win/vcc-fakes-ntdll-fakesA.asm \
|
---|
2424 | r3/win/vcc-fakes-msvcrt.cpp
|
---|
2425 | VBoxRT_TEMPLATE = VBoxR3RuntimeDllItself
|
---|
2426 | VBoxRT_TEMPLATE.win.x86 = VBoxR3RuntimeDllItself
|
---|
2427 | VBoxRT_DEFS.win.x86 = $(TEMPLATE_VBoxR3RuntimeDll_DEFS.win.x86) \
|
---|
2428 | _CRTIMP_PURE="__declspec(dllexport)" VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
|
---|
2429 | VBoxRT_LDFLAGS.win.x86 = /IGNORE:4049 /IGNORE:4217
|
---|
2430 | VBoxRT_LIBS.win.x86 = \
|
---|
2431 | $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/oldnames.lib \
|
---|
2432 | $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/libcmt.lib \
|
---|
2433 | $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/libcpmt.lib
|
---|
2434 | endif
|
---|
2435 |
|
---|
2436 |
|
---|
2437 | #
|
---|
2438 | # HACK ALERT! Make testcase run during build on SELinux boxes.
|
---|
2439 | # Create a dummy DLL that ensure that VBoxRT is installed
|
---|
2440 | # during the DLL pass and cleaned up later.
|
---|
2441 | #
|
---|
2442 | ifeq ($(KBUILD_TARGET),linux)
|
---|
2443 | if1of (VBoxRT, $(DLLS))
|
---|
2444 | ifneq ($(wildcard /usr/bin/chcon),)
|
---|
2445 | VBoxRT_INSTTYPE = none
|
---|
2446 | VBoxRT_DEBUG_INSTTYPE = both
|
---|
2447 |
|
---|
2448 | VBoxRT-x86_INSTTYPE = $(NO_SUCH_VARIABLE)
|
---|
2449 |
|
---|
2450 | DLLS += VBoxRTDummy
|
---|
2451 | VBoxRTDummy_TEMPLATE = VBoxR3Dll
|
---|
2452 | VBoxRTDummy_INSTTYPE = none
|
---|
2453 | VBoxRTDummy_LIBS = $(PATH_STAGE_BIN)/VBoxRT.so
|
---|
2454 | VBoxRTDummy_CLEAN = $(PATH_STAGE_BIN)/VBoxRT.so
|
---|
2455 | BLDDIRS += $(PATH_STAGE_BIN)
|
---|
2456 |
|
---|
2457 | $(PATH_STAGE_BIN)/VBoxRT.so: $$(VBoxRT_1_TARGET) | $$(dir $$@)
|
---|
2458 | $(INSTALL) $< $@
|
---|
2459 | chcon -t texrel_shlib_t $@ || true
|
---|
2460 |
|
---|
2461 | VBoxRT:: VBoxRTDummy
|
---|
2462 | endif # chcon present.
|
---|
2463 | endif # building VBoxRT
|
---|
2464 | endif # linux
|
---|
2465 |
|
---|
2466 |
|
---|
2467 | #
|
---|
2468 | # VBoxRT-x86 - 32-bit version of VBoxRT
|
---|
2469 | #
|
---|
2470 | VBoxRT-x86_EXTENDS = VBoxRT
|
---|
2471 | VBoxRT-x86_TEMPLATE = VBoxR3Dll-x86
|
---|
2472 | VBoxRT-x86_INST.win = $(INST_DLL)x86/
|
---|
2473 | VBoxRT-x86_SDKS = VBOX_LIBXML2
|
---|
2474 | ifdef VBOX_WITH_LIBCURL
|
---|
2475 | VBoxRT-x86_SDKS += VBOX_LIBCURL-x86
|
---|
2476 | endif
|
---|
2477 | VBoxRT-x86_SDKS += VBOX_OPENSSL-x86
|
---|
2478 |
|
---|
2479 | VBoxRT-x86_LIBS = \
|
---|
2480 | $(SDK_VBOX_LZF_LIBS-x86)
|
---|
2481 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
2482 | VBoxRT-x86_LIBS += \
|
---|
2483 | $(PATH_STAGE_LIB)/SUPR3-x86$(VBOX_SUFF_LIB)
|
---|
2484 | endif
|
---|
2485 | ifndef SDK_VBOX_LIBXML2_LIBS
|
---|
2486 | VBoxRT-x86_LIBS += \
|
---|
2487 | $(PATH_STAGE_LIB)/VBox-libxml2-x86$(VBOX_SUFF_LIB)
|
---|
2488 | endif
|
---|
2489 | VBoxRT-x86_LIBS += \
|
---|
2490 | $(SDK_VBOX_ZLIB_LIBS-x86)
|
---|
2491 | ifndef SDK_VBOX_OPENSSL_LIBS
|
---|
2492 | VBoxRT-x86_LIBS += \
|
---|
2493 | $(PATH_STAGE_LIB)/VBox-libcrypto-x86$(VBOX_SUFF_LIB) \
|
---|
2494 | $(PATH_STAGE_LIB)/VBox-libssl-x86$(VBOX_SUFF_LIB)
|
---|
2495 | endif
|
---|
2496 | ifdef IPRT_WITH_LZO
|
---|
2497 | VBoxRT-x86_LIBS += lzo2
|
---|
2498 | endif
|
---|
2499 | VBoxRT-x86_LIBS.darwin = \
|
---|
2500 | iconv
|
---|
2501 | VBoxRT-x86_LIBS.freebsd = \
|
---|
2502 | iconv \
|
---|
2503 | rt
|
---|
2504 | VBoxRT-x86_LIBS.haiku = \
|
---|
2505 | iconv
|
---|
2506 | VBoxRT-x86_LIBS.solaris = \
|
---|
2507 | kstat \
|
---|
2508 | contract
|
---|
2509 | ifn1of ($(KBUILD_TARGET_ARCH), sparc32 sparc64)
|
---|
2510 | # SMBIOS not available on Solaris SPARC.
|
---|
2511 | VBoxRT-x86_LIBS.solaris += smbios
|
---|
2512 | endif
|
---|
2513 | VBoxRT-x86_LIBS.win += \
|
---|
2514 | $(PATH_SDK_$(VBOX_WINPSDK)_LIB.x86)/wbemuuid.lib \
|
---|
2515 | $(PATH_TOOL_$(VBOX_VCC_TOOL_STEM)X86_LIB)/delayimp.lib
|
---|
2516 |
|
---|
2517 | VBoxRT-x86_SOURCES.win = $(filter-out %.def %.rc,$(VBoxRT_SOURCES.win)) \
|
---|
2518 | $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def
|
---|
2519 | VBoxRT-x86_CLEAN += $(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def
|
---|
2520 | if1of ($(DLLS), VBoxRT-x86)
|
---|
2521 | $$(VBoxRT-x86_0_OUTDIR)/VBoxRT-x86.def: \
|
---|
2522 | $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win32.def \
|
---|
2523 | | $$(dir $$@) # Hopefully no need to export openssl here.
|
---|
2524 | $(RM) -f -- $@
|
---|
2525 | $(REDIRECT) -wto $@ -- $(CAT_EXT) $^
|
---|
2526 | endif
|
---|
2527 |
|
---|
2528 | if1of (VBoxRT-x86,$(DLLS))
|
---|
2529 | $(call VBOX_SET_VER_INFO_DLL,VBoxRT-x86,VirtualBox 32-bit Runtime)
|
---|
2530 | endif
|
---|
2531 |
|
---|
2532 | #
|
---|
2533 | # VBoxRTImp - Import library/hack.
|
---|
2534 | #
|
---|
2535 | ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
|
---|
2536 | $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-vcc64.def r3/win/VBoxRT-win64.def)
|
---|
2537 | else ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
|
---|
2538 | $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-vcc32.def r3/win/VBoxRT-win32.def)
|
---|
2539 | else
|
---|
2540 | $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxRTImp,VBoxRT,VBox/VBoxRTImp.def VBox/VBoxRTImp-gcc.def)
|
---|
2541 | endif
|
---|
2542 |
|
---|
2543 |
|
---|
2544 | if1of ($(KBUILD_TARGET),win linux darwin) # remove later
|
---|
2545 | if1of ($(KBUILD_TARGET_ARCH),x86 amd64) ## @todo bugref:9898
|
---|
2546 | if1of (VBoxRT,$(DLLS))
|
---|
2547 | #
|
---|
2548 | # VBoxRTImpCheck - Import library check.
|
---|
2549 | #
|
---|
2550 | PROGRAMS += VBoxRTStableCheck
|
---|
2551 | VBoxRTStableCheck_TEMPLATE = VBOXR3TSTEXE
|
---|
2552 | VBoxRTStableCheck_SOURCES = \
|
---|
2553 | VBox/VBoxRTStableCheck.cpp \
|
---|
2554 | $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm
|
---|
2555 | VBoxRTStableCheck_LIBS = \
|
---|
2556 | $(LIB_RUNTIME)
|
---|
2557 | VBoxRTStableCheck_CLEAN = \
|
---|
2558 | $(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm
|
---|
2559 | ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.amd64)
|
---|
2560 | $$(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
|
---|
2561 | $(PATH_SUB_CURRENT)/VBox/DefToAsmExterns.sed \
|
---|
2562 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
|
---|
2563 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-vcc64.def \
|
---|
2564 | $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win64.def \
|
---|
2565 | | $$(dir $$@)
|
---|
2566 | else ifeq ($(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),win.x86)
|
---|
2567 | $$(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
|
---|
2568 | $(PATH_SUB_CURRENT)/VBox/DefToAsmExternsVcc32.sed \
|
---|
2569 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
|
---|
2570 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-vcc32.def \
|
---|
2571 | $(PATH_SUB_CURRENT)/r3/win/VBoxRT-win32.def | $$(dir $$@)
|
---|
2572 | else
|
---|
2573 | $$(VBoxRTStableCheck_0_OUTDIR)/VBoxRTStableCheckA.asm: \
|
---|
2574 | $(PATH_SUB_CURRENT)/VBox/DefToAsmExterns.sed \
|
---|
2575 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp.def \
|
---|
2576 | $(PATH_SUB_CURRENT)/VBox/VBoxRTImp-gcc.def | $$(dir $$@)
|
---|
2577 | endif
|
---|
2578 | $(APPEND) -tn "$@" '%include "iprt/asmdefs.mac"' ''
|
---|
2579 | $(SED) --append "$@" \
|
---|
2580 | -e "/not-$(KBUILD_TARGET)/d" \
|
---|
2581 | $(if-expr "$(KBUILD_TARGET)" == "linux" ,, -e "/only-linux/d") \
|
---|
2582 | $(if-expr "$(KBUILD_TARGET)" == "win" ,, -e "/only-win/d") \
|
---|
2583 | $(if-expr "$(KBUILD_TARGET)" == "darwin",, -e "/only-darwin/d") \
|
---|
2584 | -f "$<" $(filter %.def, $^)
|
---|
2585 | endif
|
---|
2586 | endif ## @todo bugref:9898
|
---|
2587 | endif # remove later
|
---|
2588 |
|
---|
2589 |
|
---|
2590 | #
|
---|
2591 | # RuntimeR3NoCRTGCC - CRT replacement lib for VBoxREM.
|
---|
2592 | # This is used together with VBoxRT.
|
---|
2593 | #
|
---|
2594 | ## @todo the *_alias.c stuff is busted, remove and use RT_WITH_NOCRT_ALIASES instead.
|
---|
2595 | RuntimeR3NoCRTGCC_TEMPLATE = VBoxNoCrtGccLib
|
---|
2596 | RuntimeR3NoCRTGCC_LIBSUFF = $(VBOX_SUFF_LIB)
|
---|
2597 | ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
2598 | RuntimeR3NoCRTGCC_DEFS += RT_NO_GIP
|
---|
2599 | endif
|
---|
2600 | RuntimeR3NoCRTGCC_INCS = include
|
---|
2601 | RuntimeR3NoCRTGCC_SOURCES := \
|
---|
2602 | common/misc/sanity-cpp.cpp \
|
---|
2603 | common/misc/sanity-c.c \
|
---|
2604 | \
|
---|
2605 | $(RuntimeNoCrt_SOURCES)
|
---|
2606 |
|
---|
2607 | if1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
2608 | RuntimeR3NoCRTGCC_SOURCES += \
|
---|
2609 | common/math/ceill.asm \
|
---|
2610 | common/math/cosl.asm \
|
---|
2611 | common/math/fabs.asm \
|
---|
2612 | common/math/fabsf.asm \
|
---|
2613 | common/math/fabsl.asm \
|
---|
2614 | common/math/floor.asm \
|
---|
2615 | common/math/floorf.asm \
|
---|
2616 | common/math/floorl.asm \
|
---|
2617 | common/math/ldexpl.asm \
|
---|
2618 | common/math/llrint.asm \
|
---|
2619 | common/math/llrintf.asm \
|
---|
2620 | common/math/llrintl.asm \
|
---|
2621 | common/math/logl.asm \
|
---|
2622 | common/math/lrint.asm \
|
---|
2623 | common/math/lrintf.asm \
|
---|
2624 | common/math/lrintl.asm \
|
---|
2625 | common/math/remainder.asm \
|
---|
2626 | common/math/remainderf.asm \
|
---|
2627 | common/math/remainderl.asm \
|
---|
2628 | common/math/sinl.asm \
|
---|
2629 | common/math/tanl.asm \
|
---|
2630 | common/math/trunc.asm \
|
---|
2631 | common/math/truncf.asm \
|
---|
2632 | common/math/truncl.asm \
|
---|
2633 | \
|
---|
2634 | common/string/memchr_alias.c \
|
---|
2635 | common/string/memcmp_alias.c \
|
---|
2636 | common/string/memcpy_alias.c \
|
---|
2637 | common/string/memmove_alias.c \
|
---|
2638 | common/string/memset_alias.c \
|
---|
2639 | common/string/strchr_alias.c \
|
---|
2640 | common/string/strcmp_alias.c \
|
---|
2641 | common/string/strlen_alias.c
|
---|
2642 | endif
|
---|
2643 |
|
---|
2644 | RuntimeR3NoCRTGCC_SOURCES.x86 = \
|
---|
2645 | common/math/x86/fenv-x86.c \
|
---|
2646 | common/math/gcc/adddi3.c \
|
---|
2647 | common/math/gcc/anddi3.c \
|
---|
2648 | common/math/gcc/ashldi3.c \
|
---|
2649 | common/math/gcc/ashrdi3.c \
|
---|
2650 | common/math/gcc/cmpdi2.c \
|
---|
2651 | common/math/gcc/divdi3.c \
|
---|
2652 | common/math/gcc/divmoddi4.c \
|
---|
2653 | common/math/gcc/iordi3.c \
|
---|
2654 | common/math/gcc/lshldi3.c \
|
---|
2655 | common/math/gcc/lshrdi3.c \
|
---|
2656 | common/math/gcc/moddi3.c \
|
---|
2657 | common/math/gcc/muldi3.c \
|
---|
2658 | common/math/gcc/negdi2.c \
|
---|
2659 | common/math/gcc/notdi2.c \
|
---|
2660 | common/math/gcc/qdivrem.c \
|
---|
2661 | common/math/gcc/subdi3.c \
|
---|
2662 | common/math/gcc/ucmpdi2.c \
|
---|
2663 | common/math/gcc/udivdi3.c \
|
---|
2664 | common/math/gcc/udivmoddi4.c \
|
---|
2665 | common/math/gcc/umoddi3.c \
|
---|
2666 | common/math/gcc/xordi3.c
|
---|
2667 |
|
---|
2668 | #
|
---|
2669 | # RuntimeR3NoCRT - For windows applications w/o any runtime library.
|
---|
2670 | # Experimental.
|
---|
2671 | #
|
---|
2672 | RuntimeR3NoCrt_TEMPLATE := VBoxR3StaticNoCrt
|
---|
2673 | RuntimeR3NoCrt_INCS := include
|
---|
2674 | RuntimeR3NoCrt_DEFS := \
|
---|
2675 | RT_NO_STRICT \
|
---|
2676 | IPRT_NO_ALLOCA_TROUBLE \
|
---|
2677 | IPRT_GETOPT_WITHOUT_NETWORK_ADDRESSES
|
---|
2678 | RuntimeR3NoCrt_SOURCES := \
|
---|
2679 | common/string/straprintf.cpp \
|
---|
2680 | common/string/strformat.cpp \
|
---|
2681 | common/string/RTStrFormat.cpp \
|
---|
2682 | common/string/strformatnum.cpp \
|
---|
2683 | common/string/strformatrt.cpp \
|
---|
2684 | common/string/strformattype.cpp \
|
---|
2685 | common/string/strprintf.cpp \
|
---|
2686 | common/string/strprintf-ellipsis.cpp \
|
---|
2687 | common/string/strprintf2.cpp \
|
---|
2688 | common/string/strprintf2-ellipsis.cpp \
|
---|
2689 | common/string/stringalloc.cpp \
|
---|
2690 | common/string/strtonum.cpp \
|
---|
2691 | common/string/RTStrNLen.cpp \
|
---|
2692 | common/string/RTStrCmp.cpp \
|
---|
2693 | common/string/RTStrNCmp.cpp \
|
---|
2694 | common/string/RTStrICmpAscii.cpp \
|
---|
2695 | common/string/RTStrNICmpAscii.cpp \
|
---|
2696 | common/string/RTStrCopy.cpp \
|
---|
2697 | common/string/RTStrEnd.asm \
|
---|
2698 | common/string/RTUtf16Copy.cpp \
|
---|
2699 | common/string/utf-16.cpp \
|
---|
2700 | common/string/utf-8.cpp \
|
---|
2701 | common/path/RTPathFilename.cpp \
|
---|
2702 | common/misc/getopt.cpp \
|
---|
2703 | common/misc/getoptargv.cpp \
|
---|
2704 | common/misc/message.cpp \
|
---|
2705 | common/err/errmsg.cpp \
|
---|
2706 | generic/uuid-generic.cpp \
|
---|
2707 | generic/rtStrFormatKernelAddress-generic.cpp
|
---|
2708 |
|
---|
2709 | RuntimeR3NoCrt_SOURCES.x86 := \
|
---|
2710 | common/string/memcpy.asm \
|
---|
2711 | common/string/memchr.asm \
|
---|
2712 | common/string/memcmp.asm \
|
---|
2713 | common/string/memmove.asm \
|
---|
2714 | common/string/memset.asm \
|
---|
2715 | common/string/strlen.asm \
|
---|
2716 | common/string/strchr.asm \
|
---|
2717 | common/string/strcmp.asm \
|
---|
2718 | common/string/strncmp.asm
|
---|
2719 | RuntimeR3NoCrt_SOURCES.amd64 := \
|
---|
2720 | common/string/memcpy.asm \
|
---|
2721 | common/string/memchr.asm \
|
---|
2722 | common/string/memcmp.asm \
|
---|
2723 | common/string/memmove.asm \
|
---|
2724 | common/string/memset.asm \
|
---|
2725 | common/string/strlen.asm \
|
---|
2726 | common/string/strchr.asm \
|
---|
2727 | common/string/strcmp.asm \
|
---|
2728 | common/string/strncmp.asm \
|
---|
2729 |
|
---|
2730 | RuntimeR3NoCrt_SOURCES.win := \
|
---|
2731 | r3/win/nocrt-startup-exe-win.cpp \
|
---|
2732 | r3/win/nocrt-alloc-win.cpp \
|
---|
2733 | r3/win/nocrt-streams-win.cpp \
|
---|
2734 | \
|
---|
2735 | win/errmsgwin.cpp
|
---|
2736 |
|
---|
2737 | #
|
---|
2738 | # RuntimeR0 - Ring-0 library for VMMR0.
|
---|
2739 | #
|
---|
2740 | RuntimeR0_TEMPLATE = VBoxR0
|
---|
2741 | RuntimeR0_DEFS = IN_RT_R0 RT_WITH_VBOX NOFILEID
|
---|
2742 | ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86)
|
---|
2743 | RuntimeR0_DEFS += RT_NO_GIP
|
---|
2744 | endif
|
---|
2745 | if defined(VBOX_WITH_DTRACE_R0) && !defined(VBOX_ONLY_VALIDATIONKIT)
|
---|
2746 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
2747 | RuntimeR0_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_PREFIX=VBOXVMM_ IPRT_DTRACE_INCLUDE="dtrace/VBoxVMM.h"
|
---|
2748 | else
|
---|
2749 | RuntimeR0_DEFS += IPRT_WITH_DTRACE IPRT_DTRACE_PREFIX=VBOXVMM_ IPRT_DTRACE_INCLUDE=\"dtrace/VBoxVMM.h\"
|
---|
2750 | endif
|
---|
2751 | endif
|
---|
2752 | RuntimeR0_INCS = include
|
---|
2753 | RuntimeR0_SOURCES := \
|
---|
2754 | $(if $(VBOX_ONLY_VALIDATIONKIT),,../VMM/VBoxVMM.d) \
|
---|
2755 | common/log/logellipsis.cpp \
|
---|
2756 | common/log/logrelellipsis.cpp \
|
---|
2757 | common/log/logcom.cpp \
|
---|
2758 | common/log/logformat.cpp \
|
---|
2759 | common/log/tracebuf.cpp \
|
---|
2760 | common/log/tracedefault.cpp \
|
---|
2761 | common/log/RTLogCreateEx.cpp \
|
---|
2762 | common/log/RTLogSetR0ThreadNameF.cpp \
|
---|
2763 | common/misc/RTAssertMsg1Weak.cpp \
|
---|
2764 | common/misc/RTAssertMsg2.cpp \
|
---|
2765 | common/misc/RTAssertMsg2Add.cpp \
|
---|
2766 | common/misc/RTAssertMsg2AddWeak.cpp \
|
---|
2767 | common/misc/RTAssertMsg2AddWeakV.cpp \
|
---|
2768 | common/misc/RTAssertMsg2Weak.cpp \
|
---|
2769 | common/misc/RTAssertMsg2WeakV.cpp \
|
---|
2770 | common/misc/buildconfig.cpp \
|
---|
2771 | common/misc/once.cpp \
|
---|
2772 | common/misc/sanity-c.c \
|
---|
2773 | common/misc/sanity-cpp.cpp \
|
---|
2774 | common/misc/term.cpp \
|
---|
2775 | common/path/RTPathFilename.cpp \
|
---|
2776 | common/string/strprintf-ellipsis.cpp \
|
---|
2777 | common/string/strprintf2-ellipsis.cpp \
|
---|
2778 | common/string/strhash1.cpp \
|
---|
2779 | common/string/strncmp.cpp \
|
---|
2780 | common/string/strpbrk.cpp \
|
---|
2781 | common/string/RTStrCat.cpp \
|
---|
2782 | common/string/RTStrCatEx.cpp \
|
---|
2783 | common/string/RTStrCatP.cpp \
|
---|
2784 | common/string/RTStrCatPEx.cpp \
|
---|
2785 | common/string/RTStrCopyEx.cpp \
|
---|
2786 | common/string/RTStrCopyP.cpp \
|
---|
2787 | common/string/RTStrCopyPEx.cpp \
|
---|
2788 | common/string/RTStrCmp.cpp \
|
---|
2789 | common/string/RTStrICmpAscii.cpp \
|
---|
2790 | common/string/RTStrNICmpAscii.cpp \
|
---|
2791 | common/string/RTStrNLen.cpp \
|
---|
2792 | common/string/RTStrNLenEx.cpp \
|
---|
2793 | common/table/avlgcptr.cpp \
|
---|
2794 | common/table/avlhcphys.cpp \
|
---|
2795 | common/table/avllu32.cpp \
|
---|
2796 | common/table/avlogcphys.cpp \
|
---|
2797 | common/table/avlogcptr.cpp \
|
---|
2798 | common/table/avlohcphys.cpp \
|
---|
2799 | common/table/avloioport.cpp \
|
---|
2800 | common/table/avlpv.cpp \
|
---|
2801 | common/table/avlrogcphys.cpp \
|
---|
2802 | common/table/avlrogcptr.cpp \
|
---|
2803 | common/table/avlroioport.cpp \
|
---|
2804 | common/table/avlroogcptr.cpp \
|
---|
2805 | common/table/avlu32.cpp \
|
---|
2806 | common/table/avlou32.cpp \
|
---|
2807 | common/time/timesup.cpp \
|
---|
2808 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
2809 | generic/critsect-generic.cpp \
|
---|
2810 | generic/critsectrw-generic.cpp \
|
---|
2811 | \
|
---|
2812 | $(RuntimeNoCrt_SOURCES)
|
---|
2813 |
|
---|
2814 | if1of ($(KBUILD_TARGET), darwin solaris freebsd os2)
|
---|
2815 | RuntimeR0_SOURCES += \
|
---|
2816 | common/math/gcc/adddi3.c \
|
---|
2817 | common/math/gcc/anddi3.c \
|
---|
2818 | common/math/gcc/ashldi3.c \
|
---|
2819 | common/math/gcc/ashrdi3.c \
|
---|
2820 | common/math/gcc/cmpdi2.c \
|
---|
2821 | common/math/gcc/divdi3.c \
|
---|
2822 | common/math/gcc/divmoddi4.c \
|
---|
2823 | common/math/gcc/iordi3.c \
|
---|
2824 | common/math/gcc/lshldi3.c \
|
---|
2825 | common/math/gcc/lshrdi3.c \
|
---|
2826 | common/math/gcc/moddi3.c \
|
---|
2827 | common/math/gcc/muldi3.c \
|
---|
2828 | common/math/gcc/negdi2.c \
|
---|
2829 | common/math/gcc/notdi2.c \
|
---|
2830 | common/math/gcc/qdivrem.c \
|
---|
2831 | common/math/gcc/subdi3.c \
|
---|
2832 | common/math/gcc/ucmpdi2.c \
|
---|
2833 | common/math/gcc/udivdi3.c \
|
---|
2834 | common/math/gcc/udivmoddi4.c \
|
---|
2835 | common/math/gcc/umoddi3.c \
|
---|
2836 | common/math/gcc/xordi3.c
|
---|
2837 | endif
|
---|
2838 |
|
---|
2839 | RuntimeR0_SOURCES.x86 += \
|
---|
2840 | common/asm/ASMCpuIdExSlow.asm \
|
---|
2841 | common/asm/ASMAtomicUoAndU64.asm \
|
---|
2842 | common/asm/ASMAtomicUoAndU32.asm \
|
---|
2843 | common/asm/ASMAtomicUoDecU32.asm \
|
---|
2844 | common/asm/ASMAtomicUoIncU32.asm \
|
---|
2845 | common/asm/ASMAtomicUoOrU64.asm \
|
---|
2846 | common/asm/ASMAtomicUoOrU32.asm \
|
---|
2847 | common/asm/ASMAtomicUoXorU32.asm \
|
---|
2848 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
2849 | common/asm/ASMGetXcr0.asm \
|
---|
2850 | common/asm/ASMSetXcr0.asm \
|
---|
2851 | common/asm/ASMXSave.asm \
|
---|
2852 | common/asm/ASMXRstor.asm \
|
---|
2853 | common/asm/ASMFxSave.asm \
|
---|
2854 | common/asm/ASMFxRstor.asm \
|
---|
2855 | common/asm/ASMRdMsrEx.asm \
|
---|
2856 | common/asm/ASMWrMsrEx.asm \
|
---|
2857 | common/string/RTStrEnd.asm
|
---|
2858 | RuntimeR0_SOURCES.amd64 += \
|
---|
2859 | common/asm/ASMCpuIdExSlow.asm \
|
---|
2860 | common/asm/ASMAtomicUoAndU64.asm \
|
---|
2861 | common/asm/ASMAtomicUoAndU32.asm \
|
---|
2862 | common/asm/ASMAtomicUoDecU32.asm \
|
---|
2863 | common/asm/ASMAtomicUoIncU32.asm \
|
---|
2864 | common/asm/ASMAtomicUoOrU64.asm \
|
---|
2865 | common/asm/ASMAtomicUoOrU32.asm \
|
---|
2866 | common/asm/ASMAtomicUoXorU32.asm \
|
---|
2867 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
2868 | common/asm/ASMGetXcr0.asm \
|
---|
2869 | common/asm/ASMSetXcr0.asm \
|
---|
2870 | common/asm/ASMXSave.asm \
|
---|
2871 | common/asm/ASMXRstor.asm \
|
---|
2872 | common/asm/ASMFxSave.asm \
|
---|
2873 | common/asm/ASMFxRstor.asm \
|
---|
2874 | common/asm/ASMRdMsrEx.asm \
|
---|
2875 | common/asm/ASMWrMsrEx.asm \
|
---|
2876 | common/string/RTStrEnd.asm
|
---|
2877 | RuntimeR0_SOURCES.arm32 += \
|
---|
2878 | common/string/RTStrEnd.cpp
|
---|
2879 | RuntimeR0_SOURCES.arm64 += \
|
---|
2880 | common/string/RTStrEnd.cpp
|
---|
2881 | RuntimeR0_SOURCES.sparc32 += \
|
---|
2882 | common/string/RTStrEnd.cpp
|
---|
2883 | RuntimeR0_SOURCES.sparc64 += \
|
---|
2884 | common/string/RTStrEnd.cpp
|
---|
2885 |
|
---|
2886 | #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
|
---|
2887 | # RuntimeR0_SOURCES += common/time/timesupA.asm
|
---|
2888 | #else
|
---|
2889 | RuntimeR0_SOURCES += common/time/timesupref.cpp
|
---|
2890 | #endif
|
---|
2891 |
|
---|
2892 | RuntimeR0_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
|
---|
2893 | RuntimeR0_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES)
|
---|
2894 | RuntimeR0_SOURCES.win = \
|
---|
2895 | nt/NtProcessStartup-stub.cpp
|
---|
2896 |
|
---|
2897 | RuntimeR0_SOURCES.os2 = \
|
---|
2898 | os2/sys0.asm
|
---|
2899 |
|
---|
2900 |
|
---|
2901 | #
|
---|
2902 | # RuntimeR0Stub - Ring-0 context startup stub for Windows and Solaris.
|
---|
2903 | #
|
---|
2904 | RuntimeR0Stub_TEMPLATE = $(if-expr "$(KBUILD_TARGET)" == "solaris",VBoxR0DrvLib,VBoxR0)
|
---|
2905 | RuntimeR0Stub_SOURCES.win = \
|
---|
2906 | nt/NtProcessStartup-stub.cpp
|
---|
2907 | RuntimeR0Stub_SOURCES.solaris = \
|
---|
2908 | r0drv/solaris/modulestub-r0drv-solaris.c
|
---|
2909 |
|
---|
2910 |
|
---|
2911 | #
|
---|
2912 | # RuntimeR0Drv - Ring-0 library for host drivers.
|
---|
2913 | #
|
---|
2914 | RuntimeR0Drv_TEMPLATE = VBoxR0DrvLib
|
---|
2915 | RuntimeR0Drv_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK_INCS) VBOX_OPENSSL
|
---|
2916 | RuntimeR0Drv_DEFS = IN_RT_R0 RT_WITH_VBOX RT_WITHOUT_NOCRT_WRAPPERS RT_NO_EXPORT_SYMBOL NOFILEID
|
---|
2917 | RuntimeR0Drv_DEFS.win = IN_SUP_R0 LDR_ONLY_PE IPRT_WITHOUT_DIGEST_MD4
|
---|
2918 | RuntimeR0Drv_DEFS.darwin= IN_SUP_R0 LDR_ONLY_MACHO IPRT_WITHOUT_DIGEST_MD4 IN_RING0_DRV_ON_DARWIN
|
---|
2919 | if ($(VBOX_SOLARIS_11_UPDATE_VERSION) > 2 \
|
---|
2920 | || ($(VBOX_SOLARIS_11_UPDATE_VERSION) == 2 && $(VBOX_SOLARIS_11_BUILD_VERSION) >= 22))
|
---|
2921 | RuntimeR0Drv_DEFS.solaris += VBOX_NEW_CRASH_DUMP_FORMAT
|
---|
2922 | endif
|
---|
2923 |
|
---|
2924 | RuntimeR0Drv_INCS := $(PATH_SUB_CURRENT) include
|
---|
2925 | RuntimeR0Drv_INCS.freebsd = \
|
---|
2926 | $(PATH_STAGE)/gen-sys-hdrs
|
---|
2927 | RuntimeR0Drv_INCS.solaris = \
|
---|
2928 | r0drv/solaris/vbi/i86pc \
|
---|
2929 | r0drv/solaris/vbi/i86pc/sys
|
---|
2930 |
|
---|
2931 | RuntimeR0Drv_SOURCES = \
|
---|
2932 | common/alloc/alloc.cpp \
|
---|
2933 | common/alloc/heapsimple.cpp \
|
---|
2934 | common/alloc/heapoffset.cpp \
|
---|
2935 | common/checksum/alt-md5.cpp \
|
---|
2936 | common/checksum/crc32.cpp \
|
---|
2937 | common/checksum/crc64.cpp \
|
---|
2938 | common/checksum/ipv4.cpp \
|
---|
2939 | common/checksum/ipv6.cpp \
|
---|
2940 | common/err/RTErrConvertToErrno.cpp \
|
---|
2941 | common/err/RTErrConvertFromErrno.cpp \
|
---|
2942 | common/err/errinfo.cpp \
|
---|
2943 | common/log/log.cpp \
|
---|
2944 | common/log/logellipsis.cpp \
|
---|
2945 | common/log/logrel.cpp \
|
---|
2946 | common/log/logrelellipsis.cpp \
|
---|
2947 | common/log/logcom.cpp \
|
---|
2948 | common/log/logformat.cpp \
|
---|
2949 | common/log/tracebuf.cpp \
|
---|
2950 | common/log/tracedefault.cpp \
|
---|
2951 | common/log/RTLogCreateEx.cpp \
|
---|
2952 | common/misc/RTAssertMsg1Weak.cpp \
|
---|
2953 | common/misc/RTAssertMsg2.cpp \
|
---|
2954 | common/misc/RTAssertMsg2Add.cpp \
|
---|
2955 | common/misc/RTAssertMsg2AddWeak.cpp \
|
---|
2956 | common/misc/RTAssertMsg2AddWeakV.cpp \
|
---|
2957 | common/misc/RTAssertMsg2Weak.cpp \
|
---|
2958 | common/misc/RTAssertMsg2WeakV.cpp \
|
---|
2959 | common/misc/assert.cpp \
|
---|
2960 | common/misc/buildconfig.cpp \
|
---|
2961 | common/misc/handletable.cpp \
|
---|
2962 | common/misc/handletablectx.cpp \
|
---|
2963 | common/misc/handletablesimple.cpp \
|
---|
2964 | common/misc/once.cpp \
|
---|
2965 | common/misc/sanity-c.c \
|
---|
2966 | common/misc/sanity-cpp.cpp \
|
---|
2967 | common/misc/term.cpp \
|
---|
2968 | common/misc/RTMemWipeThoroughly.cpp \
|
---|
2969 | common/path/rtPathVolumeSpecLen.cpp \
|
---|
2970 | common/path/RTPathAbsDup.cpp \
|
---|
2971 | common/path/RTPathAbsEx.cpp \
|
---|
2972 | common/path/RTPathAbsExDup.cpp \
|
---|
2973 | common/path/RTPathAppend.cpp \
|
---|
2974 | common/path/RTPathAppendEx.cpp \
|
---|
2975 | common/path/RTPathExt.cpp \
|
---|
2976 | common/path/RTPathFilename.cpp \
|
---|
2977 | common/path/RTPathHasExt.cpp \
|
---|
2978 | common/path/RTPathHasPath.cpp \
|
---|
2979 | common/path/RTPathParseSimple.cpp \
|
---|
2980 | common/path/RTPathRealDup.cpp \
|
---|
2981 | common/path/RTPathStripExt.cpp \
|
---|
2982 | common/path/RTPathStripFilename.cpp \
|
---|
2983 | common/path/RTPathStripTrailingSlash.cpp \
|
---|
2984 | common/rand/rand.cpp \
|
---|
2985 | common/rand/randadv.cpp \
|
---|
2986 | common/rand/randparkmiller.cpp \
|
---|
2987 | common/string/RTStrCat.cpp \
|
---|
2988 | common/string/RTStrCatEx.cpp \
|
---|
2989 | common/string/RTStrCatP.cpp \
|
---|
2990 | common/string/RTStrCatPEx.cpp \
|
---|
2991 | common/string/RTStrCmp.cpp \
|
---|
2992 | common/string/RTStrCopy.cpp \
|
---|
2993 | common/string/RTStrCopyEx.cpp \
|
---|
2994 | common/string/RTStrCopyP.cpp \
|
---|
2995 | common/string/RTStrCopyPEx.cpp \
|
---|
2996 | common/string/RTStrICmpAscii.cpp \
|
---|
2997 | common/string/RTStrNICmpAscii.cpp \
|
---|
2998 | common/string/RTStrNCmp.cpp \
|
---|
2999 | common/string/RTStrNLen.cpp \
|
---|
3000 | common/string/RTStrNLenEx.cpp \
|
---|
3001 | common/string/RTUtf16ICmpAscii.cpp \
|
---|
3002 | common/string/RTUtf16NICmpAscii.cpp \
|
---|
3003 | common/string/straprintf.cpp \
|
---|
3004 | common/string/strformat.cpp \
|
---|
3005 | common/string/RTStrFormat.cpp \
|
---|
3006 | common/string/strformatnum.cpp \
|
---|
3007 | common/string/strformatrt.cpp \
|
---|
3008 | common/string/strformattype.cpp \
|
---|
3009 | common/string/strhash1.cpp \
|
---|
3010 | common/string/strprintf.cpp \
|
---|
3011 | common/string/strprintf-ellipsis.cpp \
|
---|
3012 | common/string/strprintf2.cpp \
|
---|
3013 | common/string/strprintf2-ellipsis.cpp \
|
---|
3014 | common/string/strtonum.cpp \
|
---|
3015 | common/string/stringalloc.cpp \
|
---|
3016 | common/string/unidata-flags.cpp \
|
---|
3017 | common/string/unidata-lower.cpp \
|
---|
3018 | common/string/unidata-upper.cpp \
|
---|
3019 | common/string/utf-8.cpp \
|
---|
3020 | common/string/utf-8-case.cpp \
|
---|
3021 | common/string/utf-8-case2.cpp \
|
---|
3022 | common/string/utf-16.cpp \
|
---|
3023 | common/string/utf-16-case.cpp \
|
---|
3024 | common/string/utf-16-latin-1.cpp \
|
---|
3025 | common/string/utf-16-printf.cpp \
|
---|
3026 | common/table/avlpv.cpp \
|
---|
3027 | common/table/avlu32.cpp \
|
---|
3028 | common/table/avllu32.cpp \
|
---|
3029 | common/time/time.cpp \
|
---|
3030 | generic/RTLogWriteStdErr-stub-generic.cpp \
|
---|
3031 | generic/RTLogWriteUser-generic.cpp \
|
---|
3032 | generic/RTMpGetArraySize-generic.cpp \
|
---|
3033 | generic/RTRandAdvCreateSystemFaster-generic.cpp \
|
---|
3034 | generic/RTSemEventWait-2-ex-generic.cpp \
|
---|
3035 | generic/RTSemEventWaitNoResume-2-ex-generic.cpp \
|
---|
3036 | generic/RTSemEventMultiWait-2-ex-generic.cpp \
|
---|
3037 | generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp \
|
---|
3038 | generic/critsect-generic.cpp \
|
---|
3039 | generic/critsectrw-generic.cpp \
|
---|
3040 | generic/errvars-generic.cpp \
|
---|
3041 | generic/uuid-generic.cpp \
|
---|
3042 | r0drv/alloc-r0drv.cpp \
|
---|
3043 | r0drv/initterm-r0drv.cpp \
|
---|
3044 | r0drv/generic/semspinmutex-r0drv-generic.c \
|
---|
3045 | r0drv/RTR0DbgKrnlInfoGetSymbol.cpp \
|
---|
3046 | VBox/log-vbox.cpp \
|
---|
3047 |
|
---|
3048 | RuntimeR0Drv_SOURCES.amd64 = \
|
---|
3049 | common/asm/ASMCpuIdExSlow.asm \
|
---|
3050 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
3051 | common/asm/ASMRdMsrEx.asm \
|
---|
3052 | common/asm/ASMWrMsrEx.asm \
|
---|
3053 | common/math/bignum-amd64-x86.asm \
|
---|
3054 | common/math/RTUInt128MulByU64.asm \
|
---|
3055 | common/string/RTStrEnd.asm
|
---|
3056 | RuntimeR0Drv_SOURCES.x86 = \
|
---|
3057 | common/asm/ASMCpuIdExSlow.asm \
|
---|
3058 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
3059 | common/asm/ASMRdMsrEx.asm \
|
---|
3060 | common/asm/ASMWrMsrEx.asm \
|
---|
3061 | common/math/bignum-amd64-x86.asm \
|
---|
3062 | common/string/RTStrEnd.asm
|
---|
3063 | RuntimeR0Drv_SOURCES.arm32 += \
|
---|
3064 | common/string/RTStrEnd.cpp
|
---|
3065 | RuntimeR0Drv_SOURCES.arm64 += \
|
---|
3066 | common/string/RTStrEnd.cpp
|
---|
3067 | RuntimeR0Drv_SOURCES.sparc32 += \
|
---|
3068 | common/string/RTStrEnd.cpp
|
---|
3069 | RuntimeR0Drv_SOURCES.sparc64 += \
|
---|
3070 | common/string/RTStrEnd.cpp
|
---|
3071 |
|
---|
3072 | RuntimeR0Drv_SOURCES.linux = \
|
---|
3073 | common/misc/thread.cpp \
|
---|
3074 | common/string/strpbrk.cpp \
|
---|
3075 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3076 | generic/RTLogWriteStdOut-stub-generic.cpp \
|
---|
3077 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
3078 | generic/mppresent-generic.cpp \
|
---|
3079 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3080 | r0drv/linux/alloc-r0drv-linux.c \
|
---|
3081 | r0drv/linux/assert-r0drv-linux.c \
|
---|
3082 | r0drv/linux/initterm-r0drv-linux.c \
|
---|
3083 | r0drv/linux/memobj-r0drv-linux.c \
|
---|
3084 | r0drv/linux/memuserkernel-r0drv-linux.c \
|
---|
3085 | r0drv/linux/mp-r0drv-linux.c \
|
---|
3086 | r0drv/linux/mpnotification-r0drv-linux.c \
|
---|
3087 | r0drv/linux/process-r0drv-linux.c \
|
---|
3088 | r0drv/linux/RTLogWriteDebugger-r0drv-linux.c \
|
---|
3089 | r0drv/linux/semevent-r0drv-linux.c \
|
---|
3090 | r0drv/linux/semeventmulti-r0drv-linux.c \
|
---|
3091 | r0drv/linux/semfastmutex-r0drv-linux.c \
|
---|
3092 | r0drv/linux/semmutex-r0drv-linux.c \
|
---|
3093 | r0drv/linux/spinlock-r0drv-linux.c \
|
---|
3094 | r0drv/linux/thread-r0drv-linux.c \
|
---|
3095 | r0drv/linux/thread2-r0drv-linux.c \
|
---|
3096 | r0drv/linux/threadctxhooks-r0drv-linux.c \
|
---|
3097 | r0drv/linux/time-r0drv-linux.c \
|
---|
3098 | r0drv/linux/timer-r0drv-linux.c \
|
---|
3099 | r0drv/memobj-r0drv.cpp \
|
---|
3100 | r0drv/mpnotification-r0drv.c \
|
---|
3101 | r0drv/powernotification-r0drv.c
|
---|
3102 |
|
---|
3103 | RuntimeR0Drv_SOURCES.win = \
|
---|
3104 | common/ldr/ldr.cpp \
|
---|
3105 | common/ldr/ldrEx.cpp \
|
---|
3106 | common/ldr/ldrPE.cpp \
|
---|
3107 | common/asn1/asn1-basics.cpp \
|
---|
3108 | common/asn1/asn1-dump.cpp \
|
---|
3109 | common/asn1/asn1-cursor.cpp \
|
---|
3110 | common/asn1/asn1-default-allocator.cpp \
|
---|
3111 | common/asn1/asn1-safer-allocator.cpp \
|
---|
3112 | common/asn1/asn1-encode.cpp \
|
---|
3113 | common/asn1/asn1-ut-bitstring.cpp \
|
---|
3114 | common/asn1/asn1-ut-bitstring-decode.cpp \
|
---|
3115 | common/asn1/asn1-ut-boolean.cpp \
|
---|
3116 | common/asn1/asn1-ut-boolean-decode.cpp \
|
---|
3117 | common/asn1/asn1-ut-core.cpp \
|
---|
3118 | common/asn1/asn1-ut-core-decode.cpp \
|
---|
3119 | common/asn1/asn1-ut-dyntype.cpp \
|
---|
3120 | common/asn1/asn1-ut-dyntype-decode.cpp \
|
---|
3121 | common/asn1/asn1-ut-integer.cpp \
|
---|
3122 | common/asn1/asn1-ut-integer-decode.cpp \
|
---|
3123 | common/asn1/asn1-ut-null.cpp \
|
---|
3124 | common/asn1/asn1-ut-null-decode.cpp \
|
---|
3125 | common/asn1/asn1-ut-objid.cpp \
|
---|
3126 | common/asn1/asn1-ut-objid-decode.cpp \
|
---|
3127 | common/asn1/asn1-ut-octetstring.cpp \
|
---|
3128 | common/asn1/asn1-ut-octetstring-decode.cpp \
|
---|
3129 | common/asn1/asn1-ut-string.cpp \
|
---|
3130 | common/asn1/asn1-ut-string-decode.cpp \
|
---|
3131 | common/asn1/asn1-ut-time.cpp \
|
---|
3132 | common/asn1/asn1-ut-time-decode.cpp \
|
---|
3133 | common/crypto/digest-core.cpp \
|
---|
3134 | common/crypto/digest-builtin.cpp \
|
---|
3135 | common/crypto/key.cpp \
|
---|
3136 | common/crypto/rsa-asn1-decoder.cpp \
|
---|
3137 | common/crypto/rsa-core.cpp \
|
---|
3138 | common/crypto/rsa-init.cpp \
|
---|
3139 | common/crypto/rsa-sanity.cpp \
|
---|
3140 | common/crypto/pkcs7-asn1-decoder.cpp \
|
---|
3141 | common/crypto/pkcs7-core.cpp \
|
---|
3142 | common/crypto/pkcs7-init.cpp \
|
---|
3143 | common/crypto/pkcs7-sanity.cpp \
|
---|
3144 | common/crypto/pkcs7-verify.cpp \
|
---|
3145 | common/crypto/pkix-signature-builtin.cpp \
|
---|
3146 | common/crypto/pkix-signature-core.cpp \
|
---|
3147 | common/crypto/pkix-signature-rsa.cpp \
|
---|
3148 | common/crypto/pkix-util.cpp \
|
---|
3149 | common/crypto/pkix-verify.cpp \
|
---|
3150 | common/crypto/spc-asn1-decoder.cpp \
|
---|
3151 | common/crypto/spc-core.cpp \
|
---|
3152 | common/crypto/spc-init.cpp \
|
---|
3153 | common/crypto/spc-sanity.cpp \
|
---|
3154 | common/crypto/x509-asn1-decoder.cpp \
|
---|
3155 | common/crypto/x509-certpaths.cpp \
|
---|
3156 | common/crypto/x509-core.cpp \
|
---|
3157 | common/crypto/x509-init.cpp \
|
---|
3158 | common/crypto/x509-sanity.cpp \
|
---|
3159 | common/crypto/x509-verify.cpp \
|
---|
3160 | common/crypto/store.cpp \
|
---|
3161 | common/crypto/store-inmem.cpp \
|
---|
3162 | common/crypto/taf-asn1-decoder.cpp \
|
---|
3163 | common/crypto/taf-core.cpp \
|
---|
3164 | common/crypto/taf-init.cpp \
|
---|
3165 | common/crypto/taf-sanity.cpp \
|
---|
3166 | common/crypto/tsp-asn1-decoder.cpp \
|
---|
3167 | common/crypto/tsp-core.cpp \
|
---|
3168 | common/crypto/tsp-init.cpp \
|
---|
3169 | common/crypto/tsp-sanity.cpp \
|
---|
3170 | common/checksum/alt-md2.cpp \
|
---|
3171 | common/checksum/alt-sha1.cpp \
|
---|
3172 | common/checksum/alt-sha256.cpp \
|
---|
3173 | common/checksum/alt-sha512.cpp \
|
---|
3174 | common/checksum/alt-sha3.cpp \
|
---|
3175 | common/checksum/md2str.cpp \
|
---|
3176 | common/checksum/md4str.cpp \
|
---|
3177 | common/checksum/md5str.cpp \
|
---|
3178 | common/checksum/sha1str.cpp \
|
---|
3179 | common/checksum/sha224str.cpp \
|
---|
3180 | common/checksum/sha256str.cpp \
|
---|
3181 | common/checksum/sha384str.cpp \
|
---|
3182 | common/checksum/sha512str.cpp \
|
---|
3183 | common/checksum/sha512t224str.cpp \
|
---|
3184 | common/checksum/sha512t256str.cpp \
|
---|
3185 | common/err/errinfolog.cpp \
|
---|
3186 | common/path/RTPathFilenameUtf16.cpp \
|
---|
3187 | common/path/RTPathChangeToUnixSlashes.cpp \
|
---|
3188 | common/math/bignum.cpp \
|
---|
3189 | common/misc/zero.asm \
|
---|
3190 | common/string/RTStrPrintHexBytes.cpp \
|
---|
3191 | common/string/RTUtf16Copy.cpp \
|
---|
3192 | common/string/RTUtf16CopyAscii.cpp \
|
---|
3193 | common/string/RTUtf16CopyEx.cpp \
|
---|
3194 | common/string/RTUtf16Cat.cpp \
|
---|
3195 | common/string/RTUtf16CatAscii.cpp \
|
---|
3196 | common/string/RTUtf16End.cpp \
|
---|
3197 | common/string/RTUtf16NLen.cpp \
|
---|
3198 | common/string/RTUtf16NLenEx.cpp \
|
---|
3199 | common/string/RTUtf16PrintHexBytes.cpp \
|
---|
3200 | common/string/strstrip.cpp \
|
---|
3201 | generic/memsafer-generic.cpp \
|
---|
3202 | common/misc/thread.cpp \
|
---|
3203 | common/string/memcmp.asm \
|
---|
3204 | common/string/memchr.asm \
|
---|
3205 | common/string/memcpy.asm \
|
---|
3206 | common/string/memset.asm \
|
---|
3207 | common/string/memmove.asm \
|
---|
3208 | common/string/strlen.asm \
|
---|
3209 | common/string/strncmp.cpp \
|
---|
3210 | common/string/strpbrk.cpp \
|
---|
3211 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3212 | generic/RTLogWriteStdOut-stub-generic.cpp \
|
---|
3213 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
3214 | generic/RTTimerCreate-generic.cpp \
|
---|
3215 | generic/mppresent-generic-online.cpp \
|
---|
3216 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3217 | nt/RTErrConvertFromNtStatus.cpp \
|
---|
3218 | nt/RTNtPathExpand8dot3Path.cpp \
|
---|
3219 | nt/RTNtPathExpand8dot3PathA.cpp \
|
---|
3220 | nt/RTNtPathFindPossible8dot3Name.cpp \
|
---|
3221 | nt/semevent-nt.cpp \
|
---|
3222 | nt/RTSemEventGetResolution-nt.cpp \
|
---|
3223 | nt/semeventmulti-nt.cpp \
|
---|
3224 | nt/RTSemEventMultiGetResolution-nt.cpp \
|
---|
3225 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3226 | r0drv/alloc-ef-r0drv.cpp \
|
---|
3227 | r0drv/memobj-r0drv.cpp \
|
---|
3228 | r0drv/mpnotification-r0drv.c \
|
---|
3229 | r0drv/powernotification-r0drv.c \
|
---|
3230 | r0drv/nt/alloc-r0drv-nt.cpp \
|
---|
3231 | r0drv/nt/assert-r0drv-nt.cpp \
|
---|
3232 | r0drv/nt/dbgkrnlinfo-r0drv-nt.cpp \
|
---|
3233 | r0drv/nt/initterm-r0drv-nt.cpp \
|
---|
3234 | r0drv/nt/memobj-r0drv-nt.cpp \
|
---|
3235 | r0drv/nt/memuserkernel-r0drv-nt.cpp \
|
---|
3236 | r0drv/nt/mp-r0drv-nt.cpp \
|
---|
3237 | r0drv/nt/process-r0drv-nt.cpp \
|
---|
3238 | r0drv/nt/RTLogWriteDebugger-r0drv-nt.cpp \
|
---|
3239 | r0drv/nt/semfastmutex-r0drv-nt.cpp \
|
---|
3240 | r0drv/nt/semmutex-r0drv-nt.cpp \
|
---|
3241 | r0drv/nt/spinlock-r0drv-nt.cpp \
|
---|
3242 | r0drv/nt/thread-r0drv-nt.cpp \
|
---|
3243 | r0drv/nt/thread2-r0drv-nt.cpp \
|
---|
3244 | r0drv/nt/time-r0drv-nt.cpp \
|
---|
3245 | r0drv/nt/timer-r0drv-nt.cpp \
|
---|
3246 | r0drv/nt/toxic-chkstk-r0drv-nt.asm \
|
---|
3247 | r0drv/nt/RTTimerGetSystemGranularity-r0drv-nt.cpp
|
---|
3248 |
|
---|
3249 | RuntimeR0Drv_SOURCES.win.amd64 := $(RuntimeWin64ASM_SOURCES)
|
---|
3250 | RuntimeR0Drv_SOURCES.win.x86 := $(RuntimeWin32ASM_SOURCES) \
|
---|
3251 | r0drv/nt/nt3fakes-stub-r0drv-nt.cpp \
|
---|
3252 | r0drv/nt/alloca-x86-r0drv-nt.asm
|
---|
3253 |
|
---|
3254 |
|
---|
3255 | RuntimeR0Drv_SOURCES.darwin = \
|
---|
3256 | common/ldr/ldr.cpp \
|
---|
3257 | common/ldr/ldrEx.cpp \
|
---|
3258 | common/ldr/ldrMachO.cpp \
|
---|
3259 | common/ldr/ldrMemory.cpp \
|
---|
3260 | common/asn1/asn1-basics.cpp \
|
---|
3261 | common/asn1/asn1-dump.cpp \
|
---|
3262 | common/asn1/asn1-cursor.cpp \
|
---|
3263 | common/asn1/asn1-default-allocator.cpp \
|
---|
3264 | common/asn1/asn1-safer-allocator.cpp \
|
---|
3265 | common/asn1/asn1-encode.cpp \
|
---|
3266 | common/asn1/asn1-ut-bitstring.cpp \
|
---|
3267 | common/asn1/asn1-ut-bitstring-decode.cpp \
|
---|
3268 | common/asn1/asn1-ut-boolean.cpp \
|
---|
3269 | common/asn1/asn1-ut-boolean-decode.cpp \
|
---|
3270 | common/asn1/asn1-ut-core.cpp \
|
---|
3271 | common/asn1/asn1-ut-core-decode.cpp \
|
---|
3272 | common/asn1/asn1-ut-dyntype.cpp \
|
---|
3273 | common/asn1/asn1-ut-dyntype-decode.cpp \
|
---|
3274 | common/asn1/asn1-ut-integer.cpp \
|
---|
3275 | common/asn1/asn1-ut-integer-decode.cpp \
|
---|
3276 | common/asn1/asn1-ut-null.cpp \
|
---|
3277 | common/asn1/asn1-ut-null-decode.cpp \
|
---|
3278 | common/asn1/asn1-ut-objid.cpp \
|
---|
3279 | common/asn1/asn1-ut-objid-decode.cpp \
|
---|
3280 | common/asn1/asn1-ut-octetstring.cpp \
|
---|
3281 | common/asn1/asn1-ut-octetstring-decode.cpp \
|
---|
3282 | common/asn1/asn1-ut-string.cpp \
|
---|
3283 | common/asn1/asn1-ut-string-decode.cpp \
|
---|
3284 | common/asn1/asn1-ut-time.cpp \
|
---|
3285 | common/asn1/asn1-ut-time-decode.cpp \
|
---|
3286 | common/crypto/digest-core.cpp \
|
---|
3287 | common/crypto/digest-builtin.cpp \
|
---|
3288 | common/crypto/key.cpp \
|
---|
3289 | common/crypto/rsa-asn1-decoder.cpp \
|
---|
3290 | common/crypto/rsa-core.cpp \
|
---|
3291 | common/crypto/rsa-init.cpp \
|
---|
3292 | common/crypto/rsa-sanity.cpp \
|
---|
3293 | common/crypto/pkcs7-asn1-decoder.cpp \
|
---|
3294 | common/crypto/pkcs7-core.cpp \
|
---|
3295 | common/crypto/pkcs7-init.cpp \
|
---|
3296 | common/crypto/pkcs7-sanity.cpp \
|
---|
3297 | common/crypto/pkcs7-verify.cpp \
|
---|
3298 | common/crypto/pkix-signature-builtin.cpp \
|
---|
3299 | common/crypto/pkix-signature-core.cpp \
|
---|
3300 | common/crypto/pkix-signature-rsa.cpp \
|
---|
3301 | common/crypto/pkix-util.cpp \
|
---|
3302 | common/crypto/pkix-verify.cpp \
|
---|
3303 | common/crypto/spc-asn1-decoder.cpp \
|
---|
3304 | common/crypto/spc-core.cpp \
|
---|
3305 | common/crypto/spc-init.cpp \
|
---|
3306 | common/crypto/spc-sanity.cpp \
|
---|
3307 | common/crypto/x509-asn1-decoder.cpp \
|
---|
3308 | common/crypto/x509-certpaths.cpp \
|
---|
3309 | common/crypto/x509-core.cpp \
|
---|
3310 | common/crypto/x509-init.cpp \
|
---|
3311 | common/crypto/x509-sanity.cpp \
|
---|
3312 | common/crypto/x509-verify.cpp \
|
---|
3313 | common/crypto/store.cpp \
|
---|
3314 | common/crypto/store-inmem.cpp \
|
---|
3315 | common/crypto/taf-asn1-decoder.cpp \
|
---|
3316 | common/crypto/taf-core.cpp \
|
---|
3317 | common/crypto/taf-init.cpp \
|
---|
3318 | common/crypto/taf-sanity.cpp \
|
---|
3319 | common/crypto/tsp-asn1-decoder.cpp \
|
---|
3320 | common/crypto/tsp-core.cpp \
|
---|
3321 | common/crypto/tsp-init.cpp \
|
---|
3322 | common/crypto/tsp-sanity.cpp \
|
---|
3323 | common/checksum/alt-md2.cpp \
|
---|
3324 | common/checksum/alt-sha1.cpp \
|
---|
3325 | common/checksum/alt-sha256.cpp \
|
---|
3326 | common/checksum/alt-sha512.cpp \
|
---|
3327 | common/checksum/alt-sha3.cpp \
|
---|
3328 | common/checksum/md2str.cpp \
|
---|
3329 | common/checksum/md4str.cpp \
|
---|
3330 | common/checksum/md5str.cpp \
|
---|
3331 | common/checksum/sha1str.cpp \
|
---|
3332 | common/checksum/sha224str.cpp \
|
---|
3333 | common/checksum/sha256str.cpp \
|
---|
3334 | common/checksum/sha384str.cpp \
|
---|
3335 | common/checksum/sha512str.cpp \
|
---|
3336 | common/checksum/sha512t224str.cpp \
|
---|
3337 | common/checksum/sha512t256str.cpp \
|
---|
3338 | common/err/errinfolog.cpp \
|
---|
3339 | common/math/bignum.cpp \
|
---|
3340 | common/misc/thread.cpp \
|
---|
3341 | common/string/base64.cpp \
|
---|
3342 | common/string/memchr.asm \
|
---|
3343 | common/string/mempcpy.asm \
|
---|
3344 | common/string/strpbrk.cpp \
|
---|
3345 | common/string/strstrip.cpp \
|
---|
3346 | common/string/RTStrPrintHexBytes.cpp \
|
---|
3347 | darwin/RTErrConvertFromDarwin.cpp \
|
---|
3348 | darwin/RTErrConvertFromDarwinIO.cpp \
|
---|
3349 | darwin/RTErrConvertFromDarwinKern.cpp \
|
---|
3350 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3351 | generic/RTFileReadAll-generic.cpp \
|
---|
3352 | generic/RTFileReadAllByHandle-generic.cpp \
|
---|
3353 | generic/RTFileReadAllByHandleEx-generic.cpp \
|
---|
3354 | generic/RTFileReadAllEx-generic.cpp \
|
---|
3355 | generic/RTFileReadAllFree-generic.cpp \
|
---|
3356 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
3357 | generic/RTMpOnPair-generic.cpp \
|
---|
3358 | generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
|
---|
3359 | generic/RTTimerCreate-generic.cpp \
|
---|
3360 | generic/memsafer-generic.cpp \
|
---|
3361 | generic/mppresent-generic.cpp \
|
---|
3362 | generic/timer-generic.cpp \
|
---|
3363 | r0drv/generic/mpnotification-r0drv-generic.cpp \
|
---|
3364 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3365 | r0drv/darwin/alloc-r0drv-darwin.cpp \
|
---|
3366 | r0drv/darwin/assert-r0drv-darwin.cpp \
|
---|
3367 | r0drv/darwin/initterm-r0drv-darwin.cpp \
|
---|
3368 | r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp \
|
---|
3369 | r0drv/darwin/fileio-r0drv-darwin.cpp \
|
---|
3370 | r0drv/darwin/memobj-r0drv-darwin.cpp \
|
---|
3371 | r0drv/darwin/mp-r0drv-darwin.cpp \
|
---|
3372 | r0drv/darwin/memuserkernel-r0drv-darwin.cpp \
|
---|
3373 | r0drv/darwin/process-r0drv-darwin.cpp \
|
---|
3374 | r0drv/darwin/RTLogWriteDebugger-r0drv-darwin.cpp \
|
---|
3375 | r0drv/darwin/RTLogWriteStdOut-r0drv-darwin.cpp \
|
---|
3376 | r0drv/darwin/rtStrFormatKernelAddress-r0drv-darwin.cpp \
|
---|
3377 | r0drv/darwin/semevent-r0drv-darwin.cpp \
|
---|
3378 | r0drv/darwin/semeventmulti-r0drv-darwin.cpp \
|
---|
3379 | r0drv/darwin/semfastmutex-r0drv-darwin.cpp \
|
---|
3380 | r0drv/darwin/semmutex-r0drv-darwin.cpp \
|
---|
3381 | r0drv/darwin/spinlock-r0drv-darwin.cpp \
|
---|
3382 | r0drv/darwin/thread-r0drv-darwin.cpp \
|
---|
3383 | r0drv/darwin/thread2-r0drv-darwin.cpp \
|
---|
3384 | r0drv/darwin/threadpreempt-r0drv-darwin.cpp \
|
---|
3385 | r0drv/darwin/time-r0drv-darwin.cpp \
|
---|
3386 | r0drv/alloc-ef-r0drv.cpp \
|
---|
3387 | r0drv/memobj-r0drv.cpp \
|
---|
3388 | r0drv/powernotification-r0drv.c
|
---|
3389 | # - The xnu memcpy implementation in osfmk/x86_64/bcopy.s returned 'void' rather than 'void *' for a long time, so use our own.
|
---|
3390 | # - The memcmp and strlen implementations are still C implementations living in osfmk/x86_64/loose_ends.c, so use our asm code.
|
---|
3391 | RuntimeR0Drv_SOURCES.darwin.amd64 = \
|
---|
3392 | common/string/memcpy.asm
|
---|
3393 | # common/string/strlen.asm - try again later \
|
---|
3394 | # common/string/memcmp.asm
|
---|
3395 |
|
---|
3396 | RuntimeR0Drv_SOURCES.os2 = \
|
---|
3397 | common/path/RTPathFilenameUtf16.cpp \
|
---|
3398 | common/string/RTUtf16Chr.cpp \
|
---|
3399 | common/string/RTUtf16CmpAscii.cpp \
|
---|
3400 | common/string/memchr.asm \
|
---|
3401 | common/string/memcmp.asm \
|
---|
3402 | common/string/memcpy.asm \
|
---|
3403 | common/string/mempcpy.asm \
|
---|
3404 | common/string/memmove.asm \
|
---|
3405 | common/string/memset.asm \
|
---|
3406 | common/string/strchr.asm \
|
---|
3407 | common/string/strcmp.asm \
|
---|
3408 | common/string/strcpy.asm \
|
---|
3409 | common/string/strlen.asm \
|
---|
3410 | common/string/strncmp.cpp \
|
---|
3411 | common/string/strpbrk.cpp \
|
---|
3412 | common/misc/thread.cpp \
|
---|
3413 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3414 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
3415 | generic/RTLogWriteStdOut-stub-generic.cpp \
|
---|
3416 | generic/RTMpCpuId-generic.cpp \
|
---|
3417 | generic/RTMpCpuIdFromSetIndex-generic.cpp \
|
---|
3418 | generic/RTMpCpuIdToSetIndex-generic.cpp \
|
---|
3419 | generic/RTMpIsCpuPossible-generic.cpp \
|
---|
3420 | generic/RTMpGetCount-generic.cpp \
|
---|
3421 | generic/RTMpGetMaxCpuId-generic.cpp \
|
---|
3422 | generic/RTMpGetOnlineCount-generic.cpp \
|
---|
3423 | generic/RTMpGetOnlineSet-generic.cpp \
|
---|
3424 | generic/RTMpGetSet-generic.cpp \
|
---|
3425 | generic/RTMpIsCpuOnline-generic.cpp \
|
---|
3426 | generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
|
---|
3427 | generic/RTTimerCreate-generic.cpp \
|
---|
3428 | generic/mppresent-generic.cpp \
|
---|
3429 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3430 | os2/RTErrConvertFromOS2.cpp \
|
---|
3431 | os2/rtSemWaitOs2ConvertTimeout.cpp \
|
---|
3432 | os2/sys0.asm \
|
---|
3433 | r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
|
---|
3434 | r0drv/generic/RTMpOn-r0drv-generic.cpp \
|
---|
3435 | r0drv/generic/mpnotification-r0drv-generic.cpp \
|
---|
3436 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3437 | r0drv/memobj-r0drv.cpp \
|
---|
3438 | r0drv/powernotification-r0drv.c \
|
---|
3439 | r0drv/os2/alloc-r0drv-os2.cpp \
|
---|
3440 | r0drv/os2/assert-r0drv-os2.cpp \
|
---|
3441 | r0drv/os2/assertA-r0drv-os2.asm \
|
---|
3442 | r0drv/os2/initterm-r0drv-os2.cpp \
|
---|
3443 | r0drv/os2/memobj-r0drv-os2.cpp \
|
---|
3444 | r0drv/os2/memuserkernel-r0drv-os2.cpp \
|
---|
3445 | r0drv/os2/os2imports.imp \
|
---|
3446 | r0drv/os2/process-r0drv-os2.cpp \
|
---|
3447 | r0drv/os2/RTR0AssertPanicSystem-r0drv-os2.asm \
|
---|
3448 | r0drv/os2/RTR0Os2DHQueryDOSVar.asm \
|
---|
3449 | r0drv/os2/RTR0Os2DHVMGlobalToProcess.asm \
|
---|
3450 | r0drv/os2/semevent-r0drv-os2.cpp \
|
---|
3451 | r0drv/os2/semeventmulti-r0drv-os2.cpp \
|
---|
3452 | r0drv/os2/semfastmutex-r0drv-os2.cpp \
|
---|
3453 | r0drv/os2/spinlock-r0drv-os2.cpp \
|
---|
3454 | r0drv/os2/thread-r0drv-os2.cpp \
|
---|
3455 | r0drv/os2/thread2-r0drv-os2.cpp \
|
---|
3456 | r0drv/os2/time-r0drv-os2.cpp \
|
---|
3457 | r0drv/os2/timer-r0drv-os2.cpp \
|
---|
3458 | r0drv/os2/timerA-r0drv-os2.asm
|
---|
3459 | ifndef VBOX_USE_WATCOM_FOR_OS2
|
---|
3460 | RuntimeR0Drv_SOURCES.os2 += \
|
---|
3461 | common/math/gcc/adddi3.c \
|
---|
3462 | common/math/gcc/anddi3.c \
|
---|
3463 | common/math/gcc/ashldi3.c \
|
---|
3464 | common/math/gcc/ashrdi3.c \
|
---|
3465 | common/math/gcc/cmpdi2.c \
|
---|
3466 | common/math/gcc/divdi3.c \
|
---|
3467 | common/math/gcc/divmoddi4.c \
|
---|
3468 | common/math/gcc/iordi3.c \
|
---|
3469 | common/math/gcc/lshldi3.c \
|
---|
3470 | common/math/gcc/lshrdi3.c \
|
---|
3471 | common/math/gcc/moddi3.c \
|
---|
3472 | common/math/gcc/muldi3.c \
|
---|
3473 | common/math/gcc/negdi2.c \
|
---|
3474 | common/math/gcc/notdi2.c \
|
---|
3475 | common/math/gcc/qdivrem.c \
|
---|
3476 | common/math/gcc/subdi3.c \
|
---|
3477 | common/math/gcc/ucmpdi2.c \
|
---|
3478 | common/math/gcc/udivdi3.c \
|
---|
3479 | common/math/gcc/udivmoddi4.c \
|
---|
3480 | common/math/gcc/umoddi3.c \
|
---|
3481 | common/math/gcc/xordi3.c
|
---|
3482 | else
|
---|
3483 | RuntimeR0Drv_SOURCES.os2 += \
|
---|
3484 | common/math/watcom/I8D-x86-32.asm \
|
---|
3485 | common/math/watcom/U8D-x86-32.asm \
|
---|
3486 | common/math/watcom/RTWatcomUInt64Div.c \
|
---|
3487 | common/math/watcom/U8LS-x86-32.asm \
|
---|
3488 | common/math/watcom/U8RS-x86-32.asm \
|
---|
3489 | common/math/watcom/U8M-I8M-x86-32.asm \
|
---|
3490 | common/string/watcom/bzero.asm \
|
---|
3491 | common/string/watcom/memchr.asm \
|
---|
3492 | common/string/watcom/memcmp.asm \
|
---|
3493 | common/string/watcom/memcpy.asm \
|
---|
3494 | common/string/watcom/memmove.asm \
|
---|
3495 | common/string/watcom/mempcpy.asm \
|
---|
3496 | common/string/watcom/memrchr.asm \
|
---|
3497 | common/string/watcom/memset.asm \
|
---|
3498 | common/string/watcom/strchr.asm \
|
---|
3499 | common/string/watcom/strcmp.asm \
|
---|
3500 | common/string/watcom/strcpy.asm \
|
---|
3501 | common/string/watcom/strlen.asm \
|
---|
3502 | common/string/watcom/strncmp.asm \
|
---|
3503 | common/string/watcom/strncpy.asm
|
---|
3504 | endif
|
---|
3505 |
|
---|
3506 | RuntimeR0Drv_SOURCES.freebsd = \
|
---|
3507 | common/misc/thread.cpp \
|
---|
3508 | common/string/memchr.asm \
|
---|
3509 | common/string/memmove.asm \
|
---|
3510 | common/string/strpbrk.cpp \
|
---|
3511 | common/string/memcmp.asm \
|
---|
3512 | common/string/strchr.asm \
|
---|
3513 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3514 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
3515 | generic/RTLogWriteStdOut-stub-generic.cpp \
|
---|
3516 | generic/RTMpOnPair-generic.cpp \
|
---|
3517 | generic/RTTimerCreate-generic.cpp \
|
---|
3518 | generic/mppresent-generic.cpp \
|
---|
3519 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3520 | r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
|
---|
3521 | r0drv/generic/mpnotification-r0drv-generic.cpp \
|
---|
3522 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3523 | r0drv/freebsd/alloc-r0drv-freebsd.c \
|
---|
3524 | r0drv/freebsd/assert-r0drv-freebsd.c \
|
---|
3525 | r0drv/freebsd/initterm-r0drv-freebsd.c \
|
---|
3526 | r0drv/freebsd/memobj-r0drv-freebsd.c \
|
---|
3527 | r0drv/freebsd/memuserkernel-r0drv-freebsd.c \
|
---|
3528 | r0drv/freebsd/process-r0drv-freebsd.c \
|
---|
3529 | r0drv/freebsd/semevent-r0drv-freebsd.c \
|
---|
3530 | r0drv/freebsd/semeventmulti-r0drv-freebsd.c \
|
---|
3531 | r0drv/freebsd/semfastmutex-r0drv-freebsd.c \
|
---|
3532 | r0drv/freebsd/semmutex-r0drv-freebsd.c \
|
---|
3533 | r0drv/freebsd/spinlock-r0drv-freebsd.c \
|
---|
3534 | r0drv/freebsd/thread-r0drv-freebsd.c \
|
---|
3535 | r0drv/freebsd/thread2-r0drv-freebsd.c \
|
---|
3536 | r0drv/freebsd/time-r0drv-freebsd.c \
|
---|
3537 | r0drv/freebsd/mp-r0drv-freebsd.c \
|
---|
3538 | generic/timer-generic.cpp \
|
---|
3539 | r0drv/alloc-ef-r0drv.cpp \
|
---|
3540 | r0drv/memobj-r0drv.cpp \
|
---|
3541 | r0drv/powernotification-r0drv.c
|
---|
3542 |
|
---|
3543 | RuntimeR0Drv_SOURCES.netbsd = \
|
---|
3544 | common/misc/thread.cpp \
|
---|
3545 | common/string/strpbrk.cpp \
|
---|
3546 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3547 | generic/RTLogWriteDebugger-generic.cpp \
|
---|
3548 | generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
|
---|
3549 | generic/RTTimerCreate-generic.cpp \
|
---|
3550 | generic/mppresent-generic.cpp \
|
---|
3551 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3552 | r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
|
---|
3553 | r0drv/generic/mpnotification-r0drv-generic.cpp \
|
---|
3554 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3555 | r0drv/netbsd/RTLogWriteStdOut-r0drv-netbsd.c \
|
---|
3556 | r0drv/netbsd/alloc-r0drv-netbsd.c \
|
---|
3557 | r0drv/netbsd/assert-r0drv-netbsd.c \
|
---|
3558 | r0drv/netbsd/initterm-r0drv-netbsd.c \
|
---|
3559 | r0drv/netbsd/memobj-r0drv-netbsd.c \
|
---|
3560 | r0drv/netbsd/memuserkernel-r0drv-netbsd.c \
|
---|
3561 | r0drv/netbsd/process-r0drv-netbsd.c \
|
---|
3562 | r0drv/netbsd/semevent-r0drv-netbsd.c \
|
---|
3563 | r0drv/netbsd/semeventmulti-r0drv-netbsd.c \
|
---|
3564 | r0drv/netbsd/semfastmutex-r0drv-netbsd.c \
|
---|
3565 | r0drv/netbsd/spinlock-r0drv-netbsd.c \
|
---|
3566 | r0drv/netbsd/thread-r0drv-netbsd.c \
|
---|
3567 | r0drv/netbsd/thread2-r0drv-netbsd.c \
|
---|
3568 | r0drv/netbsd/time-r0drv-netbsd.c \
|
---|
3569 | r0drv/netbsd/mp-r0drv-netbsd.c \
|
---|
3570 | generic/timer-generic.cpp \
|
---|
3571 | r0drv/memobj-r0drv.cpp \
|
---|
3572 | r0drv/powernotification-r0drv.c
|
---|
3573 |
|
---|
3574 | RuntimeR0Drv_SOURCES.solaris = \
|
---|
3575 | common/misc/thread.cpp \
|
---|
3576 | common/string/memchr.asm \
|
---|
3577 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3578 | generic/RTLogWriteStdOut-stub-generic.cpp \
|
---|
3579 | generic/RTMpGetCoreCount-generic.cpp \
|
---|
3580 | generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
|
---|
3581 | generic/RTTimerCreate-generic.cpp \
|
---|
3582 | generic/mppresent-generic.cpp \
|
---|
3583 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3584 | r0drv/memobj-r0drv.cpp \
|
---|
3585 | r0drv/mpnotification-r0drv.c \
|
---|
3586 | r0drv/powernotification-r0drv.c \
|
---|
3587 | r0drv/solaris/RTLogWriteDebugger-r0drv-solaris.c \
|
---|
3588 | r0drv/solaris/RTMpPokeCpu-r0drv-solaris.c \
|
---|
3589 | r0drv/solaris/alloc-r0drv-solaris.c \
|
---|
3590 | r0drv/solaris/assert-r0drv-solaris.c \
|
---|
3591 | r0drv/solaris/dbgkrnlinfo-r0drv-solaris.c \
|
---|
3592 | r0drv/solaris/initterm-r0drv-solaris.c \
|
---|
3593 | r0drv/solaris/memuserkernel-r0drv-solaris.c \
|
---|
3594 | r0drv/solaris/mpnotification-r0drv-solaris.c \
|
---|
3595 | r0drv/solaris/memobj-r0drv-solaris.c \
|
---|
3596 | r0drv/solaris/mp-r0drv-solaris.c \
|
---|
3597 | r0drv/solaris/process-r0drv-solaris.c \
|
---|
3598 | r0drv/solaris/semevent-r0drv-solaris.c \
|
---|
3599 | r0drv/solaris/semeventmulti-r0drv-solaris.c \
|
---|
3600 | r0drv/solaris/semfastmutex-r0drv-solaris.c \
|
---|
3601 | r0drv/solaris/semmutex-r0drv-solaris.c \
|
---|
3602 | r0drv/solaris/spinlock-r0drv-solaris.c \
|
---|
3603 | r0drv/solaris/thread-r0drv-solaris.c \
|
---|
3604 | r0drv/solaris/thread2-r0drv-solaris.c \
|
---|
3605 | r0drv/solaris/threadctxhooks-r0drv-solaris.c \
|
---|
3606 | r0drv/solaris/time-r0drv-solaris.c \
|
---|
3607 | r0drv/solaris/timer-r0drv-solaris.c
|
---|
3608 |
|
---|
3609 | RuntimeR0Drv_SOURCES.haiku = \
|
---|
3610 | common/misc/thread.cpp \
|
---|
3611 | common/string/memchr.asm \
|
---|
3612 | common/string/memmove.asm \
|
---|
3613 | common/string/strpbrk.cpp \
|
---|
3614 | common/string/memcmp.asm \
|
---|
3615 | common/string/strchr.asm \
|
---|
3616 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3617 | generic/RTMpOnPair-generic.cpp \
|
---|
3618 | generic/RTThreadQueryTerminationStatus-stub-generic.cpp \
|
---|
3619 | generic/RTTimerCreate-generic.cpp \
|
---|
3620 | generic/mppresent-generic.cpp \
|
---|
3621 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3622 | r0drv/generic/RTMpIsCpuWorkPending-r0drv-generic.cpp \
|
---|
3623 | r0drv/generic/mpnotification-r0drv-generic.cpp \
|
---|
3624 | r0drv/generic/threadctxhooks-r0drv-generic.cpp \
|
---|
3625 | r0drv/haiku/alloc-r0drv-haiku.c \
|
---|
3626 | r0drv/haiku/assert-r0drv-haiku.c \
|
---|
3627 | r0drv/haiku/initterm-r0drv-haiku.c \
|
---|
3628 | r0drv/haiku/memobj-r0drv-haiku.c \
|
---|
3629 | r0drv/haiku/mp-r0drv-haiku.c \
|
---|
3630 | r0drv/haiku/process-r0drv-haiku.c \
|
---|
3631 | r0drv/haiku/RTLogWriteDebugger-r0drv-haiku.c \
|
---|
3632 | r0drv/haiku/RTLogWriteStdOut-r0drv-haiku.c \
|
---|
3633 | r0drv/haiku/semevent-r0drv-haiku.c \
|
---|
3634 | r0drv/haiku/semeventmulti-r0drv-haiku.c \
|
---|
3635 | r0drv/haiku/semfastmutex-r0drv-haiku.c \
|
---|
3636 | r0drv/haiku/semmutex-r0drv-haiku.c \
|
---|
3637 | r0drv/haiku/spinlock-r0drv-haiku.c \
|
---|
3638 | r0drv/haiku/thread-r0drv-haiku.c \
|
---|
3639 | r0drv/haiku/thread2-r0drv-haiku.c \
|
---|
3640 | r0drv/haiku/time-r0drv-haiku.c \
|
---|
3641 | generic/timer-generic.cpp \
|
---|
3642 | r0drv/memobj-r0drv.cpp \
|
---|
3643 | r0drv/powernotification-r0drv.c
|
---|
3644 |
|
---|
3645 | ## PORTME: Porters create and add their selection of platform specific Ring-0 Driver files here.
|
---|
3646 |
|
---|
3647 | RuntimeR0Drv_ORDERDEPS.freebsd = \
|
---|
3648 | $(PATH_STAGE)/gen-sys-hdrs/bus_if.h \
|
---|
3649 | $(PATH_STAGE)/gen-sys-hdrs/device_if.h
|
---|
3650 |
|
---|
3651 |
|
---|
3652 | #
|
---|
3653 | # RuntimeGuestR0 - Guest driver runtime.
|
---|
3654 | # This is almost the same as the RuntimeR0Drv, the main difference
|
---|
3655 | # is in the backdoor logging and the lack of sup.h (which should be
|
---|
3656 | # made irrelevant even for RuntimeR0Drv).
|
---|
3657 | #
|
---|
3658 | RuntimeGuestR0_TEMPLATE := VBOXGUESTR0LIB
|
---|
3659 | RuntimeGuestR0_EXTENDS = RuntimeR0Drv
|
---|
3660 | RuntimeGuestR0_DEFS.win.x86 = $(RuntimeR0Drv_DEFS.win.x86) IPRT_TARGET_NT4 # The 32-bit version needs to work on NT4 too.
|
---|
3661 | RuntimeGuestR0_SOURCES := $(filter-out generic/RTLogWriteUser-generic.cpp, $(RuntimeR0Drv_SOURCES))
|
---|
3662 | RuntimeGuestR0_SOURCES += \
|
---|
3663 | VBox/logbackdoor.cpp
|
---|
3664 | RuntimeGuestR0_SOURCES.win := \
|
---|
3665 | $(filter-out common/checksum/md% common/checksum/sha%, $(RuntimeR0Drv_SOURCES.win))
|
---|
3666 |
|
---|
3667 |
|
---|
3668 | ifdef VBOX_WITH_RAW_MODE
|
---|
3669 | #
|
---|
3670 | # RuntimeRC - Raw-mode context library.
|
---|
3671 | #
|
---|
3672 | RuntimeRC_TEMPLATE = VBoxRc
|
---|
3673 | RuntimeRC_DEFS = IN_RT_RC RT_WITH_VBOX IN_SUP_RC IN_VMM_RC NOFILEID
|
---|
3674 | RuntimeRC_INCS = include
|
---|
3675 | RuntimeRC_SOURCES := \
|
---|
3676 | common/asm/ASMMemFirstMismatchingU8.asm \
|
---|
3677 | common/asm/ASMGetXcr0.asm \
|
---|
3678 | common/asm/ASMSetXcr0.asm \
|
---|
3679 | common/asm/ASMXSave.asm \
|
---|
3680 | common/asm/ASMXRstor.asm \
|
---|
3681 | common/asm/ASMFxSave.asm \
|
---|
3682 | common/asm/ASMFxRstor.asm \
|
---|
3683 | common/checksum/alt-md5.cpp \
|
---|
3684 | common/checksum/crc32.cpp \
|
---|
3685 | common/checksum/crc64.cpp \
|
---|
3686 | common/log/log.cpp \
|
---|
3687 | common/log/logellipsis.cpp \
|
---|
3688 | common/log/logrel.cpp \
|
---|
3689 | common/log/logrelellipsis.cpp \
|
---|
3690 | common/log/logcom.cpp \
|
---|
3691 | common/log/logformat.cpp \
|
---|
3692 | common/log/tracebuf.cpp \
|
---|
3693 | common/log/tracedefault.cpp \
|
---|
3694 | common/log/RTLogCreateEx.cpp \
|
---|
3695 | common/misc/RTAssertMsg1Weak.cpp \
|
---|
3696 | common/misc/RTAssertMsg2.cpp \
|
---|
3697 | common/misc/RTAssertMsg2Add.cpp \
|
---|
3698 | common/misc/RTAssertMsg2AddWeak.cpp \
|
---|
3699 | common/misc/RTAssertMsg2AddWeakV.cpp \
|
---|
3700 | common/misc/RTAssertMsg2Weak.cpp \
|
---|
3701 | common/misc/RTAssertMsg2WeakV.cpp \
|
---|
3702 | common/misc/assert.cpp \
|
---|
3703 | common/misc/buildconfig.cpp \
|
---|
3704 | common/misc/sanity-c.c \
|
---|
3705 | common/misc/sanity-cpp.cpp \
|
---|
3706 | common/path/RTPathFilename.cpp \
|
---|
3707 | common/string/strformat.cpp \
|
---|
3708 | common/string/RTStrFormat.cpp \
|
---|
3709 | common/string/strformatnum.cpp \
|
---|
3710 | common/string/strformatrt.cpp \
|
---|
3711 | common/string/strformattype.cpp \
|
---|
3712 | common/string/strncmp.cpp \
|
---|
3713 | common/string/strpbrk.cpp \
|
---|
3714 | common/string/strprintf.cpp \
|
---|
3715 | common/string/strprintf-ellipsis.cpp \
|
---|
3716 | common/string/strprintf2.cpp \
|
---|
3717 | common/string/strprintf2-ellipsis.cpp \
|
---|
3718 | common/string/RTStrCmp.cpp \
|
---|
3719 | common/string/RTStrCopy.cpp \
|
---|
3720 | common/string/RTStrCopyEx.cpp \
|
---|
3721 | common/string/RTStrEnd.asm \
|
---|
3722 | common/string/RTStrICmpAscii.cpp \
|
---|
3723 | common/table/avllu32.cpp \
|
---|
3724 | common/table/avlou32.cpp \
|
---|
3725 | common/table/avlogcphys.cpp \
|
---|
3726 | common/table/avlogcptr.cpp \
|
---|
3727 | common/table/avlohcphys.cpp \
|
---|
3728 | common/table/avloioport.cpp \
|
---|
3729 | common/table/avlrogcphys.cpp \
|
---|
3730 | common/table/avlrogcptr.cpp \
|
---|
3731 | common/table/avlroioport.cpp \
|
---|
3732 | common/table/avlroogcptr.cpp \
|
---|
3733 | common/table/avlu32.cpp \
|
---|
3734 | common/time/timeprog.cpp \
|
---|
3735 | common/time/timesup.cpp \
|
---|
3736 | gc/initterm-gc.cpp \
|
---|
3737 | generic/RTAssertShouldPanic-generic.cpp \
|
---|
3738 | generic/rtStrFormatKernelAddress-generic.cpp \
|
---|
3739 | generic/errvars-generic.cpp \
|
---|
3740 | \
|
---|
3741 | $(RuntimeNoCrt_SOURCES)
|
---|
3742 |
|
---|
3743 | #if1of ($(KBUILD_TARGET_ARCH),amd64 x86)
|
---|
3744 | # RuntimeRC_SOURCES += common/time/timesupA.asm
|
---|
3745 | #else
|
---|
3746 | RuntimeRC_SOURCES += common/time/timesupref.cpp
|
---|
3747 | #endif
|
---|
3748 |
|
---|
3749 | RuntimeRC_SOURCES.win.x86 = $(RuntimeWin32ASM_SOURCES)
|
---|
3750 |
|
---|
3751 | ifeq ($(VBOX_LDR_FMT32),lx)
|
---|
3752 | RuntimeRC_SOURCES += os2/sys0.asm
|
---|
3753 | endif
|
---|
3754 |
|
---|
3755 | if1of ($(KBUILD_TARGET), darwin solaris freebsd os2)
|
---|
3756 | RuntimeRC_SOURCES += \
|
---|
3757 | common/math/gcc/adddi3.c \
|
---|
3758 | common/math/gcc/anddi3.c \
|
---|
3759 | common/math/gcc/ashldi3.c \
|
---|
3760 | common/math/gcc/ashrdi3.c \
|
---|
3761 | common/math/gcc/cmpdi2.c \
|
---|
3762 | common/math/gcc/divdi3.c \
|
---|
3763 | common/math/gcc/divmoddi4.c \
|
---|
3764 | common/math/gcc/iordi3.c \
|
---|
3765 | common/math/gcc/lshldi3.c \
|
---|
3766 | common/math/gcc/lshrdi3.c \
|
---|
3767 | common/math/gcc/moddi3.c \
|
---|
3768 | common/math/gcc/muldi3.c \
|
---|
3769 | common/math/gcc/negdi2.c \
|
---|
3770 | common/math/gcc/notdi2.c \
|
---|
3771 | common/math/gcc/qdivrem.c \
|
---|
3772 | common/math/gcc/subdi3.c \
|
---|
3773 | common/math/gcc/ucmpdi2.c \
|
---|
3774 | common/math/gcc/udivdi3.c \
|
---|
3775 | common/math/gcc/udivmoddi4.c \
|
---|
3776 | common/math/gcc/umoddi3.c \
|
---|
3777 | common/math/gcc/xordi3.c
|
---|
3778 | endif
|
---|
3779 |
|
---|
3780 |
|
---|
3781 | #
|
---|
3782 | # RuntimeRCStub - Raw-mode context startup stub for Windows.
|
---|
3783 | #
|
---|
3784 | RuntimeRCStub_TEMPLATE = VBoxRc
|
---|
3785 | RuntimeRCStub_SOURCES.win = \
|
---|
3786 | nt/NtProcessStartup-stub.cpp
|
---|
3787 |
|
---|
3788 |
|
---|
3789 | endif # VBOX_WITH_RAW_MODE
|
---|
3790 |
|
---|
3791 |
|
---|
3792 | #
|
---|
3793 | # Static library for new & delete for the electric fence.
|
---|
3794 | #
|
---|
3795 | RuntimeEFCPP_TEMPLATE := $(VBoxRT_TEMPLATE)
|
---|
3796 | RuntimeEFCPP_SDKS := $(RuntimeR3_SDKS)
|
---|
3797 | RuntimeEFCPP_SDKS.$(KBUILD_TARGET) := $(RuntimeR3_SDKS.$(KBUILD_TARGET))
|
---|
3798 | RuntimeEFCPP_DEFS := $(RuntimeR3_DEFS)
|
---|
3799 | RuntimeEFCPP_DEFS.$(KBUILD_TARGET) := $(RuntimeR3_DEFS.$(KBUILD_TARGET))
|
---|
3800 | RuntimeEFCPP_INCS := $(RuntimeR3_INCS)
|
---|
3801 | RuntimeEFCPP_INCS.$(KBUILD_TARGET) := $(RuntimeR3_INCS.$(KBUILD_TARGET))
|
---|
3802 | RuntimeEFCPP_SOURCES := r3/alloc-ef-cpp.cpp
|
---|
3803 |
|
---|
3804 |
|
---|
3805 |
|
---|
3806 | #
|
---|
3807 | # The NTDLL mini import library.
|
---|
3808 | #
|
---|
3809 | # Note! The reason for doing this is to avoid importing CRT symbols from the
|
---|
3810 | # NTDLL. We do not wish to do this because:
|
---|
3811 | # - Our compiler is usually a different one and we should use the
|
---|
3812 | # matching CRT,
|
---|
3813 | # - Older versions of NTDLL may not sport all the exports our w2k3 or
|
---|
3814 | # later WINDDK ntdll.lib have and thus we may easily end up with
|
---|
3815 | # images that does not load on older windows versions.
|
---|
3816 | #
|
---|
3817 | if1of (win,$(KBUILD_TARGET) $(KBUILD_HOST))
|
---|
3818 | RuntimeR3NtDll-amd64_TEMPLATE = VBoxR3Dll
|
---|
3819 | RuntimeR3NtDll-amd64_BLD_TRG_ARCH = amd64
|
---|
3820 | RuntimeR3NtDll-amd64_ARFLAGS = /NODEFAULTLIB /MACHINE:amd64
|
---|
3821 | RuntimeR3NtDll-amd64_SOURCES = \
|
---|
3822 | r3/win/ntdll-mini-implib.def
|
---|
3823 |
|
---|
3824 | RuntimeR3NtDll-x86_TEMPLATE = VBoxR3Dll
|
---|
3825 | RuntimeR3NtDll-x86_BLD_TRG_ARCH = x86
|
---|
3826 | RuntimeR3NtDll-x86_ARFLAGS = /NODEFAULTLIB /MACHINE:x86
|
---|
3827 | RuntimeR3NtDll-x86_SOURCES = \
|
---|
3828 | r3/win/ntdll-mini-implib.def \
|
---|
3829 | $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
|
---|
3830 | RuntimeR3NtDll-x86_CLEAN = \
|
---|
3831 | $(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm
|
---|
3832 |
|
---|
3833 | $$(RuntimeR3NtDll-x86_0_OUTDIR)/ntdll-mini-implib.asm: $(PATH_SUB_CURRENT)/r3/win/ntdll-mini-implib.def | $$(dir $$@)
|
---|
3834 | $(call MSG_GENERATE,,$@,$<)
|
---|
3835 | $(QUIET)$(APPEND) -nt "$@" \
|
---|
3836 | ';Autogenerated, do not edit' \
|
---|
3837 | '%include "iprt/asmdefs.mac"' \
|
---|
3838 | 'BEGINCODE' \
|
---|
3839 | '%macro IMPLIB_EXPORT 1' \
|
---|
3840 | 'global %1:function' \
|
---|
3841 | '%1: nop' \
|
---|
3842 | '%endm' \
|
---|
3843 | ''
|
---|
3844 | $(QUIET)$(SED) -e '1,/EXPORTS/d' \
|
---|
3845 | -e 's/^.*;;=[[:space:]]*\([^[:space:]]*\)[[:space:]]*$$/IMPLIB_EXPORT \1/' \
|
---|
3846 | $< --append $@
|
---|
3847 | endif
|
---|
3848 |
|
---|
3849 | #
|
---|
3850 | # Bag of tricks required for making VCC100 output binaries work on NT4, W2K
|
---|
3851 | # early XP and early W2K3. Used by validation kit.
|
---|
3852 | #
|
---|
3853 | RuntimeR3VccTricks_TEMPLATE = VBoxR3Static
|
---|
3854 | RuntimeR3VccTricks_DEFS = VCC_FAKES_TARGET_$(VBOX_VCC_TOOL_STEM) VCC_FAKES_TARGET=$(substr $(VBOX_VCC_TOOL_STEM),-3)
|
---|
3855 | RuntimeR3VccTricks_SOURCES = \
|
---|
3856 | r3/win/vcc-fakes-kernel32.cpp \
|
---|
3857 | r3/win/vcc-fakes-kernel32-A.asm \
|
---|
3858 | r3/win/vcc-fakes-shell32.cpp \
|
---|
3859 | r3/win/vcc-fakes-shell32-A.asm \
|
---|
3860 | r3/win/vcc-fakes-ntdll.cpp \
|
---|
3861 | r3/win/vcc-fakes-ntdll-A.asm
|
---|
3862 |
|
---|
3863 | if defined(VBOX_WITH_MORE_NT4_COMPAT_BINARIES) && "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86" # Ugly hacks... :-)
|
---|
3864 | LIBRARIES += RuntimeR3VccTricks2
|
---|
3865 | RuntimeR3VccTricks2_TEMPLATE = VBoxR3Dll
|
---|
3866 | RuntimeR3VccTricks2_SOURCES = $(RuntimeR3VccTricks_SOURCES)
|
---|
3867 | RuntimeR3VccTricks2_SOURCES += $(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib
|
---|
3868 | RuntimeR3VccTricks2_CLEAN = $(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib
|
---|
3869 | RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED =
|
---|
3870 |
|
---|
3871 | $$(RuntimeR3VccTricks2_0_OUTDIR)/dynobjs.lib: \
|
---|
3872 | $$(PATH_TOOL_$$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/msvcrt$(VBOX_VCC_CRT_TYPE).lib \
|
---|
3873 | $$(PATH_TOOL_$$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib \
|
---|
3874 | $$(LIB_RUNTIME) \
|
---|
3875 | $(MAKEFILE) | $$(dir $$@)
|
---|
3876 | $(RM) -f -- "$@"
|
---|
3877 | # $(REDIRECT) -C $(dir $@) -- $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib \
|
---|
3878 | # $(PATH_TOOL_$(TEMPLATE_VBoxR3Dll_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib \
|
---|
3879 | # $(foreach file, $(RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED), *$(file))
|
---|
3880 | $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib -o=$@.tmp.lib $< \
|
---|
3881 | -MSVCR100.dll \
|
---|
3882 | $(addprefix $(RuntimeR3VccTricks2_0_OUTDIR)/, $(RuntimeR3VccTricks2_VBOX_LIBCMT_NEEDED)) \
|
---|
3883 | -chandler4gs.obj
|
---|
3884 | $(KBUILD_DEVTOOLS)/common/openwatcom/v1.9-r2/binnt/wlib -o=$@ \
|
---|
3885 | $(LIB_RUNTIME) \
|
---|
3886 | +$@.tmp.lib
|
---|
3887 | $(RM) -f -- $@.tmp.lib $(addprefix $(RuntimeR3VccTricks2_0_OUTDIR)/, $(RuntimeR3VccTricks_VBOX_LIBCMT_NEEDED))
|
---|
3888 | endif
|
---|
3889 |
|
---|
3890 |
|
---|
3891 | #
|
---|
3892 | # errmsg.cpp depends on a generated header.
|
---|
3893 | #
|
---|
3894 | common/err/errmsg.cpp_DEPS = \
|
---|
3895 | $(IPRT_OUT_DIR)/errmsgdata-all.h \
|
---|
3896 | $(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h \
|
---|
3897 | $(IPRT_OUT_DIR)/errmsgdata-only-defines.h
|
---|
3898 | common/err/errmsg.cpp_INCS = $(IPRT_OUT_DIR)
|
---|
3899 |
|
---|
3900 | win/errmsgwin.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgwindata-all.h $(IPRT_OUT_DIR)/errmsgwindata-only-defines.h
|
---|
3901 | win/errmsgwin.cpp_INCS = $(IPRT_OUT_DIR)
|
---|
3902 |
|
---|
3903 | # Our COM errors only for R3 libraries on the host
|
---|
3904 | define def_errmsgwin_deps
|
---|
3905 | $(lib)_common/err/errmsgxpcom.cpp_INCS = $(IPRT_OUT_DIR)
|
---|
3906 | $(lib)_common/err/errmsgxpcom.cpp_DEPS = $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
|
---|
3907 | endef
|
---|
3908 | $(foreach lib,RuntimeR3 RuntimeBldProg VBoxRT VBoxRT-x86,$(eval $(def_errmsgwin_deps)))
|
---|
3909 |
|
---|
3910 |
|
---|
3911 | #
|
---|
3912 | # Generate the status code data.
|
---|
3913 | #
|
---|
3914 | $(IPRT_OUT_DIR)/errmsgdata.h: \
|
---|
3915 | $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.sed \
|
---|
3916 | $(PATH_ROOT)/include/iprt/err.h \
|
---|
3917 | $(PATH_ROOT)/include/VBox/err.h \
|
---|
3918 | | $$(dir $$@)
|
---|
3919 | $(call MSG_GENERATE,,$@,$(filter %.h,$^))
|
---|
3920 | $(QUIET)$(SED) -f $< --output "$@" $(filter %.h,$^)
|
---|
3921 |
|
---|
3922 | $(IPRT_OUT_DIR)/errmsgdata-all.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-all.h: \
|
---|
3923 | $$(bldRTErrMsgSorter_1_TARGET)
|
---|
3924 | $(call MSG_GENERATE,,$@,$<)
|
---|
3925 | $(QUIET)"$<" --all "$(IPRT_OUT_DIR)/errmsgdata-all.h.ts"
|
---|
3926 | $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-all.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-all.h"
|
---|
3927 |
|
---|
3928 | $(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h: \
|
---|
3929 | $$(bldRTErrMsgSorter_1_TARGET)
|
---|
3930 | $(call MSG_GENERATE,,$@,$<)
|
---|
3931 | $(QUIET)"$<" --no-full-msg "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts"
|
---|
3932 | $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-no-full-msg.h"
|
---|
3933 |
|
---|
3934 | $(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts +| $(IPRT_OUT_DIR)/errmsgdata-only-defines.h: \
|
---|
3935 | $$(bldRTErrMsgSorter_1_TARGET)
|
---|
3936 | $(call MSG_GENERATE,,$@,$<)
|
---|
3937 | $(QUIET)"$<" --only-defines "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts"
|
---|
3938 | $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h.ts" "$(IPRT_OUT_DIR)/errmsgdata-only-defines.h"
|
---|
3939 |
|
---|
3940 |
|
---|
3941 | $(IPRT_OUT_DIR)/errmsgwindata.h: \
|
---|
3942 | $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsgcom.sed \
|
---|
3943 | $$(qwildcard ,$$(qaddsuffix ,/WinError.h,$$(SDK_$$(VBOX_WINPSDK)_INCS))) \
|
---|
3944 | | $$(dir $$@)
|
---|
3945 | $(call MSG_GENERATE,,$@,$(deps $@, 2))
|
---|
3946 | $(QUIET)$(SED) -f "$<" --output "$@" $(qdeps sh,$@,2)
|
---|
3947 |
|
---|
3948 | $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts +| $(IPRT_OUT_DIR)/errmsgvboxcomdata.h: \
|
---|
3949 | $(VBOX_PATH_RUNTIME_SRC)/VBox/errmsgvboxcom.xsl \
|
---|
3950 | $(VBOX_XIDL_FILE_SRC) \
|
---|
3951 | | $$(dir $$@)
|
---|
3952 | $(call MSG_GENERATE,,$@,$(filter %.xidl,$^))
|
---|
3953 | $(QUIET)$(VBOX_XSLTPROC) -o $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $< $(filter %.xidl,$^)
|
---|
3954 | $(QUIET)$(CP) --changed -fv -- $(IPRT_OUT_DIR)/errmsgvboxcomdata.h.ts $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
|
---|
3955 |
|
---|
3956 | $(IPRT_OUT_DIR)/errmsgwindata-all.h.ts +| $(IPRT_OUT_DIR)/errmsgwindata-all.h: \
|
---|
3957 | $$(bldRTErrMsgWinSorter_1_TARGET)
|
---|
3958 | $(call MSG_GENERATE,,$@,$<)
|
---|
3959 | $(QUIET)"$<" --all "$(IPRT_OUT_DIR)/errmsgwindata-all.h.ts"
|
---|
3960 | $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgwindata-all.h.ts" "$(IPRT_OUT_DIR)/errmsgwindata-all.h"
|
---|
3961 |
|
---|
3962 | $(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts +| $(IPRT_OUT_DIR)/errmsgwindata-only-defines.h: \
|
---|
3963 | $$(bldRTErrMsgWinSorter_1_TARGET)
|
---|
3964 | $(call MSG_GENERATE,,$@,$<)
|
---|
3965 | $(QUIET)"$<" --only-defines "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts"
|
---|
3966 | $(QUIET)$(CP) --changed -fv -- "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h.ts" "$(IPRT_OUT_DIR)/errmsgwindata-only-defines.h"
|
---|
3967 |
|
---|
3968 |
|
---|
3969 | #
|
---|
3970 | # Sorter for the IPRT status codes.
|
---|
3971 | #
|
---|
3972 | BLDPROGS += bldRTErrMsgSorter
|
---|
3973 | bldRTErrMsgSorter_TEMPLATE = VBoxBldProg
|
---|
3974 | bldRTErrMsgSorter_INCS = $(IPRT_OUT_DIR)
|
---|
3975 | bldRTErrMsgSorter_DEPS = $(IPRT_OUT_DIR)/errmsgdata.h
|
---|
3976 | bldRTErrMsgSorter_SOURCES = common/err/errmsg-sorter.cpp
|
---|
3977 |
|
---|
3978 | #
|
---|
3979 | # Sorter for the windows error codes.
|
---|
3980 | #
|
---|
3981 | BLDPROGS.win += bldRTErrMsgWinSorter
|
---|
3982 | bldRTErrMsgWinSorter_TEMPLATE = VBoxBldProg
|
---|
3983 | bldRTErrMsgWinSorter_INCS = $(IPRT_OUT_DIR)
|
---|
3984 | bldRTErrMsgWinSorter_DEPS = \
|
---|
3985 | $(IPRT_OUT_DIR)/errmsgwindata.h \
|
---|
3986 | $(IPRT_OUT_DIR)/errmsgvboxcomdata.h
|
---|
3987 | bldRTErrMsgWinSorter_SOURCES = win/errmsgwin-sorter.cpp
|
---|
3988 |
|
---|
3989 |
|
---|
3990 |
|
---|
3991 | if "$(KBUILD_TARGET)" == "freebsd"
|
---|
3992 | #
|
---|
3993 | # FreeBSDGeneratedKernelHeaders - Generate some kernel interface headers.
|
---|
3994 | #
|
---|
3995 | # These are used by:
|
---|
3996 | # - The RTMp* API in IPRT.
|
---|
3997 | # - VBoxGuest
|
---|
3998 | #
|
---|
3999 | # Note! We cannot give a output path to the awk program, it will always
|
---|
4000 | # generate the header next to the source. So, we'll have to temporarily copy
|
---|
4001 | # the source file to the destination directory to work.
|
---|
4002 | #
|
---|
4003 | VBOX_AWK := /usr/bin/awk
|
---|
4004 | INSTALLS += FreeBSDGeneratedKernelHeaders
|
---|
4005 | FreeBSDGeneratedKernelHeaders_INST = gen-sys-hdrs/
|
---|
4006 | FreeBSDGeneratedKernelHeaders_SOURCES = \
|
---|
4007 | $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h \
|
---|
4008 | $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h \
|
---|
4009 | $(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h
|
---|
4010 | FreeBSDGeneratedKernelHeaders_CLEAN = $(FreeBSDGeneratedKernelHeaders_SOURCES)
|
---|
4011 |
|
---|
4012 | $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/bus_if.h: $(VBOX_FREEBSD_SRC)/kern/bus_if.m | $$(dir $$@)
|
---|
4013 | $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
|
---|
4014 | $(QUIET)$(CP) -f $< $(@D)/bus_if.m
|
---|
4015 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/bus_if.m -h -p
|
---|
4016 | $(QUIET)$(RM) $(@D)/bus_if.m
|
---|
4017 |
|
---|
4018 | $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/device_if.h: $(VBOX_FREEBSD_SRC)/kern/device_if.m | $$(dir $$@)
|
---|
4019 | $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
|
---|
4020 | $(QUIET)$(CP) -f $< $(@D)/device_if.m
|
---|
4021 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/device_if.m -h -p
|
---|
4022 | $(QUIET)$(RM) $(@D)/device_if.m
|
---|
4023 |
|
---|
4024 | $$(FreeBSDGeneratedKernelHeaders_0_OUTDIR)/pci_if.h: $(VBOX_FREEBSD_SRC)/dev/pci/pci_if.m | $$(dir $$@)
|
---|
4025 | $(call MSG_TOOL,awk,FreeBSDGeneratedKernelHeaders,$<,$@)
|
---|
4026 | $(QUIET)$(CP) -f $< $(@D)/pci_if.m
|
---|
4027 | $(QUIET)$(VBOX_AWK) -f $(VBOX_FREEBSD_SRC)/tools/makeobjops.awk $(@D)/pci_if.m -h -p
|
---|
4028 | $(QUIET)$(RM) $(@D)/pci_if.m
|
---|
4029 | endif # FreeBSD
|
---|
4030 |
|
---|
4031 |
|
---|
4032 | #
|
---|
4033 | # Aliases for .cpp.h files so we can more easily do syntax checking from the editor.
|
---|
4034 | #
|
---|
4035 | ldrELFRelocatable.cpp.o: ldrELF.o
|
---|
4036 | ldrELFRelocatable.cpp.obj: ldrELF.obj
|
---|
4037 |
|
---|
4038 |
|
---|
4039 | #
|
---|
4040 | # Doxygen documentation.
|
---|
4041 | #
|
---|
4042 | IPRT_DOXYFILE_INPUT_DIRS = \
|
---|
4043 | $(PATH_ROOT)/include/iprt \
|
---|
4044 | $(PATH_ROOT)/include/iprt/cpp \
|
---|
4045 | $(PATH_ROOT)/include/iprt/linux \
|
---|
4046 | $(PATH_ROOT)/include/iprt/nocrt \
|
---|
4047 | $(PATH_ROOT)/include/iprt/nocrt/x86 \
|
---|
4048 | $(PATH_ROOT)/include/iprt/nocrt/amd64 \
|
---|
4049 | $(PATH_ROOT)/include/iprt/nocrt/compiler \
|
---|
4050 | $(VBOX_PATH_RUNTIME_SRC)/include/internal \
|
---|
4051 | $(VBOX_PATH_RUNTIME_SRC)/common/alloc \
|
---|
4052 | $(VBOX_PATH_RUNTIME_SRC)/common/asm \
|
---|
4053 | $(VBOX_PATH_RUNTIME_SRC)/common/checksum \
|
---|
4054 | $(VBOX_PATH_RUNTIME_SRC)/common/dbg \
|
---|
4055 | $(VBOX_PATH_RUNTIME_SRC)/common/err \
|
---|
4056 | $(VBOX_PATH_RUNTIME_SRC)/common/ldr \
|
---|
4057 | $(VBOX_PATH_RUNTIME_SRC)/common/log \
|
---|
4058 | $(VBOX_PATH_RUNTIME_SRC)/common/math \
|
---|
4059 | $(VBOX_PATH_RUNTIME_SRC)/common/math/amd64 \
|
---|
4060 | $(VBOX_PATH_RUNTIME_SRC)/common/math/gcc \
|
---|
4061 | $(VBOX_PATH_RUNTIME_SRC)/common/math/x86 \
|
---|
4062 | $(VBOX_PATH_RUNTIME_SRC)/common/misc \
|
---|
4063 | $(VBOX_PATH_RUNTIME_SRC)/common/path \
|
---|
4064 | $(VBOX_PATH_RUNTIME_SRC)/common/rand \
|
---|
4065 | $(VBOX_PATH_RUNTIME_SRC)/common/string \
|
---|
4066 | $(VBOX_PATH_RUNTIME_SRC)/common/table \
|
---|
4067 | $(VBOX_PATH_RUNTIME_SRC)/common/time \
|
---|
4068 | $(VBOX_PATH_RUNTIME_SRC)/VBox \
|
---|
4069 | $(foreach dir, $(VBOX_PATH_RUNTIME_SRC) $(VBOX_PATH_RUNTIME_SRC)/r3 $(VBOX_PATH_RUNTIME_SRC)/r0drv,\
|
---|
4070 | $(dir) \
|
---|
4071 | $(dir)/darwin \
|
---|
4072 | $(dir)/haiku \
|
---|
4073 | $(dir)/linux \
|
---|
4074 | $(dir)/nt \
|
---|
4075 | $(dir)/os2 \
|
---|
4076 | $(dir)/solaris \
|
---|
4077 | $(dir)/win \
|
---|
4078 | $(dir)/win32 \
|
---|
4079 | $(dir)/win64 \
|
---|
4080 | $(dir)/generic \
|
---|
4081 | )
|
---|
4082 |
|
---|
4083 | # These must come first in order to make things look nice.
|
---|
4084 | IPRT_DOXYFILE_INPUT_FIRST =\
|
---|
4085 | $(PATH_ROOT)/include/iprt/cdefs.h \
|
---|
4086 | $(PATH_ROOT)/include/iprt/types.h \
|
---|
4087 | $(PATH_ROOT)/include/iprt/runtime.h \
|
---|
4088 | $(PATH_ROOT)/include/iprt/param.h \
|
---|
4089 | $(PATH_ROOT)/include/iprt/assert.h \
|
---|
4090 | $(PATH_ROOT)/include/iprt/asm.h \
|
---|
4091 |
|
---|
4092 | IPRT_DOXYFILE_INPUT := \
|
---|
4093 | $(filter-out %.cpp.h, $(sort $(wildcard $(addsuffix /*.h, $(IPRT_DOXYFILE_INPUT_DIRS)))) ) \
|
---|
4094 | $(foreach dir, $(IPRT_DOXYFILE_INPUT_DIRS), $(wildcard $(dir)/*.cpp $(dir)/.c $(dir)/.asm))
|
---|
4095 | IPRT_DOXYFILE_INPUT := \
|
---|
4096 | $(IPRT_DOXYFILE_INPUT_FIRST) \
|
---|
4097 | $(sort $(filter-out $(IPRT_DOXYFILE_INPUT_FIRST), $(IPRT_DOXYFILE_INPUT)))
|
---|
4098 |
|
---|
4099 |
|
---|
4100 | IPRT_DOXYFILE_OUTPUT = $(PATH_OUT)/docs/iprt
|
---|
4101 | BLDDIRS += $(IPRT_DOXYFILE_OUTPUT)
|
---|
4102 |
|
---|
4103 | includedep $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt.dep
|
---|
4104 |
|
---|
4105 | # Generate the Doxyfile
|
---|
4106 | $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt: \
|
---|
4107 | $(VBOX_PATH_RUNTIME_SRC)/Doxyfile \
|
---|
4108 | $(VBOX_PATH_RUNTIME_SRC)/Makefile.kmk \
|
---|
4109 | $(comp-vars IPRT_DOXYFILE_INPUT,DOXYGEN_IPRT_INPUT_PREV,FORCE) \
|
---|
4110 | $(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_IPRT_OUTPUT_PREV,FORCE) \
|
---|
4111 | | $$(dir $$@)
|
---|
4112 | $(QUIET)$(RM) -f $@ $@.tmp $@.dep
|
---|
4113 | $(QUIET)$(CP) -f $(VBOX_PATH_RUNTIME_SRC)/Doxyfile $@.tmp
|
---|
4114 | $(QUIET)$(APPEND) $@.tmp
|
---|
4115 | $(QUIET)$(APPEND) $@.tmp "OUTPUT_DIRECTORY = $(IPRT_DOXYFILE_OUTPUT)"
|
---|
4116 | $(QUIET)$(APPEND) $@.tmp "WARN_LOGFILE = $(IPRT_DOXYFILE_OUTPUT)/errors"
|
---|
4117 | $(QUIET)$(APPEND) $@.tmp 'INCLUDE_PATH = ' \
|
---|
4118 | '$(PATH_ROOT)/include' \
|
---|
4119 | '$(VBOX_PATH_RUNTIME_SRC)/include' \
|
---|
4120 | '$(VBOX_PATH_RUNTIME_SRC)/' \
|
---|
4121 | '$(VBOX_PATH_RUNTIME_SRC)/common/table'
|
---|
4122 | $(QUIET)$(APPEND) $@.tmp "INCLUDE_FILE_PATTERNS = *.cpp.h"
|
---|
4123 | $(QUIET)$(APPEND) $@.tmp "PREDEFINED += $(ARCH_BITS_DEFS)"
|
---|
4124 | $(QUIET)$(APPEND) $@.tmp 'EXCLUDE = '\
|
---|
4125 | '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-flags.cpp' \
|
---|
4126 | '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-lower.cpp' \
|
---|
4127 | '$(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-upper.cpp' \
|
---|
4128 | $(QUIET)$(APPEND) $@.tmp
|
---|
4129 | $(QUIET)$(APPEND) $@.tmp 'INPUT = $(foreach x,$(IPRT_DOXYFILE_INPUT),\$(NLTAB)$(x))'
|
---|
4130 | $(QUIET)$(APPEND) $@.tmp
|
---|
4131 | $(QUIET)$(MV) -f $@.tmp $@
|
---|
4132 | $(QUIET)$(APPEND) $@.dep "DOXYGEN_IPRT_OUTPUT_PREV = $(IPRT_DOXYFILE_OUTPUT)"
|
---|
4133 | $(QUIET)$(APPEND) $@.dep "DOXYGEN_IPRT_INPUT_PREV = $(IPRT_DOXYFILE_INPUT)"
|
---|
4134 |
|
---|
4135 | # Do the actual job.
|
---|
4136 | $(IPRT_DOXYFILE_OUTPUT)/docs.iprt: $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt $$(IPRT_DOXYFILE_INPUT) \
|
---|
4137 | | $(IPRT_DOXYFILE_OUTPUT)/
|
---|
4138 | $(QUIET)$(RM) -f $@
|
---|
4139 | $(QUIET)$(RM) -Rf $(IPRT_DOXYFILE_OUTPUT)/html/
|
---|
4140 | doxygen $(DOXYGEN_OPTS) $(IPRT_DOXYFILE_OUTPUT)/Doxyfile.iprt
|
---|
4141 | $(SED) -e '/warning. Unexpected tag .dd. found/d' \
|
---|
4142 | -e '/warning. Unsupported xml.html tag .globalScope. found/d' \
|
---|
4143 | --output $(IPRT_DOXYFILE_OUTPUT)/errors2 \
|
---|
4144 | $(IPRT_DOXYFILE_OUTPUT)/errors
|
---|
4145 | $(CAT) $(IPRT_DOXYFILE_OUTPUT)/errors2
|
---|
4146 | $(SED) -e "/[^ ]/q 1" $(IPRT_DOXYFILE_OUTPUT)/errors2
|
---|
4147 | $(APPEND) $@
|
---|
4148 |
|
---|
4149 | # aliases
|
---|
4150 | docs.iprt: $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
|
---|
4151 | if !defined(VBOX_ONLY_DOCS) && defined(VBOX_WITH_ALL_DOXYGEN_TARGETS)
|
---|
4152 | docs: $(IPRT_DOXYFILE_OUTPUT)/docs.iprt
|
---|
4153 | endif
|
---|
4154 |
|
---|
4155 | test-doxygen::
|
---|
4156 | @echo test-$(comp-vars IPRT_DOXYFILE_OUTPUT,DOXYGEN_IPRT_OUTPUT_PREV,FORCE)
|
---|
4157 | @echo $(IPRT_DOXYFILE_OUTPUT)
|
---|
4158 | @echo $(DOXYGEN_IPRT_OUTPUT_PREV)
|
---|
4159 | @echo $(IPRT_DOXYFILE_INPUT)
|
---|
4160 |
|
---|
4161 |
|
---|
4162 | #
|
---|
4163 | # Test mangling.
|
---|
4164 | #
|
---|
4165 | if1of ($(LIBRARIES),RuntimeR3 RuntimeR0 RuntimeR0Drv RuntimeRC)
|
---|
4166 | test-mangling:: $(IPRT_OUT_DIR)/mangling.run
|
---|
4167 | OTHERS += $(IPRT_OUT_DIR)/mangling.run
|
---|
4168 | OTHER_CLEAN += $(IPRT_OUT_DIR)/mangling.run
|
---|
4169 | $(IPRT_OUT_DIR)/mangling.run: \
|
---|
4170 | $$(RuntimeR3_1_TARGET) \
|
---|
4171 | $$(RuntimeR0_1_TARGET) \
|
---|
4172 | $$(RuntimeR0Drv_1_TARGET) \
|
---|
4173 | $$(RuntimeRC_1_TARGET)
|
---|
4174 | if1of ($(KBUILD_TARGET), win os2)
|
---|
4175 | $(call MSG_L1,IPRT: skipped mangling test.)
|
---|
4176 | else
|
---|
4177 | # Generate a SED script from mangling.h that checks for known symbols.
|
---|
4178 | $(QUIET)$(SED) \
|
---|
4179 | -e '/^# *define.*RT_MANGLER/!d' \
|
---|
4180 | -e 's/^.*RT_MANGLER(\([^)][^)]*\)).*$(DOLLAR)/\/^\1$(DOLLAR)\/b ok/' \
|
---|
4181 | $(PATH_ROOT)/include/iprt/mangling.h \
|
---|
4182 | --output "$@"
|
---|
4183 | $(QUIET)$(APPEND) -n '$@' \
|
---|
4184 | ':bad' \
|
---|
4185 | 's/^\(.*\)$(DOLLAR)/error: Missing # define \1 /' \
|
---|
4186 | ':bad-pad' \
|
---|
4187 | '/^.\{0,70\}$(DOLLAR)/ { s/$(DOLLAR)/ /; bbad-pad; }' \
|
---|
4188 | 's/define \([^ ]*\) \([ ]*\)$(DOLLAR)/define \1 \2RT_MANGLER(\1)/' \
|
---|
4189 | 'p' \
|
---|
4190 | $(if-expr !defined(IPRT_IGNORE_TEST_MANGLING),'q 1') \
|
---|
4191 | '' \
|
---|
4192 | ':ok' \
|
---|
4193 | 'd'
|
---|
4194 | # Find the best way to generate a symbol list and subject it to mangling.h.
|
---|
4195 | if $(intersects $(KBUILD_TARGET), linux) && "$(VBOX_GCC_fvisibility-hidden)"
|
---|
4196 | $(call MSG_L1,IPRT: Testing mangling and visiblity for newer gcc...)
|
---|
4197 | $(QUIET)readelf -Ws $^ \
|
---|
4198 | | $(SED) \
|
---|
4199 | -e 's/[[:space:]]\+/ /g' \
|
---|
4200 | -e '/^ *[[:digit:]]\+:/!d' \
|
---|
4201 | -e 's/^ \+[[:digit:]]\+: \+[[:xdigit:]]\+ \+[[:digit:]]\+ \+//' \
|
---|
4202 | -e '/^SECTION/d' \
|
---|
4203 | -e '/^FILE/d' \
|
---|
4204 | -e 's/^[[:alpha:]]\+ \+//' \
|
---|
4205 | -e '/LOCAL/d' \
|
---|
4206 | -e 's/^[[:alpha:]]\+ \+//' \
|
---|
4207 | -e '/^HIDDEN [[:xdigit:]]\+ RT/bkeep-hidden' \
|
---|
4208 | -e '/^HIDDEN [[:xdigit:]]\+ g_[a-z0-9]*RT/bkeep-hidden' \
|
---|
4209 | -e '/^HIDDEN/d' \
|
---|
4210 | -e ':keep-hidden' \
|
---|
4211 | -e 's/^[[:alpha:]]\+ \+//' \
|
---|
4212 | -e '/^UND/d' \
|
---|
4213 | -e 's/^[[:digit:]]\+ \+//' \
|
---|
4214 | \
|
---|
4215 | -e '/^nocrt_/d' \
|
---|
4216 | -e '/^bzero/d' \
|
---|
4217 | -e '/^memchr/d' \
|
---|
4218 | -e '/^memcmp/d' \
|
---|
4219 | -e '/^memcpy/d' \
|
---|
4220 | -e '/^mempcpy/d' \
|
---|
4221 | -e '/^memmove/d' \
|
---|
4222 | -e '/^memset/d' \
|
---|
4223 | -e '/^strchr/d' \
|
---|
4224 | -e '/^strpbrk/d' \
|
---|
4225 | -e '/^_Z7strpbrk/d' \
|
---|
4226 | -e '/^strcmp/d' \
|
---|
4227 | -e '/^strcpy/d' \
|
---|
4228 | -e '/^strncpy/d' \
|
---|
4229 | -e '/^strlen/d' \
|
---|
4230 | -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
|
---|
4231 | -e '/^_Z[[:alpha:]]*[[:digit:]]\+RTC/d' \
|
---|
4232 | \
|
---|
4233 | -e '/^_ZnwjPv/d' \
|
---|
4234 | -e '/^_ZnwmPv/d' \
|
---|
4235 | -e '/^_ZNSt9bad_allocC1Ev/d' \
|
---|
4236 | -e '/^_ZNSt9bad_allocC[12]ERKS_/d' \
|
---|
4237 | -e '/^_ZNSt9exceptionC[12]Ev/d' \
|
---|
4238 | -e '/^_ZNSt9exceptionC[12]ERKS_/d' \
|
---|
4239 | \
|
---|
4240 | -e '/^_ZN[a-zA-Z]*St[[:digit:]]*_*[lL]ist/d' \
|
---|
4241 | -e '/^_ZN[a-zA-Z]*[[:digit:]]*__gnu_cxx/d' \
|
---|
4242 | -e '/^_ZNSa.*ElementNode.*/d' \
|
---|
4243 | -e '/^_ZSt.*ElementNode.*/d' \
|
---|
4244 | \
|
---|
4245 | -e '/^_Z[[:digit:]]\+dbus/d' \
|
---|
4246 | -e '/^_Z13RTDBusLoadLibv/d' \
|
---|
4247 | \
|
---|
4248 | -e '/^g_[ac]VTG/d' \
|
---|
4249 | -e '/^g_VTGObjHeader/d' \
|
---|
4250 | -e '/^g_VTGProbeData/d' \
|
---|
4251 | -e '/^VTGProbeStub/d' \
|
---|
4252 | -e '/^g_achVTGStringTable/d' \
|
---|
4253 | -e '/^g_acVTGProbeEnabled/d' \
|
---|
4254 | \
|
---|
4255 | -e '/^VBoxHost_/d'\
|
---|
4256 | -e '/^VBoxGuest_/d'\
|
---|
4257 | | $(SED) -nf "$@"
|
---|
4258 | endif
|
---|
4259 | $(call MSG_L1,IPRT: Testing mangling using nm...)
|
---|
4260 | $(QUIET)$(VBOX_NM) $^ 2> /dev/null \
|
---|
4261 | | $(SED) -n \
|
---|
4262 | -e 's/^[0-9a-f][0-9a-f]* //' \
|
---|
4263 | -e '/^[TUDB] /!d' \
|
---|
4264 | -e 's/^. //' \
|
---|
4265 | $(if-expr "$(KBUILD_TARGET)" == "darwin" || "$(KBUILD_TARGET)" == "os2" || "$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)" == "win.x86", \
|
---|
4266 | -e 's/^_//',) \
|
---|
4267 | \
|
---|
4268 | -e '/^g_cchrt/d'\
|
---|
4269 | -e '/^g_frt/d'\
|
---|
4270 | -e '/^g_offrt/d'\
|
---|
4271 | -e '/^g_pfnrt/d'\
|
---|
4272 | -e '/^g_rt/d'\
|
---|
4273 | -e '/^g_szrt/d'\
|
---|
4274 | -e '/^g_ProcessSelf/d'\
|
---|
4275 | -e '/^g_u64ProgramStart/d'\
|
---|
4276 | -e '/^g_enmProcessPriority/d'\
|
---|
4277 | -e '/^g_hDbgModStrCache/d'\
|
---|
4278 | -e '/^g_pfnR0Darwin/d'\
|
---|
4279 | -e '/^g_pDarwinLockGroup/d'\
|
---|
4280 | $(if-expr "$(KBUILD_TARGET)" == "solaris", \
|
---|
4281 | -e '/^g_kLdrRdrFileOps/d' \
|
---|
4282 | -e '/^g_pSUPGlobalInfoPage/d' \
|
---|
4283 | -e '/^g_Logger/d' \
|
---|
4284 | -e '/^g_RelLogger/d' \
|
---|
4285 | -e '/^g_VM/d',) \
|
---|
4286 | $(if-expr "$(KBUILD_TARGET)" == "linux", \
|
---|
4287 | -e '/^g_kLdrRdrFileOps/d',) \
|
---|
4288 | \
|
---|
4289 | -e '/^g_[ac]VTG/d' \
|
---|
4290 | -e '/^g_VTGObjHeader/d' \
|
---|
4291 | -e '/^g_VTGProbeData/d' \
|
---|
4292 | -e '/^VTGProbeStub/d' \
|
---|
4293 | -e '/^g_achVTGStringTable/d' \
|
---|
4294 | -e '/^g_acVTGProbeEnabled/d' \
|
---|
4295 | \
|
---|
4296 | -e '/^RTDBusLoadLib/d' \
|
---|
4297 | \
|
---|
4298 | -e '/^RT/p' \
|
---|
4299 | -e '/^g_/p' \
|
---|
4300 | | $(SED) -nf "$@"
|
---|
4301 | endif
|
---|
4302 | endif
|
---|
4303 | $(QUIET)$(APPEND) -t $@
|
---|
4304 |
|
---|
4305 | if !defined(VBOX_ONLY_ADDITIONS) && !defined(VBOX_ONLY_VALIDATIONKIT) && !defined(VBOX_ONLY_DOCS)
|
---|
4306 | #
|
---|
4307 | # Windows build tool.
|
---|
4308 | #
|
---|
4309 | BLDPROGS.win += ntBldSymDb
|
---|
4310 | ntBldSymDb_TEMPLATE = VBoxAdvBldProg
|
---|
4311 | ntBldSymDb_INCS = .
|
---|
4312 | ntBldSymDb_SOURCES = r0drv/nt/ntBldSymDb.cpp
|
---|
4313 | endif
|
---|
4314 |
|
---|
4315 |
|
---|
4316 | #
|
---|
4317 | # Generate the rules (we're the to sub-makefile).
|
---|
4318 | #
|
---|
4319 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
4320 |
|
---|
4321 |
|
---|
4322 | #
|
---|
4323 | # Aliases for code templates.
|
---|
4324 | #
|
---|
4325 | rsa-template.o rsa-template.obj: rsa-core.o rsa-asn1-decoder.o rsa-sanity.o rsa-init.o
|
---|
4326 | spc-template.o spc-template.obj: spc-core.o spc-asn1-decoder.o spc-sanity.o spc-init.o
|
---|
4327 | taf-template.o taf-template.obj: taf-core.o taf-asn1-decoder.o taf-sanity.o taf-init.o
|
---|
4328 | tsp-template.o tsp-template.obj: tsp-core.o tsp-asn1-decoder.o tsp-sanity.o tsp-init.o
|
---|
4329 | x509-template.o x509-template.obj: x509-core.o x509-asn1-decoder.o x509-sanity.o x509-init.o
|
---|
4330 | pkcs7-template.o pkcs7-template.obj: pkcs7-core.o pkcs7-asn1-decoder.o pkcs7-sanity.o pkcs7-init.o
|
---|