1 | # $Id: Makefile.kmk 102470 2023-12-05 11:03:48Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for XPCOM.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | # Make sure our Config.kmk is included.
|
---|
32 | ifndef VBOX_PATH_XPCOM_SRC
|
---|
33 | include $(PATH_SUB_CURRENT)/Config.kmk
|
---|
34 | endif
|
---|
35 |
|
---|
36 | #
|
---|
37 | # Globals
|
---|
38 | #
|
---|
39 |
|
---|
40 | # File for filtering out C symbols from the XPCOM library. Used to avoid
|
---|
41 | # symbol namespace pollution, causing trouble with system libraries.
|
---|
42 | XPCOM_C_NAMESPACE_MAP = $(VBOX_PATH_XPCOM_SRC)/xpcom-namespace-cleanup.map
|
---|
43 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
44 | # At the moment, only Solaris uses the generated map file. GNU ld is smart
|
---|
45 | # enough to handle symbol wildcards itself.
|
---|
46 | if1of ($(KBUILD_TARGET), solaris)
|
---|
47 | XPCOM_C_NAMESPACE_MAP = $(PATH_TARGET)/xpcom-namespace-cleanup.map
|
---|
48 | OTHER_CLEAN += $(XPCOM_C_NAMESPACE_MAP)
|
---|
49 | endif
|
---|
50 | endif
|
---|
51 |
|
---|
52 | # @todo check whether VBoxXPCOMIPCC.so or VBoxXPCOMIPCD contain undefined
|
---|
53 | # symbols starting with NS_, PL_, PR_ or XPT. Would move the test time failure
|
---|
54 | # when missing a symbol renaming to a build time failure. Likewise, there
|
---|
55 | # should be a check whether VBoxXPCOM.so contains global C symbols (at least
|
---|
56 | # where the whitelisting of symbols via the map file is not used).
|
---|
57 |
|
---|
58 | #
|
---|
59 | # Header installs.
|
---|
60 | #
|
---|
61 | INSTALLS += \
|
---|
62 | NSPRPUB-HEADERS \
|
---|
63 | STRING-HEADERS \
|
---|
64 | XPCOM-HEADERS \
|
---|
65 | IPCD-HEADERS
|
---|
66 |
|
---|
67 | #
|
---|
68 | # The IDL compiler, typelib linker and xpt files.
|
---|
69 | #
|
---|
70 | BLDPROGS += \
|
---|
71 | xpidl \
|
---|
72 | xpt_link
|
---|
73 |
|
---|
74 | BLDDIRS += \
|
---|
75 | $(PATH_TARGET)/VBox-xpcom-xpt-files/
|
---|
76 |
|
---|
77 | #
|
---|
78 | # Always build the VBoxXPCOM import library.
|
---|
79 | #
|
---|
80 | IMPORT_LIBS += VBoxXPCOMImp
|
---|
81 |
|
---|
82 | #
|
---|
83 | # We build several libraries so that any linker command line
|
---|
84 | # length restrictions limit will be avoided. (Solaris, Mac?)
|
---|
85 | #
|
---|
86 | if !defined(VBOX_ONLY_SDK) && (!defined(VBOX_ONLY_EXTPACKS) || !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS))
|
---|
87 |
|
---|
88 | VBOX_XPCOM_LIBRARIES := \
|
---|
89 | VBox-xpcom-nspr \
|
---|
90 | VBox-xpcom-typelib \
|
---|
91 | VBox-xpcom-string \
|
---|
92 | VBox-xpcom-base \
|
---|
93 | VBox-xpcom-ds \
|
---|
94 | VBox-xpcom-io \
|
---|
95 | VBox-xpcom-components \
|
---|
96 | VBox-xpcom-threads \
|
---|
97 | VBox-xpcom-xptinfo \
|
---|
98 | VBox-xpcom-xptcall \
|
---|
99 | VBox-xpcom-proxy \
|
---|
100 | VBox-xpcom-ipcshared \
|
---|
101 | VBoxXPCOMGlue_s \
|
---|
102 | $(if $(VBOX_WITH_XPCOM_GLUE_WHICH_IS_UNUSED),VBoxXPCOMGlue,)
|
---|
103 | LIBRARIES += $(VBOX_XPCOM_LIBRARIES)
|
---|
104 |
|
---|
105 | VBOX_XPCOM_DLLS := \
|
---|
106 | VBoxXPCOM \
|
---|
107 | VBoxXPCOMIPCC
|
---|
108 | DLLS += $(VBOX_XPCOM_DLLS)
|
---|
109 |
|
---|
110 | ifdef VBOX_WITH_32_ON_64_MAIN_API
|
---|
111 | LIBRARIES += $(addsuffix -x86,$(VBOX_XPCOM_LIBRARIES))
|
---|
112 | DLLS += $(addsuffix -x86,$(VBOX_XPCOM_DLLS))
|
---|
113 | endif
|
---|
114 |
|
---|
115 |
|
---|
116 | ifdef VBOX_WITH_TESTCASES
|
---|
117 | PROGRAMS += \
|
---|
118 | tstnsIFileTest \
|
---|
119 | tstTestArray \
|
---|
120 | tstTestAutoLock \
|
---|
121 | tstTestCOMPtr \
|
---|
122 | tstTestCOMPtrEq \
|
---|
123 | tstTestCRT \
|
---|
124 | tstTestFactory \
|
---|
125 | tstTestHashtables \
|
---|
126 | tstTestID \
|
---|
127 | tstTestObserverService \
|
---|
128 | tstTestXPIDLString \
|
---|
129 | tstTestXPTCInvoke \
|
---|
130 | tstTestDeque \
|
---|
131 | tstTestAutoPtr \
|
---|
132 | tstTestMinStringAPI \
|
---|
133 | tstTestStrings \
|
---|
134 | tstPrimitiveTest
|
---|
135 | endif # VBOX_WITH_TESTCASES
|
---|
136 | PROGRAMS += VBoxXPCOMIPCD
|
---|
137 |
|
---|
138 | endif # !VBOX_ONLY_SDK && (!defined(VBOX_ONLY_EXTPACKS) || !defined(VBOX_ONLY_EXTPACKS_USE_IMPLIBS))
|
---|
139 |
|
---|
140 |
|
---|
141 |
|
---|
142 |
|
---|
143 | #
|
---|
144 | # SDK headers - lot's of files to install...
|
---|
145 | #
|
---|
146 | # Tip: If you are going to remove files here, you might
|
---|
147 | # wish to do a `kmk uninstall' first to avoid have
|
---|
148 | # obsoleted files in the $(INST_SDK) directory.
|
---|
149 | #
|
---|
150 | NSPRPUB-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/
|
---|
151 | NSPRPUB-HEADERS_IFFLAGS = -m 644
|
---|
152 | NSPRPUB-HEADERS_SOURCES = \
|
---|
153 | nsprpub/pr/include/nspr.h \
|
---|
154 | nsprpub/lib/ds/plarena.h \
|
---|
155 | nsprpub/lib/ds/plarenas.h \
|
---|
156 | nsprpub/lib/ds/plhash.h \
|
---|
157 | nsprpub/pr/include/prbit.h \
|
---|
158 | nsprpub/pr/include/prlong.h \
|
---|
159 | nsprpub/pr/include/prmem.h \
|
---|
160 | nsprpub/pr/include/prmon.h \
|
---|
161 | nsprpub/pr/include/prtime.h \
|
---|
162 | nsprpub/pr/include/prtypes.h \
|
---|
163 | nsprpub/pr/include/md/_vbox.cfg=>prcpucfg.h
|
---|
164 |
|
---|
165 | STRING-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/string/
|
---|
166 | STRING-HEADERS_IFFLAGS = -m 644
|
---|
167 | STRING-HEADERS_SOURCES = \
|
---|
168 | xpcom/string/public/nsAString.h \
|
---|
169 | xpcom/string/public/nsAlgorithm.h \
|
---|
170 | xpcom/string/public/nsCharTraits.h \
|
---|
171 | xpcom/string/public/nsDependentString.h \
|
---|
172 | xpcom/string/public/nsDependentSubstring.h \
|
---|
173 | xpcom/string/public/nsEmbedString.h \
|
---|
174 | xpcom/string/public/nsLiteralString.h \
|
---|
175 | xpcom/string/public/nsObsoleteAString.h \
|
---|
176 | xpcom/string/public/nsPrintfCString.h \
|
---|
177 | xpcom/string/public/nsPromiseFlatString.h \
|
---|
178 | xpcom/string/public/nsReadableUtils.h \
|
---|
179 | xpcom/string/public/nsString.h \
|
---|
180 | xpcom/string/public/nsStringAPI.h \
|
---|
181 | xpcom/string/public/nsStringFwd.h \
|
---|
182 | xpcom/string/public/nsStringIterator.h \
|
---|
183 | xpcom/string/public/nsSubstring.h \
|
---|
184 | xpcom/string/public/nsSubstringTuple.h \
|
---|
185 | xpcom/string/public/nsTAString.h \
|
---|
186 | xpcom/string/public/nsTDependentString.h \
|
---|
187 | xpcom/string/public/nsTDependentSubstring.h \
|
---|
188 | xpcom/string/public/nsTObsoleteAString.h \
|
---|
189 | xpcom/string/public/nsTPromiseFlatString.h \
|
---|
190 | xpcom/string/public/nsTString.h \
|
---|
191 | xpcom/string/public/nsTSubstring.h \
|
---|
192 | xpcom/string/public/nsTSubstringTuple.h \
|
---|
193 | xpcom/string/public/nsUTF8Utils.h \
|
---|
194 | xpcom/string/public/nsXPIDLString.h \
|
---|
195 | xpcom/string/public/string-template-def-char.h \
|
---|
196 | xpcom/string/public/string-template-def-unichar.h \
|
---|
197 | xpcom/string/public/string-template-undef.h
|
---|
198 |
|
---|
199 | XPCOM-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/xpcom/
|
---|
200 | XPCOM-HEADERS_IFFLAGS = -m 644
|
---|
201 | XPCOM-HEADERS_SOURCES = \
|
---|
202 | xpcom/base/nsAgg.h \
|
---|
203 | xpcom/io/nsAppDirectoryServiceDefs.h \
|
---|
204 | xpcom/ds/nsArray.h \
|
---|
205 | xpcom/ds/nsArrayEnumerator.h \
|
---|
206 | xpcom/ds/nsAtomService.h \
|
---|
207 | xpcom/threads/nsAutoLock.h \
|
---|
208 | xpcom/base/nsAutoPtr.h \
|
---|
209 | xpcom/ds/nsBaseHashtable.h \
|
---|
210 | xpcom/ds/nsCOMArray.h \
|
---|
211 | xpcom/ds/nsCRT.h \
|
---|
212 | xpcom/components/nsCategoryManagerUtils.h \
|
---|
213 | xpcom/ds/nsClassHashtable.h \
|
---|
214 | xpcom/components/nsComponentManagerObsolete.h \
|
---|
215 | xpcom/components/nsComponentManagerUtils.h \
|
---|
216 | xpcom/ds/nsDataHashtable.h \
|
---|
217 | xpcom/base/nsDebugImpl.h \
|
---|
218 | xpcom/ds/nsDeque.h \
|
---|
219 | xpcom/io/nsDirectoryService.h \
|
---|
220 | xpcom/io/nsDirectoryServiceDefs.h \
|
---|
221 | xpcom/io/nsDirectoryServiceUtils.h \
|
---|
222 | xpcom/ds/nsDoubleHashtable.h \
|
---|
223 | xpcom/ds/nsEnumeratorUtils.h \
|
---|
224 | xpcom/base/nsError.h \
|
---|
225 | xpcom/threads/nsEventQueueUtils.h \
|
---|
226 | xpcom/ds/nsHashKeys.h \
|
---|
227 | xpcom/ds/nsHashSets.h \
|
---|
228 | xpcom/ds/nsHashtable.h \
|
---|
229 | xpcom/base/nsID.h \
|
---|
230 | xpcom/base/nsIID.h \
|
---|
231 | xpcom/components/nsIServiceManagerObsolete.h \
|
---|
232 | xpcom/components/nsIServiceManagerUtils.h \
|
---|
233 | xpcom/base/nsISupportsBase.h \
|
---|
234 | xpcom/ds/nsInt64.h \
|
---|
235 | xpcom/ds/nsInterfaceHashtable.h \
|
---|
236 | xpcom/io/nsLocalFile.h \
|
---|
237 | xpcom/io/nsLocalFileUnix.h \
|
---|
238 | xpcom/components/nsModule.h \
|
---|
239 | xpcom/io/nsNativeCharsetUtils.h \
|
---|
240 | xpcom/components/nsNativeComponentLoader.h \
|
---|
241 | xpcom/ds/nsObserverService.h \
|
---|
242 | xpcom/components/nsObsoleteModuleLoading.h \
|
---|
243 | xpcom/proxy/public/nsProxiedService.h \
|
---|
244 | xpcom/proxy/public/nsProxyEvent.h \
|
---|
245 | xpcom/proxy/public/nsProxyRelease.h \
|
---|
246 | xpcom/ds/nsRefPtrHashtable.h \
|
---|
247 | xpcom/ds/nsStaticAtom.h \
|
---|
248 | xpcom/components/nsStaticComponent.h \
|
---|
249 | xpcom/ds/nsStringEnumerator.h \
|
---|
250 | xpcom/io/nsStringIO.h \
|
---|
251 | xpcom/ds/nsSupportsArray.h \
|
---|
252 | xpcom/ds/nsSupportsPrimitives.h \
|
---|
253 | xpcom/ds/nsTHashtable.h \
|
---|
254 | xpcom/base/nsTraceRefcntImpl.h \
|
---|
255 | xpcom/ds/nsVariant.h \
|
---|
256 | xpcom/ds/nsVoidArray.h \
|
---|
257 | xpcom/base/nsWeakPtr.h \
|
---|
258 | xpcom/build/nsXPCOM.h \
|
---|
259 | xpcom/build/nsXPCOMCID.h \
|
---|
260 | xpcom/base/nscore.h \
|
---|
261 | xpcom/ds/pldhash.h \
|
---|
262 | xpcom/threads/plevent.h \
|
---|
263 | xpcom/components/xcDll.h \
|
---|
264 | xpcom/typelib/xpt/public/xpt_arena.h \
|
---|
265 | xpcom/typelib/xpt/public/xpt_struct.h \
|
---|
266 | xpcom/typelib/xpt/public/xpt_xdr.h \
|
---|
267 | xpcom/reflect/xptcall/public/xptcall.h \
|
---|
268 | xpcom/reflect/xptcall/public/xptcstubsdecl.inc \
|
---|
269 | xpcom/reflect/xptcall/public/xptcstubsdef.inc \
|
---|
270 | xpcom/reflect/xptinfo/public/xptinfo.h \
|
---|
271 | \
|
---|
272 | xpcom/glue/nsIInterfaceRequestorUtils.h \
|
---|
273 | xpcom/glue/nsISupportsImpl.h \
|
---|
274 | xpcom/glue/nsISupportsUtils.h \
|
---|
275 | xpcom/glue/nsIWeakReferenceUtils.h \
|
---|
276 | \
|
---|
277 | xpcom/glue/nsCOMPtr.h \
|
---|
278 | xpcom/glue/nsDebug.h \
|
---|
279 | xpcom/glue/nsGenericFactory.h \
|
---|
280 | xpcom/glue/nsIGenericFactory.h \
|
---|
281 | xpcom/glue/nsMemory.h \
|
---|
282 | xpcom/glue/nsTraceRefcnt.h \
|
---|
283 | xpcom/glue/nsWeakReference.h \
|
---|
284 | \
|
---|
285 | xpcom/glue/standalone/nsXPCOMGlue.h \
|
---|
286 | \
|
---|
287 | xpcom-config.h
|
---|
288 |
|
---|
289 | IPCD-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/ipcd/
|
---|
290 | IPCD-HEADERS_IFFLAGS = -m 644
|
---|
291 | IPCD-HEADERS_SOURCES = \
|
---|
292 | ipc/ipcd/client/public/ipcCID.h \
|
---|
293 | ipc/ipcd/extensions/lock/public/ipcLockCID.h \
|
---|
294 | ipc/ipcd/util/public/ipcMessageReader.h \
|
---|
295 | ipc/ipcd/util/public/ipcMessageWriter.h \
|
---|
296 | ipc/ipcd/client/public/ipcdclient.h
|
---|
297 |
|
---|
298 |
|
---|
299 | #
|
---|
300 | # The IDL compiler.
|
---|
301 | #
|
---|
302 | # We build it statically because we cannot rely on additional .a files
|
---|
303 | # like in the original build
|
---|
304 | #
|
---|
305 | xpidl_TEMPLATE = XPComBldProg
|
---|
306 | xpidl_DEFS = EXPORT_XPT_API
|
---|
307 | ## @todo This assumes HOST == TARGET.
|
---|
308 | xpidl_INST = $(INST_BIN)
|
---|
309 | ## Obsolete hack: MacPorts is 32-bit on 10.5 and 64-bit on 10.6. Set your KBUILD_HOST_ARCH env.vars. accordingly.
|
---|
310 | #if "$(KBUILD_HOST).$(KBUILD_HOST_ARCH)" == "darwin.amd64" && defined(VBOX_MACOS_10_5_WORKAROUND)
|
---|
311 | # xpidl_BLD_TRG_ARCH = x86
|
---|
312 | # ## @todo kBuild ticket 84 workarounds:
|
---|
313 | # xpidl_DEFS.x86 = $(TEMPLATE_XPComBldProg_DEFS.x86)
|
---|
314 | # xpidl_CFLAGS.x86 = $(TEMPLATE_XPComBldProg_CFLAGS.x86)
|
---|
315 | # xpidl_CXXFLAGS.x86 = $(TEMPLATE_XPComBldProg_CXXFLAGS.x86)
|
---|
316 | # xpidl_LDFLAGS.x86 = $(TEMPLATE_XPComBldProg_LDFLAGS.x86)
|
---|
317 | #endif
|
---|
318 | ifdef VBOX_WITH_JAVA_SUPPORT_IN_XPIDL
|
---|
319 | xpidl_DEFS += VBOX_XPIDL_EMULATE_GENJIFACES VBOX_XPIDL_EMULATE_GENJIFACES_DIFF
|
---|
320 | endif
|
---|
321 | xpidl_SOURCES = \
|
---|
322 | xpcom/typelib/xpidl/xpidl.c \
|
---|
323 | xpcom/typelib/xpidl/xpidl_idl.c \
|
---|
324 | xpcom/typelib/xpidl/xpidl_util.c \
|
---|
325 | xpcom/typelib/xpidl/xpidl_header.c \
|
---|
326 | xpcom/typelib/xpidl/xpidl_typelib.c \
|
---|
327 | xpcom/typelib/xpidl/xpidl_doc.c \
|
---|
328 | xpcom/typelib/xpidl/xpidl_java.c \
|
---|
329 | xpcom/typelib/xpt/src/xpt_arena.c \
|
---|
330 | xpcom/typelib/xpt/src/xpt_struct.c \
|
---|
331 | xpcom/typelib/xpt/src/xpt_xdr.c
|
---|
332 |
|
---|
333 | # We do these ONCE.
|
---|
334 | libIDL_config_cflags := $(shell $(VBOX_LIBIDL_CONFIG) --cflags)
|
---|
335 | libIDL_config_libs := $(shell $(VBOX_LIBIDL_CONFIG) --libs)
|
---|
336 | xpidl_CFLAGS = \
|
---|
337 | $(libIDL_config_cflags)
|
---|
338 | if1of ($(KBUILD_HOST), linux solaris)
|
---|
339 | xpidl_LDFLAGS = \
|
---|
340 | $(filter-out -l%,$(libIDL_config_libs))
|
---|
341 | xpidl_LIBS.$(KBUILD_HOST) += \
|
---|
342 | $(subst -l,,$(filter -l%,$(libIDL_config_libs)))
|
---|
343 | else
|
---|
344 | ifeq ($(KBUILD_HOST),darwin)
|
---|
345 | # Need to put the SDK /usr/lib before the libIDL path to make it pick the system iconv
|
---|
346 | xpidl_LDFLAGS = \
|
---|
347 | -L$(VBOX_PATH_MACOSX_SDK)/usr/lib \
|
---|
348 | $(libIDL_config_libs)
|
---|
349 | else
|
---|
350 | xpidl_LDFLAGS = \
|
---|
351 | $(libIDL_config_libs)
|
---|
352 | endif
|
---|
353 | endif
|
---|
354 | xpidl_LDFLAGS.linux = \
|
---|
355 | $(VBOX_LD_as_needed)
|
---|
356 |
|
---|
357 | #
|
---|
358 | # The XPT linker.
|
---|
359 | #
|
---|
360 | xpt_link_TEMPLATE = XPComBldProg
|
---|
361 | xpt_link_SOURCES = \
|
---|
362 | xpcom/typelib/xpt/tools/xpt_link.c \
|
---|
363 | xpcom/typelib/xpt/src/xpt_arena.c \
|
---|
364 | xpcom/typelib/xpt/src/xpt_struct.c \
|
---|
365 | xpcom/typelib/xpt/src/xpt_xdr.c
|
---|
366 |
|
---|
367 |
|
---|
368 | #
|
---|
369 | # The NSPR Library.
|
---|
370 | #
|
---|
371 | VBox-xpcom-nspr_TEMPLATE = XPComDll
|
---|
372 | VBox-xpcom-nspr_INSTTYPE = none
|
---|
373 | VBox-xpcom-nspr_DEFS = \
|
---|
374 | _NSPR_BUILD_
|
---|
375 | VBox-xpcom-nspr_DEFS.linux = \
|
---|
376 | _POSIX_SOURCE=1 \
|
---|
377 | _BSD_SOURCE=1 \
|
---|
378 | _SVID_SOURCE=1 \
|
---|
379 | _DEFAULT_SOURCE \
|
---|
380 | _REENTRANT=1
|
---|
381 | # _BSD_SOURCE is here to keep the Glibc header files happy and make them include the right things
|
---|
382 | VBox-xpcom-nspr_INCS = \
|
---|
383 | $(VBox-xpcom-nspr_0_OUTDIR)
|
---|
384 | VBox-xpcom-nspr_SOURCES = \
|
---|
385 | nsprpub/lib/ds/plarena.c \
|
---|
386 | nsprpub/lib/ds/plhash.c \
|
---|
387 | nsprpub/pr/src/pthreads/ptsynch.c
|
---|
388 |
|
---|
389 | $(call KB_FN_DO_PASS0_ON_TARGET,VBox-xpcom-nspr)
|
---|
390 |
|
---|
391 | $(evalcall2 VBOX_XPCOM_X86,VBox-xpcom-nspr)
|
---|
392 |
|
---|
393 |
|
---|
394 | VBox-xpcom-typelib_TEMPLATE = XPComDll
|
---|
395 | VBox-xpcom-typelib_INSTTYPE = none
|
---|
396 | VBox-xpcom-typelib_SOURCES = \
|
---|
397 | xpcom/typelib/xpt/src/xpt_arena.c \
|
---|
398 | xpcom/typelib/xpt/src/xpt_struct.c \
|
---|
399 | xpcom/typelib/xpt/src/xpt_xdr.c
|
---|
400 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-typelib)
|
---|
401 |
|
---|
402 | VBox-xpcom-string_TEMPLATE = XPComDll
|
---|
403 | VBox-xpcom-string_INSTTYPE = none
|
---|
404 | VBox-xpcom-string_SOURCES = \
|
---|
405 | xpcom/string/src/nsAString.cpp \
|
---|
406 | xpcom/string/src/nsDependentSubstring.cpp \
|
---|
407 | xpcom/string/src/nsObsoleteAStringThunk.cpp \
|
---|
408 | xpcom/string/src/nsPrintfCString.cpp \
|
---|
409 | xpcom/string/src/nsPromiseFlatString.cpp \
|
---|
410 | xpcom/string/src/nsReadableUtils.cpp \
|
---|
411 | xpcom/string/src/nsSubstring.cpp \
|
---|
412 | xpcom/string/src/nsSubstringTuple.cpp \
|
---|
413 | xpcom/string/src/nsString.cpp \
|
---|
414 | xpcom/string/src/nsStringComparator.cpp \
|
---|
415 | xpcom/string/src/nsStringObsolete.cpp
|
---|
416 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-string)
|
---|
417 |
|
---|
418 | VBox-xpcom-base_TEMPLATE = XPComDll
|
---|
419 | VBox-xpcom-base_INSTTYPE = none
|
---|
420 | VBox-xpcom-base_DEFS = _IMPL_NS_COM
|
---|
421 | VBox-xpcom-base_SOURCES = \
|
---|
422 | xpcom/base/nsDebugImpl.cpp \
|
---|
423 | xpcom/base/nsErrorService.cpp \
|
---|
424 | xpcom/base/nsExceptionService.cpp \
|
---|
425 | xpcom/base/nsID.cpp \
|
---|
426 | xpcom/base/nsTraceRefcntImpl.cpp
|
---|
427 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-base)
|
---|
428 |
|
---|
429 | VBox-xpcom-ds_TEMPLATE = XPComDll
|
---|
430 | VBox-xpcom-ds_INSTTYPE = none
|
---|
431 | VBox-xpcom-ds_DEFS = _IMPL_NS_COM
|
---|
432 | VBox-xpcom-ds_SOURCES = \
|
---|
433 | xpcom/ds/pldhash.c \
|
---|
434 | xpcom/ds/nsAtomTable.cpp \
|
---|
435 | xpcom/ds/nsAtomService.cpp \
|
---|
436 | xpcom/ds/nsCRT.cpp \
|
---|
437 | xpcom/ds/nsDeque.cpp \
|
---|
438 | xpcom/ds/nsEmptyEnumerator.cpp \
|
---|
439 | xpcom/ds/nsEnumeratorUtils.cpp \
|
---|
440 | xpcom/ds/nsHashSets.cpp \
|
---|
441 | xpcom/ds/nsHashtable.cpp \
|
---|
442 | xpcom/ds/nsObserverList.cpp \
|
---|
443 | xpcom/ds/nsObserverService.cpp \
|
---|
444 | xpcom/ds/nsProperties.cpp \
|
---|
445 | xpcom/ds/nsStringEnumerator.cpp \
|
---|
446 | xpcom/ds/nsSupportsArray.cpp \
|
---|
447 | xpcom/ds/nsSupportsArrayEnumerator.cpp \
|
---|
448 | xpcom/ds/nsSupportsPrimitives.cpp \
|
---|
449 | xpcom/ds/nsTHashtable.cpp \
|
---|
450 | xpcom/ds/nsVariant.cpp \
|
---|
451 | xpcom/ds/nsVoidArray.cpp \
|
---|
452 | xpcom/ds/nsCOMArray.cpp \
|
---|
453 | xpcom/ds/nsArray.cpp \
|
---|
454 | xpcom/ds/nsArrayEnumerator.cpp
|
---|
455 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-ds)
|
---|
456 |
|
---|
457 | # @todo what about MOZ_USER_DIR?
|
---|
458 | VBox-xpcom-io_TEMPLATE = XPComDll
|
---|
459 | VBox-xpcom-io_INSTTYPE = none
|
---|
460 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
461 | VBox-xpcom-io_DEFS = _IMPL_NS_COM MOZ_USER_DIR=".mozilla"
|
---|
462 | else
|
---|
463 | VBox-xpcom-io_DEFS = _IMPL_NS_COM MOZ_USER_DIR=\".mozilla\"
|
---|
464 | endif
|
---|
465 | if defined(VBOX_WITH_HARDENING) && defined(VBOX_PATH_APP_PRIVATE_ARCH)
|
---|
466 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
467 | VBox-xpcom-io_DEFS += MOZ_DEFAULT_VBOX_XPCOM_HOME="$(VBOX_PATH_APP_PRIVATE_ARCH)"
|
---|
468 | else
|
---|
469 | VBox-xpcom-io_DEFS += MOZ_DEFAULT_VBOX_XPCOM_HOME=\"$(VBOX_PATH_APP_PRIVATE_ARCH)\"
|
---|
470 | endif
|
---|
471 | endif
|
---|
472 | VBox-xpcom-io_SOURCES = \
|
---|
473 | xpcom/io/nsAppFileLocationProvider.cpp \
|
---|
474 | xpcom/io/nsDirectoryService.cpp \
|
---|
475 | xpcom/io/nsLocalFileCommon.cpp \
|
---|
476 | xpcom/io/SpecialSystemDirectory.cpp \
|
---|
477 | xpcom/io/nsNativeCharsetUtils.cpp
|
---|
478 | if1of ($(KBUILD_TARGET) $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH), freebsd linux netbsd openbsd solaris darwin.amd64 darwin.arm64)
|
---|
479 | VBox-xpcom-io_SOURCES += \
|
---|
480 | xpcom/io/nsLocalFileUnix.cpp
|
---|
481 | endif
|
---|
482 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-io)
|
---|
483 |
|
---|
484 | VBox-xpcom-components_TEMPLATE = XPComDll
|
---|
485 | VBox-xpcom-components_INSTTYPE = none
|
---|
486 | VBox-xpcom-components_DEFS = _IMPL_NS_COM EXPORT_XPTI_API
|
---|
487 | VBox-xpcom-components_SOURCES = \
|
---|
488 | xpcom/components/nsCategoryManager.cpp \
|
---|
489 | xpcom/components/nsComponentManager.cpp \
|
---|
490 | xpcom/components/nsComponentManagerObsolete.cpp \
|
---|
491 | xpcom/components/nsNativeComponentLoader.cpp \
|
---|
492 | xpcom/components/nsServiceManagerObsolete.cpp \
|
---|
493 | xpcom/components/xcDll.cpp \
|
---|
494 | xpcom/components/nsStaticComponentLoader.cpp
|
---|
495 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-components)
|
---|
496 |
|
---|
497 | VBox-xpcom-threads_TEMPLATE = XPComDll
|
---|
498 | VBox-xpcom-threads_INSTTYPE = none
|
---|
499 | VBox-xpcom-threads_DEFS = _IMPL_NS_COM
|
---|
500 | VBox-xpcom-threads_SOURCES = \
|
---|
501 | xpcom/threads/plevent.c \
|
---|
502 | xpcom/threads/nsAutoLock.cpp \
|
---|
503 | xpcom/threads/nsEventQueue.cpp \
|
---|
504 | xpcom/threads/nsEventQueueService.cpp
|
---|
505 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-threads)
|
---|
506 |
|
---|
507 | VBox-xpcom-xptinfo_TEMPLATE = XPComDll
|
---|
508 | VBox-xpcom-xptinfo_INSTTYPE = none
|
---|
509 | VBox-xpcom-xptinfo_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API
|
---|
510 | VBox-xpcom-xptinfo_SOURCES = \
|
---|
511 | xpcom/reflect/xptinfo/src/xptiFile.cpp \
|
---|
512 | xpcom/reflect/xptinfo/src/xptiInterfaceInfo.cpp \
|
---|
513 | xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp \
|
---|
514 | xpcom/reflect/xptinfo/src/xptiManifest.cpp \
|
---|
515 | xpcom/reflect/xptinfo/src/xptiMisc.cpp \
|
---|
516 | xpcom/reflect/xptinfo/src/xptiTypelibGuts.cpp \
|
---|
517 | xpcom/reflect/xptinfo/src/xptiWorkingSet.cpp \
|
---|
518 | xpcom/reflect/xptinfo/src/xptiZipItem.cpp \
|
---|
519 | xpcom/reflect/xptinfo/src/xptiZipLoader.cpp
|
---|
520 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-xptinfo)
|
---|
521 |
|
---|
522 |
|
---|
523 | VBox-xpcom-xptcall_TEMPLATE = XPComDllYasm
|
---|
524 | VBox-xpcom-xptcall_INSTTYPE = none
|
---|
525 | VBox-xpcom-xptcall_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTC_API
|
---|
526 | VBox-xpcom-xptcall_DEFS.darwin = KEEP_STACK_16_BYTE_ALIGNED
|
---|
527 | VBox-xpcom-xptcall_SOURCES = xpcom/reflect/xptcall/src/xptcall.cpp
|
---|
528 | VBox-xpcom-xptcall_SOURCES.freebsd.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
|
---|
529 | xpcom/reflect/xptcall/src/md/unix/xptcstubs_gcc_x86_unix.cpp
|
---|
530 | VBox-xpcom-xptcall_SOURCES.linux.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
|
---|
531 | xpcom/reflect/xptcall/src/md/unix/xptcstubs_gcc_x86_unix.cpp
|
---|
532 | VBox-xpcom-xptcall_SOURCES.solaris.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_solaris.cpp \
|
---|
533 | xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp
|
---|
534 | VBox-xpcom-xptcall_SOURCES.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_amd64_vbox.asm
|
---|
535 | VBox-xpcom-xptcall_SOURCES.arm64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_arm64_vbox.cpp \
|
---|
536 | xpcom/reflect/xptcall/src/md/unix/xptcstubs_arm64_vbox.cpp
|
---|
537 | VBox-xpcom-xptcall_SOURCES.darwin.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcstubs_amd64_darwin.cpp # Underscore prefix.
|
---|
538 | VBox-xpcom-xptcall_SOURCES.freebsd.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
|
---|
539 | VBox-xpcom-xptcall_SOURCES.linux.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
|
---|
540 | ifndef VBOX_GCC_USING_SOLARIS_AS
|
---|
541 | VBox-xpcom-xptcall_SOURCES.solaris.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_linux.cpp
|
---|
542 | else
|
---|
543 | VBox-xpcom-xptcall_SOURCES.solaris.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_64_solaris.cpp
|
---|
544 | endif
|
---|
545 |
|
---|
546 | xpcom/reflect/xptcall/src/md/unix/xptcstubs_x86_solaris.cpp_CXXFLAGS = -O0
|
---|
547 | # -O0 works fine, while -O1 doesn't. The gcc man page can't be listing all the -f*
|
---|
548 | # stuff that -O1 enables, because when using the options without -O1, it's -fomit-frame-pointer
|
---|
549 | # that triggers is, while -O1 -fno-omit-frame-pointer does not work. Anyway, it's probably a gcc/mozila
|
---|
550 | # bug and it's not worth investigating as I'm not the maintainger of the solaris gcc port. [bird, 2007-09-17]
|
---|
551 |
|
---|
552 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-xptcall)
|
---|
553 |
|
---|
554 |
|
---|
555 | VBox-xpcom-proxy_TEMPLATE = XPComDll
|
---|
556 | VBox-xpcom-proxy_INSTTYPE = none
|
---|
557 | VBox-xpcom-proxy_DEFS = _IMPL_NS_COM EXPORT_XPTC_API EXPORT_XPTI_API
|
---|
558 | VBox-xpcom-proxy_SOURCES = \
|
---|
559 | xpcom/proxy/src/nsProxyEvent.cpp \
|
---|
560 | xpcom/proxy/src/nsProxyEventClass.cpp \
|
---|
561 | xpcom/proxy/src/nsProxyEventObject.cpp \
|
---|
562 | xpcom/proxy/src/nsProxyObjectManager.cpp \
|
---|
563 | xpcom/proxy/src/nsProxyRelease.cpp
|
---|
564 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-proxy)
|
---|
565 |
|
---|
566 |
|
---|
567 | #
|
---|
568 | # The VBoxXPCOM Glue static libraries.
|
---|
569 | #
|
---|
570 | # This isn't the normal XPCOM glue (see the places in XPCOM where XPCOM_GLUE is
|
---|
571 | # checked), VirtualBox has its own glue library and this means this isn't used
|
---|
572 | # much (one reason is that we don't provide frozen APIs yet). All VBox XPCOM
|
---|
573 | # client applications are dependent on the given version of both the VBox XPCOM
|
---|
574 | # runtime (binary dependency) and VirtualBox component library (COM interface
|
---|
575 | # dependency). For this reason, VBox client applications link to the VBox XPCOM
|
---|
576 | # shared library directly (instead of linking to the standalone XPCOM glue
|
---|
577 | # library that would dynamically search for and load the installed XPCOM
|
---|
578 | # runtime). For the same reason, we link all parts of XPCOM into a single
|
---|
579 | # shared XPCOM library below (as opposed to the original XPCOM where e.g. NSPR
|
---|
580 | # lives in a separate DLL). Additionally there is VBox specific glue code to
|
---|
581 | # make both the client and server side code build with both XPCOM and COM,
|
---|
582 | # which should be made part of the SDK eventually, but this is a higher level
|
---|
583 | # of abstraction than this XPCOM specific glue code.
|
---|
584 | #
|
---|
585 | VBoxXPCOMGlue_COMMON_SOURCES = \
|
---|
586 | xpcom/glue/nsCOMPtr.cpp \
|
---|
587 | xpcom/glue/nsComponentManagerUtils.cpp \
|
---|
588 | xpcom/glue/nsDebug.cpp \
|
---|
589 | xpcom/glue/nsGenericFactory.cpp \
|
---|
590 | xpcom/glue/nsIInterfaceRequestorUtils.cpp \
|
---|
591 | xpcom/glue/nsMemory.cpp \
|
---|
592 | xpcom/glue/nsTraceRefcnt.cpp \
|
---|
593 | xpcom/glue/nsWeakReference.cpp
|
---|
594 |
|
---|
595 | # dependent glue library which goes in to the VBoxXPCOM shared library
|
---|
596 | VBoxXPCOMGlue_s_TEMPLATE = XPComDll
|
---|
597 | VBoxXPCOMGlue_s_INSTTYPE = none
|
---|
598 | VBoxXPCOMGlue_s_DEFS = _IMPL_NS_COM
|
---|
599 | VBoxXPCOMGlue_s_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES)
|
---|
600 | $(evalcall VBOX_XPCOM_X86,VBoxXPCOMGlue_s)
|
---|
601 |
|
---|
602 | # standalone glue library which all third-party client apps (if any) will
|
---|
603 | # link with (currently completely unused and nit built, to be part of the SDK)
|
---|
604 | VBoxXPCOMGlue_TEMPLATE = XPComDll
|
---|
605 | VBoxXPCOMGlue_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES)
|
---|
606 | #VBoxXPCOMGlue_INST = lib/ $(INST_SDK)lib/
|
---|
607 | $(evalcall VBOX_XPCOM_X86,VBoxXPCOMGlue)
|
---|
608 |
|
---|
609 |
|
---|
610 | #
|
---|
611 | # The VBoxXPCOM Shared Object, assembling all lib files.
|
---|
612 | #
|
---|
613 | VBoxXPCOM_TEMPLATE = XPComDll
|
---|
614 | VBoxXPCOM_NAME = $(basename $(notdir $(LIB_XPCOM)))
|
---|
615 | VBoxXPCOM_DEFS = BUILD_DCONNECT=1 _IMPL_NS_COM
|
---|
616 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
617 | VBoxXPCOM_LDFLAGS.linux = -Wl,--version-script=$(XPCOM_C_NAMESPACE_MAP)
|
---|
618 | VBoxXPCOM_LNK_DEPS.linux += $(XPCOM_C_NAMESPACE_MAP)
|
---|
619 | VBoxXPCOM_LDFLAGS.solaris = -Wl,-M,$(XPCOM_C_NAMESPACE_MAP)
|
---|
620 | VBoxXPCOM_LNK_DEPS.solaris += $(XPCOM_C_NAMESPACE_MAP)
|
---|
621 | endif
|
---|
622 | VBoxXPCOM_SOURCES = \
|
---|
623 | xpcom/build/nsXPComInit.cpp \
|
---|
624 | xpcom/build/nsStringAPI.cpp
|
---|
625 | VBoxXPCOM_SOURCES.darwin = \
|
---|
626 | vboxdeps.cpp
|
---|
627 | VBoxXPCOM_SOURCES.solaris = \
|
---|
628 | vboxdeps.cpp
|
---|
629 | VBoxXPCOM_LIBS = \
|
---|
630 | $(VBox-xpcom-typelib_1_TARGET) \
|
---|
631 | $(VBox-xpcom-string_1_TARGET) \
|
---|
632 | $(VBox-xpcom-base_1_TARGET) \
|
---|
633 | $(VBox-xpcom-ds_1_TARGET) \
|
---|
634 | $(VBox-xpcom-io_1_TARGET) \
|
---|
635 | $(VBox-xpcom-components_1_TARGET) \
|
---|
636 | $(VBox-xpcom-threads_1_TARGET) \
|
---|
637 | $(VBox-xpcom-xptinfo_1_TARGET) \
|
---|
638 | $(VBox-xpcom-xptcall_1_TARGET) \
|
---|
639 | $(VBox-xpcom-proxy_1_TARGET) \
|
---|
640 | $(VBox-xpcom-nspr_1_TARGET) \
|
---|
641 | $(VBoxXPCOMGlue_s_1_TARGET)
|
---|
642 | VBoxXPCOM_LIBS.linux = \
|
---|
643 | pthread dl
|
---|
644 |
|
---|
645 | ifeq ($(filter-out freebsd linux netbsd openbsd,$(KBUILD_TARGET)),) # gnu ld.
|
---|
646 | VBoxXPCOM_LDFLAGS = -Wl,--whole-archive \
|
---|
647 | $(VBox-xpcom-typelib_1_TARGET) \
|
---|
648 | $(VBox-xpcom-string_1_TARGET) \
|
---|
649 | $(VBox-xpcom-base_1_TARGET) \
|
---|
650 | $(VBox-xpcom-ds_1_TARGET) \
|
---|
651 | $(VBox-xpcom-io_1_TARGET) \
|
---|
652 | $(VBox-xpcom-components_1_TARGET) \
|
---|
653 | $(VBox-xpcom-threads_1_TARGET) \
|
---|
654 | $(VBox-xpcom-xptinfo_1_TARGET) \
|
---|
655 | $(VBox-xpcom-xptcall_1_TARGET) \
|
---|
656 | $(VBox-xpcom-proxy_1_TARGET) \
|
---|
657 | $(VBox-xpcom-nspr_1_TARGET) \
|
---|
658 | $(VBoxXPCOMGlue_s_1_TARGET) \
|
---|
659 | -Wl,--no-whole-archive
|
---|
660 | endif
|
---|
661 |
|
---|
662 | VBoxXPCOM_LDFLAGS.solaris += -Wl,-z,allextract \
|
---|
663 | $(VBox-xpcom-typelib_1_TARGET) \
|
---|
664 | $(VBox-xpcom-string_1_TARGET) \
|
---|
665 | $(VBox-xpcom-base_1_TARGET) \
|
---|
666 | $(VBox-xpcom-ds_1_TARGET) \
|
---|
667 | $(VBox-xpcom-io_1_TARGET) \
|
---|
668 | $(VBox-xpcom-components_1_TARGET) \
|
---|
669 | $(VBox-xpcom-threads_1_TARGET) \
|
---|
670 | $(VBox-xpcom-xptinfo_1_TARGET) \
|
---|
671 | $(VBox-xpcom-xptcall_1_TARGET) \
|
---|
672 | $(VBox-xpcom-proxy_1_TARGET) \
|
---|
673 | $(VBox-xpcom-nspr_1_TARGET) \
|
---|
674 | $(VBoxXPCOMGlue_s_1_TARGET) \
|
---|
675 | -Wl,-z,defaultextract
|
---|
676 |
|
---|
677 | # EF heap
|
---|
678 | #VBoxXPCOM_LIBS += $(LIB_RUNTIME_EF)
|
---|
679 | #VBoxXPCOM_LDFLAGS = -Wl,--whole-archive $(VBoxXPCOM_LIBS) -Wl,--no-whole-archive $(LIB_RUNTIME)
|
---|
680 | VBoxXPCOM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxXPCOM.dylib
|
---|
681 |
|
---|
682 | #
|
---|
683 | # The 32-bit VBoxXPCOM Shared Object, assembling all lib files.
|
---|
684 | #
|
---|
685 | VBoxXPCOM-x86_TEMPLATE = XPComDll-x86
|
---|
686 | VBoxXPCOM-x86_EXTENDS = VBoxXPCOM
|
---|
687 | VBoxXPCOM-x86_NAME = VBoxXPCOM-x86
|
---|
688 | VBoxXPCOM-x86_LIBS = \
|
---|
689 | $(VBox-xpcom-typelib-x86_1_TARGET) \
|
---|
690 | $(VBox-xpcom-string-x86_1_TARGET) \
|
---|
691 | $(VBox-xpcom-base-x86_1_TARGET) \
|
---|
692 | $(VBox-xpcom-ds-x86_1_TARGET) \
|
---|
693 | $(VBox-xpcom-io-x86_1_TARGET) \
|
---|
694 | $(VBox-xpcom-components-x86_1_TARGET) \
|
---|
695 | $(VBox-xpcom-threads-x86_1_TARGET) \
|
---|
696 | $(VBox-xpcom-xptinfo-x86_1_TARGET) \
|
---|
697 | $(VBox-xpcom-xptcall-x86_1_TARGET) \
|
---|
698 | $(VBox-xpcom-proxy-x86_1_TARGET) \
|
---|
699 | $(VBox-xpcom-nspr-x86_1_TARGET) \
|
---|
700 | $(VBoxXPCOMGlue_s-x86_1_TARGET)
|
---|
701 |
|
---|
702 | ifeq ($(filter-out freebsd linux netbsd openbsd,$(KBUILD_TARGET)),) # gnu ld.
|
---|
703 | VBoxXPCOM-x86_LDFLAGS = -Wl,--whole-archive \
|
---|
704 | $(VBox-xpcom-typelib-x86_1_TARGET) \
|
---|
705 | $(VBox-xpcom-string-x86_1_TARGET) \
|
---|
706 | $(VBox-xpcom-base-x86_1_TARGET) \
|
---|
707 | $(VBox-xpcom-ds-x86_1_TARGET) \
|
---|
708 | $(VBox-xpcom-io-x86_1_TARGET) \
|
---|
709 | $(VBox-xpcom-components-x86_1_TARGET) \
|
---|
710 | $(VBox-xpcom-threads-x86_1_TARGET) \
|
---|
711 | $(VBox-xpcom-xptinfo-x86_1_TARGET) \
|
---|
712 | $(VBox-xpcom-xptcall-x86_1_TARGET) \
|
---|
713 | $(VBox-xpcom-proxy-x86_1_TARGET) \
|
---|
714 | $(VBox-xpcom-nspr-x86_1_TARGET) \
|
---|
715 | $(VBoxXPCOMGlue_s-x86_1_TARGET) \
|
---|
716 | -Wl,--no-whole-archive
|
---|
717 | endif
|
---|
718 |
|
---|
719 | VBoxXPCOM-x86_LDFLAGS.solaris += -Wl,-z,allextract \
|
---|
720 | $(VBox-xpcom-typelib-x86_1_TARGET) \
|
---|
721 | $(VBox-xpcom-string-x86_1_TARGET) \
|
---|
722 | $(VBox-xpcom-base-x86_1_TARGET) \
|
---|
723 | $(VBox-xpcom-ds-x86_1_TARGET) \
|
---|
724 | $(VBox-xpcom-io-x86_1_TARGET) \
|
---|
725 | $(VBox-xpcom-components-x86_1_TARGET) \
|
---|
726 | $(VBox-xpcom-threads-x86_1_TARGET) \
|
---|
727 | $(VBox-xpcom-xptinfo-x86_1_TARGET) \
|
---|
728 | $(VBox-xpcom-xptcall-x86_1_TARGET) \
|
---|
729 | $(VBox-xpcom-proxy-x86_1_TARGET) \
|
---|
730 | $(VBox-xpcom-nspr-x86_1_TARGET) \
|
---|
731 | $(VBoxXPCOMGlue_s-x86_1_TARGET) \
|
---|
732 | -Wl,-z,defaultextract
|
---|
733 |
|
---|
734 |
|
---|
735 | #
|
---|
736 | # VBoxXPCOMImp - Import library/hack.
|
---|
737 | #
|
---|
738 | ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
|
---|
739 | $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxXPCOMImp,VBoxXPCOM,VBoxXPCOM-mangled.def)
|
---|
740 | else
|
---|
741 | $(call VBOX_GENERATE_IMPORT_TARGET_FN,VBoxXPCOMImp,VBoxXPCOM,VBoxXPCOM.def)
|
---|
742 | endif
|
---|
743 |
|
---|
744 |
|
---|
745 | #
|
---|
746 | # IPC templates.
|
---|
747 | #
|
---|
748 | ifdef VBOX_IPC_RELEASE_LOG
|
---|
749 | IPC_LOGGING = 1
|
---|
750 | else ifneq ($(KBUILD_TYPE),release)
|
---|
751 | IPC_LOGGING = 1
|
---|
752 | endif
|
---|
753 |
|
---|
754 | TEMPLATE_XPComIpcDll = XPCOM IPC libraries
|
---|
755 | TEMPLATE_XPComIpcDll_EXTENDS = XPComDll
|
---|
756 | TEMPLATE_XPComIpcDll_DEFS = $(TEMPLATE_XPComDll_DEFS) BUILD_DCONNECT=1
|
---|
757 | ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
|
---|
758 | TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME="VBoxXPCOMIPCD$(SUFF_EXE)"
|
---|
759 | else
|
---|
760 | TEMPLATE_XPComIpcDll_DEFS += IPC_DAEMON_APP_NAME=\"VBoxXPCOMIPCD$(SUFF_EXE)\"
|
---|
761 | endif
|
---|
762 | ifdef IPC_LOGGING
|
---|
763 | TEMPLATE_XPComIpcDll_DEFS += IPC_LOGGING
|
---|
764 | endif
|
---|
765 | TEMPLATE_XPComIpcDll_LIBS = $(VBoxXPCOM_1_TARGET) $(TEMPLATE_XPComDll_LIBS)
|
---|
766 | ifneq ($(KBUILD_TARGET),win)
|
---|
767 | ifeq ($(filter-out solaris.x86 %.amd64 %.sparc32 %.sparc64,$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)),) ## TODO: cleanup!
|
---|
768 | if defined(VBOX_WITH_RELATIVE_RUNPATH) && !defined(VBOX_WITH_HARDENING)
|
---|
769 | TEMPLATE_XPComIpcDll_LDFLAGS = $(filter-out '$(VBOX_GCC_RPATH_OPT)%',$(TEMPLATE_XPComDll_LDFLAGS)) '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RELATIVE_RUNPATH)/..'
|
---|
770 | endif
|
---|
771 | else ifndef VBOX_WITH_HARDENING
|
---|
772 | ifdef VBOX_WITH_RELATIVE_RUNPATH
|
---|
773 | TEMPLATE_XPComIpcDll_LDFLAGS = $(filter-out '$(VBOX_GCC_RPATH_OPT)%',$(TEMPLATE_XPComDll_LDFLAGS)) '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RELATIVE_RUNPATH)/..'
|
---|
774 | endif
|
---|
775 | endif
|
---|
776 | endif
|
---|
777 |
|
---|
778 | TEMPLATE_XPComIpcDll-x86 = 32-bit XPCOM IPC libraries
|
---|
779 | TEMPLATE_XPComIpcDll-x86_EXTENDS = XPComIpcDll
|
---|
780 | TEMPLATE_XPComIpcDll-x86_BLD_TRG_ARCH = x86
|
---|
781 | TEMPLATE_XPComIpcDll-x86_LIBS = $(VBoxXPCOM-x86_1_TARGET) $(TEMPLATE_XPComDll-x86_LIBS)
|
---|
782 |
|
---|
783 | TEMPLATE_XPComIpcExe = XPCOM IPC executables
|
---|
784 | TEMPLATE_XPComIpcExe_EXTENDS = XPComExe
|
---|
785 | TEMPLATE_XPComIpcExe_DEFS = $(TEMPLATE_XPComExe_DEFS) BUILD_DCONNECT=1
|
---|
786 | ifdef IPC_LOGGING
|
---|
787 | TEMPLATE_XPComIpcExe_DEFS += IPC_LOGGING
|
---|
788 | endif
|
---|
789 |
|
---|
790 | #
|
---|
791 | # Shared IPC code. Used by the IPC component as well as the executables.
|
---|
792 | #
|
---|
793 | VBox-xpcom-ipcshared_TEMPLATE = XPComIpcDll
|
---|
794 | VBox-xpcom-ipcshared_INSTTYPE = none
|
---|
795 | VBox-xpcom-ipcshared_SOURCES = \
|
---|
796 | ipc/ipcd/shared/src/ipcConfig.cpp \
|
---|
797 | ipc/ipcd/shared/src/ipcMessage.cpp \
|
---|
798 | ipc/ipcd/shared/src/ipcMessagePrimitives.cpp \
|
---|
799 | ipc/ipcd/shared/src/ipcStringList.cpp \
|
---|
800 | ipc/ipcd/shared/src/ipcIDList.cpp \
|
---|
801 | ipc/ipcd/shared/src/ipcm.cpp
|
---|
802 | $(evalcall VBOX_XPCOM_X86,VBox-xpcom-ipcshared)
|
---|
803 |
|
---|
804 |
|
---|
805 | #
|
---|
806 | # DCONNECT client shared object
|
---|
807 | #
|
---|
808 | VBoxXPCOMIPCC_TEMPLATE = XPComIpcDll
|
---|
809 | VBoxXPCOMIPCC_INST = $(INST_BIN)components/
|
---|
810 | #VBoxXPCOMIPCC_DEFS = HAVE_DEPENDENT_LIBS - dependentLibs.h is linux specific, so this cannot be required.
|
---|
811 | VBoxXPCOMIPCC_SOURCES = \
|
---|
812 | ipc/ipcd/client/src/ipcdclient.cpp \
|
---|
813 | ipc/ipcd/client/src/ipcService.cpp \
|
---|
814 | ipc/ipcd/client/src/ipcModuleFactory.cpp \
|
---|
815 | ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp \
|
---|
816 | \
|
---|
817 | ipc/ipcd/util/src/ipcMessageReader.cpp \
|
---|
818 | ipc/ipcd/util/src/ipcMessageWriter.cpp \
|
---|
819 | \
|
---|
820 | ipc/ipcd/extensions/lock/src/ipcLockProtocol.cpp \
|
---|
821 | ipc/ipcd/extensions/lock/src/ipcLockService.cpp \
|
---|
822 | \
|
---|
823 | ipc/ipcd/extensions/transmngr/src/tmTransactionService.cpp \
|
---|
824 | \
|
---|
825 | ipc/ipcd/extensions/transmngr/common/tmTransaction.cpp \
|
---|
826 | ipc/ipcd/extensions/transmngr/common/tmVector.cpp \
|
---|
827 | ipc/ipcd/client/src/ipcConnectionUnix.cpp
|
---|
828 | VBoxXPCOMIPCC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPCOMIPCC.dylib
|
---|
829 | VBoxXPCOMIPCC_LIBS = \
|
---|
830 | $(VBox-xpcom-ipcshared_1_TARGET)
|
---|
831 |
|
---|
832 | # 32-bit version of the component.
|
---|
833 | $(evalcall VBOX_XPCOM_X86,VBoxXPCOMIPCC)
|
---|
834 | VBoxXPCOMIPCC-x86_LIBS = \
|
---|
835 | $(VBox-xpcom-ipcshared-x86_1_TARGET)
|
---|
836 |
|
---|
837 |
|
---|
838 | #
|
---|
839 | # DCONNECT daemon executable
|
---|
840 | #
|
---|
841 | VBoxXPCOMIPCD_TEMPLATE = XPComIpcExe
|
---|
842 | VBoxXPCOMIPCD_SOURCES = \
|
---|
843 | ipc/ipcd/daemon/src/ipcd.cpp \
|
---|
844 | ipc/ipcd/daemon/src/ipcClient.cpp \
|
---|
845 | ipc/ipcd/daemon/src/ipcCommandModule.cpp \
|
---|
846 | ipc/ipcd/daemon/src/ipcdUnix.cpp
|
---|
847 |
|
---|
848 |
|
---|
849 | #
|
---|
850 | # Include sub-makefiles for the Python<->XPCOM and Java<->XPCOM bridges.
|
---|
851 | #
|
---|
852 | ifndef VBOX_ONLY_EXTPACKS
|
---|
853 | # Find the Python headers for the Python<->XPCOM bridge if enabled.
|
---|
854 | ifdef VBOX_WITH_PYTHON
|
---|
855 | include $(PATH_SUB_CURRENT)/python/Makefile.kmk
|
---|
856 | endif
|
---|
857 |
|
---|
858 | ifdef VBOX_WITH_JXPCOM
|
---|
859 | include $(PATH_SUB_CURRENT)/java/Makefile.kmk
|
---|
860 | endif
|
---|
861 | endif # !VBOX_ONLY_EXTPACKS
|
---|
862 |
|
---|
863 |
|
---|
864 | #
|
---|
865 | # testcases
|
---|
866 | #
|
---|
867 | tstnsIFileTest_TEMPLATE = XPComTstExe
|
---|
868 | tstnsIFileTest_SOURCES = xpcom/tests/nsIFileTest.cpp
|
---|
869 | tstTestArray_TEMPLATE = XPComTstExe
|
---|
870 | tstTestArray_SOURCES = xpcom/tests/TestArray.cpp
|
---|
871 | tstTestAtoms_TEMPLATE = XPComTstExe
|
---|
872 | tstTestAtoms_SOURCES = xpcom/tests/TestAtoms.cpp
|
---|
873 | tstTestAutoLock_TEMPLATE = XPComTstExe
|
---|
874 | tstTestAutoLock_SOURCES = xpcom/tests/TestAutoLock.cpp
|
---|
875 | tstTestCOMPtr_TEMPLATE = XPComTstExe
|
---|
876 | tstTestCOMPtr_SOURCES = xpcom/tests/TestCOMPtr.cpp
|
---|
877 | tstTestCOMPtrEq_TEMPLATE = XPComTstExe
|
---|
878 | tstTestCOMPtrEq_SOURCES = xpcom/tests/TestCOMPtrEq.cpp
|
---|
879 | tstTestCRT_TEMPLATE = XPComTstExe
|
---|
880 | tstTestCRT_SOURCES = xpcom/tests/TestCRT.cpp
|
---|
881 | tstTestFactory_TEMPLATE = XPComTstExe
|
---|
882 | tstTestFactory_SOURCES = xpcom/tests/TestFactory.cpp
|
---|
883 | tstTestHashtables_TEMPLATE = XPComTstExe
|
---|
884 | tstTestHashtables_SOURCES = xpcom/tests/TestHashtables.cpp
|
---|
885 | tstTestID_TEMPLATE = XPComTstExe
|
---|
886 | tstTestID_SOURCES = xpcom/tests/TestID.cpp
|
---|
887 | tstTestObserverService_TEMPLATE = XPComTstExe
|
---|
888 | tstTestObserverService_SOURCES = xpcom/tests/TestObserverService.cpp
|
---|
889 | tstTestXPIDLString_TEMPLATE = XPComTstExe
|
---|
890 | tstTestXPIDLString_SOURCES = xpcom/tests/TestXPIDLString.cpp
|
---|
891 | tstTestXPTCInvoke_TEMPLATE = XPComTstExe
|
---|
892 | tstTestXPTCInvoke_SOURCES = xpcom/reflect/xptcall/tests/TestXPTCInvoke.cpp
|
---|
893 | tstTestDeque_TEMPLATE = XPComTstExe
|
---|
894 | tstTestDeque_SOURCES = xpcom/tests/TestDeque.cpp
|
---|
895 | tstTestAutoPtr_TEMPLATE = XPComTstExe
|
---|
896 | tstTestAutoPtr_SOURCES = xpcom/tests/TestAutoPtr.cpp
|
---|
897 | tstTestMinStringAPI_TEMPLATE = XPComTstExe
|
---|
898 | tstTestMinStringAPI_SOURCES = xpcom/tests/TestMinStringAPI.cpp
|
---|
899 | tstTestStrings_TEMPLATE = XPComTstExe
|
---|
900 | tstTestStrings_SOURCES = xpcom/tests/TestStrings.cpp
|
---|
901 | tstPrimitiveTest_TEMPLATE = XPComTstExe
|
---|
902 | tstPrimitiveTest_SOURCES = xpcom/typelib/xpt/tests/PrimitiveTest.c
|
---|
903 |
|
---|
904 |
|
---|
905 |
|
---|
906 | OTHER_CLEAN += \
|
---|
907 | $(PATH_TARGET)/VBox-xpcom-idl-timestamp \
|
---|
908 | $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.h,$(XPCOM_IDLFILES)))) \
|
---|
909 | $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES)))) \
|
---|
910 | $(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/idl/,$(notdir $(XPCOM_IDLFILES))) \
|
---|
911 | $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES))))
|
---|
912 |
|
---|
913 |
|
---|
914 | #
|
---|
915 | # Create and install VBoxXPCOMBase.xpt
|
---|
916 | #
|
---|
917 | INSTALLS += VBoxXPCOMBase-xpt-inst
|
---|
918 | VBOX_XPTFILES = $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/, \
|
---|
919 | nsIErrorService.xpt \
|
---|
920 | nsIException.xpt \
|
---|
921 | nsIExceptionService.xpt \
|
---|
922 | nsIDebug.xpt \
|
---|
923 | nsIInterfaceRequestor.xpt \
|
---|
924 | nsIProgrammingLanguage.xpt \
|
---|
925 | nsISupports.xpt \
|
---|
926 | nsITraceRefcnt.xpt \
|
---|
927 | nsIWeakReference.xpt \
|
---|
928 | nsrootidl.xpt \
|
---|
929 | nsIAtom.xpt \
|
---|
930 | nsIAtomService.xpt \
|
---|
931 | nsICollection.xpt \
|
---|
932 | nsIEnumerator.xpt \
|
---|
933 | nsIVariant.xpt \
|
---|
934 | nsISerializable.xpt \
|
---|
935 | nsIStringEnumerator.xpt \
|
---|
936 | nsISupportsArray.xpt \
|
---|
937 | nsISupportsIterators.xpt \
|
---|
938 | nsIArray.xpt \
|
---|
939 | nsIObserverService.xpt \
|
---|
940 | nsIObserver.xpt \
|
---|
941 | nsIProperties.xpt \
|
---|
942 | nsISimpleEnumerator.xpt \
|
---|
943 | nsISupportsPrimitives.xpt \
|
---|
944 | nsIBinaryInputStream.xpt \
|
---|
945 | nsIBinaryOutputStream.xpt \
|
---|
946 | nsIObjectInputStream.xpt \
|
---|
947 | nsIObjectOutputStream.xpt \
|
---|
948 | nsIDirectoryService.xpt \
|
---|
949 | nsIFile.xpt \
|
---|
950 | nsILocalFile.xpt \
|
---|
951 | nsIInputStream.xpt \
|
---|
952 | nsIOutputStream.xpt \
|
---|
953 | nsIComponentLoader.xpt \
|
---|
954 | nsIComponentLoaderManager.xpt \
|
---|
955 | nsIComponentManagerObsolete.xpt \
|
---|
956 | nsINativeComponentLoader.xpt \
|
---|
957 | nsIClassInfo.xpt \
|
---|
958 | nsIComponentRegistrar.xpt \
|
---|
959 | nsIFactory.xpt \
|
---|
960 | nsIModule.xpt \
|
---|
961 | nsIServiceManager.xpt \
|
---|
962 | nsIComponentManager.xpt \
|
---|
963 | nsICategoryManager.xpt \
|
---|
964 | nsIRunnable.xpt \
|
---|
965 | nsIEventTarget.xpt \
|
---|
966 | nsIEventQueue.xpt \
|
---|
967 | nsIEventQueueService.xpt \
|
---|
968 | nsIInterfaceInfo.xpt \
|
---|
969 | nsIInterfaceInfoManager.xpt \
|
---|
970 | nsIXPTLoader.xpt)
|
---|
971 |
|
---|
972 | VBoxXPCOMBase-xpt-inst_INST = $(INST_BIN)components/
|
---|
973 | VBoxXPCOMBase-xpt-inst_MODE = 0644
|
---|
974 | VBoxXPCOMBase-xpt-inst_SOURCES = \
|
---|
975 | $(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
|
---|
976 | VBoxXPCOMBase-xpt-inst_CLEAN = \
|
---|
977 | $(VBOX_XPTFILES) \
|
---|
978 | $(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
|
---|
979 |
|
---|
980 | # combined typelib library
|
---|
981 | $(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt: $$(VBOX_XPTFILES) | $$(xpt_link_1_TARGET) $(PATH_TARGET)/VBox-xpcom-xpt-files/
|
---|
982 | $(call MSG_LINK,XPCOM_TYPELIB,$@)
|
---|
983 | $(QUIET)$(MKDIR) -p -- $(PATH_STAGE_BIN)/components
|
---|
984 | $(QUIET)$(xpt_link_1_TARGET) $@ $^
|
---|
985 |
|
---|
986 |
|
---|
987 |
|
---|
988 | # generate rules
|
---|
989 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
990 |
|
---|
991 |
|
---|
992 |
|
---|
993 | #
|
---|
994 | # Generate IDL rules.
|
---|
995 | #
|
---|
996 |
|
---|
997 | ##
|
---|
998 | # Define for compiling one IDL into a header and a typelib
|
---|
999 | # @param idl The filename with everything.
|
---|
1000 | define def_IDL
|
---|
1001 | $(VBOX_PATH_SDK)/bindings/xpcom/include/$(notdir $(subst .idl,.h,$(idl))) \
|
---|
1002 | + $(PATH_TARGET)/VBox-xpcom-xpt-files/$(notdir $(subst .idl,.xpt,$(idl))): \
|
---|
1003 | $(VBOX_PATH_XPCOM_SRC)/$(idl) \
|
---|
1004 | | $$$$(xpidl_1_TARGET) \
|
---|
1005 | $(PATH_TARGET)/VBox-xpcom-xpt-files/
|
---|
1006 | $$(call MSG_TOOL,xpidl,XPCOM,$$<,$$@)
|
---|
1007 | $$(QUIET)$(MKDIR) -p $(VBOX_PATH_SDK)/bindings/xpcom/include $(VBOX_PATH_SDK)/bindings/xpcom/idl
|
---|
1008 | $$(QUIET)$$(xpidl_1_TARGET) -m header $(XPIDL_INCS) -e $$@ $$<
|
---|
1009 | $$(QUIET)$$(xpidl_1_TARGET) -m typelib $(XPIDL_INCS) -e $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(idl)))) $$<
|
---|
1010 | $$(QUIET)$(CP) $$< $$(VBOX_PATH_SDK)/bindings/xpcom/idl
|
---|
1011 | endef
|
---|
1012 |
|
---|
1013 | $(foreach idl, $(XPCOM_IDLFILES), $(eval $(def_IDL)))
|
---|
1014 |
|
---|
1015 | # dummy target.
|
---|
1016 | $(PATH_TARGET)/VBox-xpcom-idl-timestamp: $$(addprefix $$(VBOX_PATH_SDK)/bindings/xpcom/include/,$$(notdir $$(subst .idl,.h,$$(XPCOM_IDLFILES))))
|
---|
1017 | $(call MSG_L1,IDL processing completed.)
|
---|
1018 | $(QUIET)$(MKDIR) -p $(dir $@)
|
---|
1019 | $(QUIET)$(APPEND) -t $@
|
---|
1020 |
|
---|
1021 | #
|
---|
1022 | # HACK ALERT! Make sure main doesn't start using xpidl before we're done
|
---|
1023 | # with the idl files here. The trick here is that we're using TARGET_xpidl,
|
---|
1024 | # i.e. the copy residing in obj/, while VBOX_XPIDL is pointing to
|
---|
1025 | # xpidl_1_STAGE_TARGET which is the one in bin/.
|
---|
1026 | #
|
---|
1027 | $(VBOX_XPIDL): | $(PATH_TARGET)/VBox-xpcom-idl-timestamp
|
---|
1028 |
|
---|
1029 |
|
---|
1030 | #
|
---|
1031 | # Generate linker map file filtering out unwanted global symbols.
|
---|
1032 | #
|
---|
1033 | $(PATH_TARGET)/xpcom-namespace-cleanup.map foo.map: $$(VBoxXPCOM_LIBS) $$(VBoxXPCOM_2_OBJS)
|
---|
1034 | $(call MSG_L1, Creating linker map $@ for scrubbing the symbol namespace)
|
---|
1035 | $(QUIET)$(APPEND) -t $@ '{ local: *; global: '
|
---|
1036 | $(QUIET)$(VBOX_NM) -p -g $^ \
|
---|
1037 | | $(SED) -n \
|
---|
1038 | -e '/^$$/b' \
|
---|
1039 | -e '/:$$/b' \
|
---|
1040 | -e '/ U /b' \
|
---|
1041 | -e 's/^[^ ]* [A-Z] \(.*\)$$/\1/' \
|
---|
1042 | -e 's/\<_Z[^ ]*$$/&;/p' \
|
---|
1043 | -e 's/\<VBoxNs[^ ]*$$/&;/p' \
|
---|
1044 | -e 's/\<_edata$$/&;/p' \
|
---|
1045 | -e 's/\<_end$$/&;/p' \
|
---|
1046 | -e 's/\<_etext$$/&;/p'\
|
---|
1047 | -e 's/\<_fini$$/&;/p' \
|
---|
1048 | -e 's/\<_init$$/&;/p' \
|
---|
1049 | --append $@
|
---|
1050 | $(QUIET)$(APPEND) $@ '};'
|
---|
1051 | #ifeq ($(KBUILD_TARGET),solaris)
|
---|
1052 | # # Temporary gcc 4.5.2 hack on Solaris which emits unknown mangled symbols for ctors/dtors for certain objects. See @bugref{5838}.
|
---|
1053 | # if $(VBOX_GCC_VERSION_CXX) == 40502
|
---|
1054 | # $(QUIET)$(SED) -re '/^_Z.*[C-D]5E/d' $@ > $@-sedtmp
|
---|
1055 | # $(QUIET)$(MV) $@-sedtmp $@
|
---|
1056 | # endif
|
---|
1057 | #endif
|
---|
1058 |
|
---|