Makefile.kmk revision b652dbeaf501acb237830c671ca51f8c02d7a8a9
# $Id$
## @file
# Sub-Makefile for XPCOM.
#
#
# Copyright (C) 2006-2007 Sun Microsystems, Inc.
#
# This file is part of VirtualBox Open Source Edition (OSE), as
# available from http://www.virtualbox.org. This file is free software;
# you can redistribute it and/or modify it under the terms of the GNU
# General Public License (GPL) as published by the Free Software
# Foundation, in version 2 as it comes in the "COPYING" file of the
# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
#
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
# Clara, CA 95054 USA or visit http://www.sun.com if you need
# additional information or have any questions.
#
SUB_DEPTH = ../../..
include $(KBUILD_PATH)/subheader.kmk
# File for filtering out C symbols from the XPCOM library. Used to avoid
# symbol namespace pollution, causing trouble with system libraries.
XPCOM_C_NAMESPACE_MAP = $(VBOX_PATH_XPCOM_SRC)/xpcom-namespace-cleanup.map
ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
VBOX_NM = nm$(HOSTSUFF_EXE)
# At the moment, only Solaris uses the generated map file. GNU ld is smart
# enough to handle symbol wildcards itself.
if1of ($(KBUILD_TARGET), solaris)
XPCOM_C_NAMESPACE_MAP = $(PATH_TARGET)/xpcom-namespace-cleanup.map
OTHER_CLEAN += $(XPCOM_C_NAMESPACE_MAP)
endif
endif
# @todo check whether VBoxXPCOMIPCC.so or VBoxXPCOMIPCD contain undefined
# symbols starting with NS_, PL_, PR_ or XPT. Would move the test time failure
# when missing a symbol renaming to a build time failure. Likewise, there
# should be a check whether VBoxXPCOM.so contains global C symbols (at least
# where the whitelisting of symbols via the map file is not used).
#
# Globals.
#
VBOX_PATH_XPCOM_SRC := $(PATH_SUB_CURRENT)
BLDDIRS += $(PATH_TARGET)/VBox-xpcom-xpt-files/
#
# Template for building the XPCOM libraries (shared).
#
TEMPLATE_XPCOM = XPCOM libraries (shared)
TEMPLATE_XPCOM_EXTENDS = VBOXR3NP
## @todo correct inheritance here to make it use all the VBOXR3NP settings instead of overriding all of them.
TEMPLATE_XPCOM_ASTOOL = $(TEMPLATE_VBOXR3NP_TOOL)
TEMPLATE_XPCOM_ASFLAGS = $(NO_SUCH_VARIABLE)
TEMPLATE_XPCOM_ASFLAGS.x86 = -m32
TEMPLATE_XPCOM_ASFLAGS.amd64 = -m64
TEMPLATE_XPCOM_ASDEFS = $(NO_SUCH_VARIABLE)
TEMPLATE_XPCOM_CXXFLAGS = -pipe -ansi -Wall -Wno-unused -Wno-non-virtual-dtor \
$(VBOX_GCC_Wno-invalid-offsetof) -Wno-sign-compare -Wno-unused -Wno-ctor-dtor-privacy \
$(VBOX_GCC_fvisibility-inlines-hidden) $(VBOX_GCC_fvisibility-hidden)
TEMPLATE_XPCOM_CXXFLAGS.x86 = -m32
TEMPLATE_XPCOM_CXXFLAGS.darwin = -fpascal-strings -fshort-wchar -fno-common -fno-rtti $(VBOX_DARWIN_DEF_SDK_CXXFLAGS)
TEMPLATE_XPCOM_CXXFLAGS.freebsd = -pthread
TEMPLATE_XPCOM_CXXFLAGS.l4 = -fno-exceptions -nostdinc
TEMPLATE_XPCOM_CXXFLAGS.linux = -pthread
TEMPLATE_XPCOM_CXXFLAGS.solaris = -fno-omit-frame-pointer # for now anyway.
TEMPLATE_XPCOM_CFLAGS = -pipe -Wall -Wno-unused -Wno-parentheses -Wno-uninitialized $(VBOX_GCC_fvisibility-hidden)
TEMPLATE_XPCOM_CFLAGS.x86 = -m32
TEMPLATE_XPCOM_CFLAGS.amd64 = -m64
TEMPLATE_XPCOM_CFLAGS.freebsd = -pthread
TEMPLATE_XPCOM_CFLAGS.l4 = -nostdinc
TEMPLATE_XPCOM_CFLAGS.linux = -pthread -ansi
TEMPLATE_XPCOM_CFLAGS.solaris = -fno-omit-frame-pointer # for now anyway.
TEMPLATE_XPCOM_DEFS = MOZILLA_CLIENT=1 NDEBUG=1 _IMPL_NS_COM \
XPCOM_DLL_BASE=\"$(basename $(notdir $(LIB_XPCOM)))\" \
MOZ_DLL_SUFFIX=\"$(suffix $(LIB_XPCOM))\" \
IN_RING3
ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
TEMPLATE_XPCOM_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
endif
TEMPLATE_XPCOM_DEFS.x86 = i386=1
TEMPLATE_XPCOM_DEFS.amd64 = HAVE_VA_LIST_AS_ARRAY HAVE_VA_COPY VA_COPY\(a\,b\)=__builtin_va_copy\(a\,b\)
TEMPLATE_XPCOM_DEFS.darwin = OSTYPE=\"Darwin8.8.1\" OSARCH=\"Darwin\" XP_UNIX=1 XP_MACOSX=1 TARGET_CARBON=1 HAVE_VISIBILITY_ATTRIBUTE=1 DARWIN=1 $(TEMPLATE_VBOXR3NP_DEFS.darwin)
TEMPLATE_XPCOM_DEFS.freebsd = OSTYPE=\"FreeBSD5+\" OSARCH=\"FreeBSD\" XP_UNIX=1 FREEBSD=1 HAVE_VISIBILITY_ATTRIBUTE=1
TEMPLATE_XPCOM_DEFS.linux = OSTYPE=\"Linux2.6\" OSARCH=\"Linux\" XP_UNIX=1 _GNU_SOURCE HAVE_VISIBILITY_ATTRIBUTE=1 ## @todo LINUX=1
TEMPLATE_XPCOM_DEFS.l4 = OSTYPE=\"L4ENV\" OSARCH=\"L4\" XP_UNIX=1 L4ENV HAVE_VISIBILITY_ATTRIBUTE=1
# Don't define BSD_SELECT because bsdselect() from kLIBC <= 0.6.3 has problems on SMP
TEMPLATE_XPCOM_DEFS.os2 = OSTYPE=\"OS/2_4.5\" OSARCH=\"OS/2\" XP_OS2 XP_PC OS2=4
TEMPLATE_XPCOM_DEFS.solaris = OSTYPE=\"Solaris10\" OSARCH=\"Solaris\" XP_UNIX=1 XP_SOLARIS=1 HAVE_LIBDL=1 HAVE_SENDFILEV=1 SOLARIS=1 _REENTRANT
## @todo The LDFLAGS inheriting is being hidden here and below where -fPIC is added.
ifdef VBOX_WITH_RUNPATH
TEMPLATE_XPCOM_LDFLAGS += '$(VBOX_GCC_RPATH_OPT)$(VBOX_WITH_RUNPATH)'
else ifdef VBOX_WITH_ORIGIN
TEMPLATE_XPCOM_LDFLAGS += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/'
endif
TEMPLATE_XPCOM_LDFLAGS.x86 = -m32
TEMPLATE_XPCOM_LDFLAGS.amd64 = -m64
-fshort-wchar -fno-rtti -fno-exceptions -fpascal-strings \
-framework CoreServices -framework CoreFoundation -framework Foundation -framework AppKit -framework Carbon \
-current_version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD)
ifn1of ($(KBUILD_TARGET), os2 win)
TEMPLATE_XPCOM_CXXFLAGS += -fPIC
TEMPLATE_XPCOM_CFLAGS += -fPIC
TEMPLATE_XPCOM_LDFLAGS += -fPIC
TEMPLATE_XPCOM_DEFS += MOZ_PRESERVE_PIC
endif
TEMPLATE_XPCOM_INCS = xpcom/build \
xpcom/ds \
xpcom/io \
$(VBOX_PATH_SDK)/bindings/xpcom/include \
$(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
$(VBOX_PATH_SDK)/bindings/xpcom/include/string \
$(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
$(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd \
.
TEMPLATE_XPCOM_INCS.darwin = $(VBOX_PATH_MACOSX_SDK)/Developer/Headers/FlatCarbon
TEMPLATE_XPCOM_INCS.l4 = $(L4_INCDIR) $(VBOX_L4_GCC3_INCS)
TEMPLATE_XPCOM_LDFLAGS.l4 = $(L4_DIR)/lib/x86_586/crt0.o \
-T$(L4_DIR)/lib/x86_586/main_rel.ld -nostdlib \
# -Wl,--whole-archive,--no-allow-shlib-undefined
TEMPLATE_XPCOM_LIBS.l4 = $(VBOX_GCC_LIBGCC)
TEMPLATE_XPCOM_LIBS.solaris = sendfile
TEMPLATE_XPCOM_ORDERDEPS = $(foreach hdrinst, $(filter %-HEADERS, $(INSTALLS)), $(TARGET_$(hdrinst))) \
$(PATH_VBox-xpcom-string)/idl_ts
ifeq ($(KBUILD_TARGET),os2)
ifndef USE_OS2_TOOLKIT_HEADERS
TEMPLATE_XPCOM_DEFS.os2 += OS2EMX_PLAIN_CHAR
endif
TEMPLATE_XPCOM_DEFS.os2 += XP_OS2_EMX OS2=4
# this is at least for strnicmp()
TEMPLATE_XPCOM_DEFS.os2 += _EMX_SOURCE
# @@todo shouldn't this be somehow default for ASTOOL?
TEMPLATE_XPCOM_ASFLAGS.os2 += -Zomf
endif
# When using IPRT in NSRP or/and using IPRT for logging, link with IPRT.
TEMPLATE_XPCOM_LIBS += $(LIB_RUNTIME)
#
# Template for building the XPCOM executables
#
TEMPLATE_XPCOMEXE = XPCOM executable files (testcases)
TEMPLATE_XPCOMEXE_EXTENDS = XPCOM
## @todo undo -fPIC.
TEMPLATE_XPCOMEXE_INCS = ipc/ipcd/shared/src \
$(VBOX_PATH_SDK)/bindings/xpcom/include \
$(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
$(VBOX_PATH_SDK)/bindings/xpcom/include/string \
$(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
$(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd \
.
TEMPLATE_XPCOMEXE_LIBS = \
$(TARGET_VBox-xpcom-ipcshared) \
$(TARGET_VBoxXPCOM) \
$(TEMPLATE_XPCOM_LIBS)
TEMPLATE_XPCOMEXE_LIBS.freebsd = $(LIB_PTHREAD)
TEMPLATE_XPCOMEXE_LIBS.linux = dl $(LIB_PTHREAD)
TEMPLATE_XPCOMEXE_LIBS.l4 = $(LIB_RUNTIME) $(VBOX_GCC_LIBGCC)
TEMPLATE_XPCOMEXE_LDFLAGS.darwin = -bind_at_load $(filter-out -current_version $(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD),$(TEMPLATE_XPCOM_LDFLAGS.darwin))
TEMPLATE_XPCOMEXE_LDFLAGS.l4 = $(L4_DIR)/lib/x86_586/crt0.o \
-T$(L4_DIR)/lib/x86_586/main_dyn.ld -nostdlib -lgcc \
-Wl,--export-dynamic,--dynamic-linker=libld-l4.s.so \
-Wl,--rpath-link,$(L4_LIBDIR) \
# -Wl,--whole-archive,--no-allow-shlib-undefined
#
# Template for building XPCOM executables for running at build time.
#
# It extends the BLDPROG template in config.kmk but overrides CFLAGS
# and CXXFLAGS completely at the moment.
#
TEMPLATE_XPCOMBLDPROG = XPCOM Build programs executables
TEMPLATE_XPCOMBLDPROG_EXTENDS = VBOXBLDPROG
## @todo Verify that this doesn't blow up because of template inheriance ordering. (we're assuming XPCOMEXE is expanded when this is being used.)
TEMPLATE_XPCOMBLDPROG_DEFS = $(TEMPLATE_BLDPROG_DEFS) $(TEMPLATE_XPCOMEXE_DEFS)
TEMPLATE_XPCOMBLDPROG_DEFS.$(KBUILD_TARGET) = $(TEMPLATE_BLDPROG_DEFS.$(KBUILD_TARGET)) $(TEMPLATE_XPCOMEXE_DEFS.$(KBUILD_TARGET))
TEMPLATE_XPCOMBLDPROG_DEFS.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_BLDPROG_DEFS.$(KBUILD_TARGET_ARCH)) $(TEMPLATE_XPCOMEXE_DEFS.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_CXXFLAGS = -ansi -Wall -Wno-non-virtual-dtor
TEMPLATE_XPCOMBLDPROG_CXXFLAGS.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_XPCOMEXE_CXXFLAGS.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_CXXFLAGS.freebsd = -pthread
TEMPLATE_XPCOMBLDPROG_CXXFLAGS.linux = -pthread
TEMPLATE_XPCOMBLDPROG_CFLAGS = -pipe -ansi -Wall -Wno-unused
TEMPLATE_XPCOMBLDPROG_CFLAGS.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_XPCOMEXE_CFLAGS.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_CFLAGS.freebsd = -pthread
TEMPLATE_XPCOMBLDPROG_CFLAGS.linux = -pthread
TEMPLATE_XPCOMBLDPROG_INCS = $(VBOX_PATH_SDK)/bindings/xpcom/include \
$(VBOX_PATH_SDK)/bindings/xpcom/include/nsprpub \
$(VBOX_PATH_SDK)/bindings/xpcom/include/string \
$(VBOX_PATH_SDK)/bindings/xpcom/include/xpcom \
$(VBOX_PATH_SDK)/bindings/xpcom/include/ipcd
TEMPLATE_XPCOMBLDPROG_INCS.$(KBUILD_TARGET) = $(TEMPLATE_XPCOMEXE_INCS.$(KBUILD_TARGET))
TEMPLATE_XPCOMBLDPROG_INCS.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_XPCOMEXE_INCS.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_LIBPATH.$(KBUILD_TARGET) = $(TEMPLATE_XPCOMEXE_LIBPATH.$(KBUILD_TARGET))
TEMPLATE_XPCOMBLDPROG_LIBPATH.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_XPCOMEXE_LIBPATH.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_LDFLAGS.$(KBUILD_TARGET) = $(TEMPLATE_XPCOMEXE_LDFLAGS.$(KBUILD_TARGET))
TEMPLATE_XPCOMBLDPROG_LDFLAGS.$(KBUILD_TARGET_ARCH) = $(TEMPLATE_XPCOMEXE_LDFLAGS.$(KBUILD_TARGET_ARCH))
TEMPLATE_XPCOMBLDPROG_ORDERDEPS = $(foreach hdrinst, $(filter %-HEADERS, $(INSTALLS)), $(TARGET_$(hdrinst)))
#
# Template for building VBoxPhython against the Mac OS X 10.5 SDK.
# ASSUMES that the SDK bits are in the .darwin properties we're overriding below.
#
TEMPLATE_XPCOMOSX105 = XPCOM libraries (shared) built against the Mac OS X 10.5 SDK
TEMPLATE_XPCOMOSX105_EXTENDS = XPCOM
TEMPLATE_XPCOMOSX105_CXXFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CXXFLAGS),$(TEMPLATE_XPCOM_CXXFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_CXXFLAGS)
TEMPLATE_XPCOMOSX105_CFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_CFLAGS),$(TEMPLATE_XPCOM_CFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_CFLAGS)
TEMPLATE_XPCOMOSX105_LDFLAGS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_LDFLAGS),$(TEMPLATE_XPCOM_LDFLAGS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_LDFLAGS)
TEMPLATE_XPCOMOSX105_DEFS.darwin = $(filter-out $(VBOX_DARWIN_DEF_SDK_DEFS),$(TEMPLATE_XPCOM_DEFS.darwin)) $(VBOX_DARWIN_DEF_SDK_10_5_DEFS)
TEMPLATE_XPCOMOSX105_INCS.darwin = $(VBOX_PATH_MACOSX_SDK_10_5)/Developer/Headers/FlatCarbon
#
# Header installs.
#
INSTALLS += \
NSPRPUB-HEADERS \
NSPRPUB-MD-HEADERS \
NSPRPUB-OBS-HEADERS \
NSPRPUB-PRIV-HEADERS \
STRING-HEADERS \
XPCOM-HEADERS \
IPCD-HEADERS
#
# The IDL compiler and typelib linker.
#
BLDPROGS += \
xpidl \
xpt_link
#
# We build several libraries so that any linker command line
# length restrictions limit will be avoided. (Solaris, Mac?)
#
ifndef VBOX_ONLY_SDK
LIBRARIES += \
VBox-xpcom-nspr \
VBox-xpcom-typelib \
VBox-xpcom-string \
VBox-xpcom-base \
VBox-xpcom-ds \
VBox-xpcom-io \
VBox-xpcom-components \
VBox-xpcom-threads \
VBox-xpcom-xptinfo \
VBox-xpcom-xptcall \
VBox-xpcom-proxy \
VBoxXPCOMGlue_s \
VBoxXPCOMGlue \
VBox-xpcom-ipcutils \
VBox-xpcom-ipcshared \
VBox-xpcom-ipcdlock \
VBox-xpcom-ipctransmgr \
VBox-xpcom-ipctmgrcom
DLLS += \
VBoxXPCOM \
VBoxXPCOMIPCC
ifdef VBOX_WITH_TESTCASES
PROGRAMS += \
tstnsIFileEnumerator \
tstnsIFileTest \
tstTestArray \
tstTestAtoms \
tstTestAutoLock \
tstTestCallTemplates \
tstTestCOMPtr \
tstTestCOMPtrEq \
tstTestCRT \
tstTestFactory \
tstTestHashtables \
tstTestID \
tstTestObserverService \
tstTestPipes \
tstTestServMgr \
tstTestThreads \
tstTestXPIDLString \
tstTestDeque \
tstTestAutoPtr \
tstTestMinStringAPI \
tstTestStrings \
tstPrimitiveTest \
tstSimpleTypeLib \
tstXptDump \
tstXptLink
# tstTestPermanentAtoms
endif # VBOX_WITH_TESTCASES
PROGRAMS += VBoxXPCOMIPCD
else
PATH_VBox-xpcom-string=$(PATH_BIN)
endif # !VBOX_ONLY_SDK
#
# SDK headers - lot's of files to install...
#
# Tip: If you are going to remove files here, you might
# wish to do a `kmk uninstall' first to avoid have
# obsoleted files in the $(INST_SDK) directory.
#
NSPRPUB-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/nsprpub/
NSPRPUB-HEADERS_IFFLAGS = -m 644
NSPRPUB-HEADERS_SOURCES = \
NSPRPUB-MD-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/nsprpub/md
NSPRPUB-MD-HEADERS_IFFLAGS = -m 644
NSPRPUB-MD-HEADERS_SOURCES = \
\
NSPRPUB-OBS-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/nsprpub/obsolete
NSPRPUB-OBS-HEADERS_IFFLAGS = -m 644
NSPRPUB-OBS-HEADERS_SOURCES = \
NSPRPUB-PRIV-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/nsprpub/private
NSPRPUB-PRIV-HEADERS_IFFLAGS = -m 644
NSPRPUB-PRIV-HEADERS_SOURCES = \
STRING-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/string
STRING-HEADERS_IFFLAGS = -m 644
STRING-HEADERS_SOURCES = \
XPCOM-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/xpcom
XPCOM-HEADERS_IFFLAGS = -m 644
XPCOM-HEADERS_SOURCES = \
\
\
\
\
IPCD-HEADERS_INST = $(INST_SDK)/bindings/xpcom/include/ipcd
IPCD-HEADERS_IFFLAGS = -m 644
IPCD-HEADERS_SOURCES = \
#
# The IDL compiler.
#
# We build it statically because we cannot rely on additional .a files
# like in the original build
#
xpidl_TEMPLATE = XPCOMBLDPROG
xpidl_DEFS = EXPORT_XPT_API
## @todo This assumes HOST == TARGET.
xpidl_INST = $(INST_BIN)
xpidl_SOURCES = \
ifeq ($(KBUILD_TARGET),os2)
# glib and libIDL needed by XPCOM on OS/2.
ifeq ($(VBOX_PATH_GLIB),)
VBOX_PATH_GLIB := $(lastword $(sort $(wildcard $(PATH_DEVTOOLS_TRG)/glibidl/*/glibidl/gcc335)))
endif
VBOX_PATH_LIBIDL ?= $(VBOX_PATH_GLIB)
ifeq ($(wildcard $(VBOX_PATH_GLIB)),)
$(warning VBOX_PATH_GLIB is "$(VBOX_PATH_GLIB)" which is not a valid directory!)
endif
ifeq ($(wildcard $(VBOX_PATH_LIBIDL)),)
$(warning VBOX_PATH_LIBIDL is "$(VBOX_PATH_LIBIDL)" which is not a valid directory!)
endif
xpidl_INCS = \
$(VBOX_PATH_LIBIDL)/include \
$(VBOX_PATH_GLIB)/include
xpidl_LIBS = \
$(VBOX_PATH_LIBIDL)/lib/libidl.lib \
$(VBOX_PATH_LIBIDL)/lib/glib.lib
# install necessary DLLs to the same place where xpidl goes
INSTALLS += xpidl-DLLS
xpidl_ORDERDEPS = xpidl-DLLS
xpidl-DLLS_INST = $(xpidl_INST)
# static libraries of these may be provided instead,
# so copy DLLs only when they are present
xpidl-DLLS_SOURCES += $(wildcard $(VBOX_PATH_GLIB)/lib/glib.dll)
xpidl-DLLS_SOURCES += $(wildcard $(VBOX_PATH_LIBIDL)/lib/libIDL.dll)
else
# We do these ONCE.
libIDL_config_cflags := $(shell $(VBOX_LIBIDL_CONFIG) --cflags)
libIDL_config_libs := $(shell $(VBOX_LIBIDL_CONFIG) --libs)
xpidl_CFLAGS = \
$(libIDL_config_cflags)
xpidl_LDFLAGS = \
$(libIDL_config_libs)
endif
#
# The XPT linker.
#
xpt_link_TEMPLATE = XPCOMBLDPROG
xpt_link_SOURCES = \
#
# The NSPR Library.
#
VBox-xpcom-nspr_TEMPLATE = XPCOM
VBox-xpcom-nspr_NOINST = 1
VBox-xpcom-nspr_DEFS = \
_NSPR_BUILD_ \
HAVE_LCHOWN=1 \
HAVE_STRERROR=1 \
FORCE_PR_LOG
VBox-xpcom-nspr_DEFS += \
VBOX_USE_IPRT_IN_NSPR
HAVE_BSD_FLOCK=1 \
_PR_PTHREADS
FREEBSD=1 \
HAVE_CVAR_BUILT_ON_SEM \
_PR_PTHREADS
## @todo filling in the missing stuff, please don't just copy it from linux.
# FIXME: LINUX should be defined by _linux.cfg
LINUX=1 \
_POSIX_SOURCE=1 \
_BSD_SOURCE=1 \
_SVID_SOURCE=1 \
_REENTRANT=1 \
_LARGEFILE64_SOURCE=1 \
HAVE_FCNTL_FILE_LOCKING=1 \
HAVE_CVAR_BUILT_ON_SEM \
_PR_PTHREADS
# _BSD_SOURCE is here to keep the Glibc header files happy and make them include the right things
# FIXME: L4 should be defined by _linux.cfg
L4=1 \
_REENTRANT=1 \
_LARGEFILE64_SOURCE=1 \
_POSIX_SOURCE=1 \
_BSD_SOURCE=1 \
HAVE_FCNTL_FILE_LOCKING=1 \
HAVE_CVAR_BUILT_ON_SEM
_PR_PTHREADS
_PR_PTHREADS
HAVE_FCNTL_FILE_LOCKING=1 \
_PR_PTHREADS
VBox-xpcom-nspr_INCS = \
$(PATH_VBox-xpcom-nspr)
VBox-xpcom-nspr_SOURCES = \
ifeq ($(filter-out darwin freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),) # unixish
VBox-xpcom-nspr_SOURCES += \
endif
nsprpub/pr/src/io/prfile.c /* why not for Linux? */ \
nsprpub/pr/src/io/prio.c /* "" "" "" "" */ \
# gcc/emx sources
# IBM VAC sources (not used)
# generate build stamps
nsprpub/pr/src/prvrsion.c_DEPS = $(PATH_VBox-xpcom-nspr)/_pr_bld.h
nsprpub/lib/ds/plvrsion.c_DEPS = $(PATH_VBox-xpcom-nspr)/_pl_bld.h
VBox-xpcom-nspr_CLEAN += \
$(PATH_VBox-xpcom-nspr)/_pr_bld.h \
$(PATH_VBox-xpcom-nspr)/_pl_bld.h
$$(PATH_VBox-xpcom-nspr)/_pr_bld.h: | $$(PATH_VBox-xpcom-nspr)/
$(call MSG_GENERATE,,$@)
$(QUIET)$(APPEND) -t $@ '#define _BUILD_STRING "$(date +%Y-%m-%d %T)"'
$$(PATH_VBox-xpcom-nspr)/_pl_bld.h: | $$(PATH_VBox-xpcom-nspr)/
$(call MSG_GENERATE,,$@)
$(QUIET)$(APPEND) -t $@ '#define _BUILD_STRING "$(date +%Y-%m-%d %T)"'
VBox-xpcom-typelib_TEMPLATE = XPCOM
VBox-xpcom-typelib_NOINST = 1
VBox-xpcom-typelib_SOURCES = \
VBox-xpcom-string_TEMPLATE = XPCOM
VBox-xpcom-string_NOINST = 1
VBox-xpcom-string_SOURCES = \
VBox-xpcom-base_TEMPLATE = XPCOM
VBox-xpcom-base_NOINST = 1
VBox-xpcom-base_DEFS = _IMPL_NS_COM
VBox-xpcom-base_SOURCES = \
VBox-xpcom-ds_TEMPLATE = XPCOM
VBox-xpcom-ds_NOINST = 1
VBox-xpcom-ds_DEFS = _IMPL_NS_COM
VBox-xpcom-ds_SOURCES = \
# @todo what about MOZ_USER_DIR?
VBox-xpcom-io_TEMPLATE = XPCOM
VBox-xpcom-io_NOINST = 1
VBox-xpcom-io_DEFS = _IMPL_NS_COM MOZ_USER_DIR=\".mozilla\"
VBox-xpcom-io_SOURCES = \
ifeq ($(filter-out freebsd linux netbsd openbsd solaris,$(KBUILD_TARGET)),)
VBox-xpcom-io_SOURCES += \
endif
VBox-xpcom-components_TEMPLATE = XPCOM
VBox-xpcom-components_NOINST = 1
VBox-xpcom-components_DEFS = _IMPL_NS_COM EXPORT_XPTI_API
VBox-xpcom-components_SOURCES = \
VBox-xpcom-threads_TEMPLATE = XPCOM
VBox-xpcom-threads_NOINST = 1
VBox-xpcom-threads_DEFS = _IMPL_NS_COM
VBox-xpcom-threads_SOURCES = \
VBox-xpcom-xptinfo_TEMPLATE = XPCOM
VBox-xpcom-xptinfo_NOINST = 1
VBox-xpcom-xptinfo_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API
VBox-xpcom-xptinfo_SOURCES = \
VBox-xpcom-xptcall_TEMPLATE = XPCOM
VBox-xpcom-xptcall_NOINST = 1
VBox-xpcom-xptcall_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTC_API
VBox-xpcom-xptcall_DEFS.darwin = KEEP_STACK_16_BYTE_ALIGNED
VBox-xpcom-xptcall_DEFS.os2 = MOZ_NEED_LEADING_UNDERSCORE
VBox-xpcom-xptcall_SOURCES = xpcom/reflect/xptcall/src/xptcall.cpp
VBox-xpcom-xptcall_SOURCES.darwin.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_unixish_x86.cpp \
VBox-xpcom-xptcall_SOURCES.freebsd.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
VBox-xpcom-xptcall_SOURCES.freebsd.amd64= xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
VBox-xpcom-xptcall_SOURCES.linux.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_gcc_x86_unix.cpp \
VBox-xpcom-xptcall_SOURCES.linux.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
VBox-xpcom-xptcall_SOURCES.solaris.x86 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_solaris.cpp \
VBox-xpcom-xptcall_SOURCES.solaris.amd64 = xpcom/reflect/xptcall/src/md/unix/xptcinvoke_x86_64_linux.cpp \
# -O0 works fine, while -O1 doesn't. The gcc man page can't be listing all the -f*
# stuff that -O1 enables, because when using the options without -O1, it's -fomit-frame-pointer
# that triggers is, while -O1 -fno-omit-frame-pointer does not work. Anyway, it's probably a gcc/mozila
# bug and it's not worth investigating as I'm not the maintainger of the solaris gcc port. [bird, 2007-09-17]
VBox-xpcom-proxy_TEMPLATE = XPCOM
VBox-xpcom-proxy_NOINST = 1
VBox-xpcom-proxy_DEFS = _IMPL_NS_COM EXPORT_XPTC_API EXPORT_XPTI_API
VBox-xpcom-proxy_SOURCES = xpcom/proxy/src/nsProxyEvent.cpp \
#
# The VBoxXPCOM Glue static libraries.
#
# See http://developer.mozilla.org/en/docs/XPCOM_Glue for details about the
# original XPCOM glue library purpose and usage.
#
# We don't really use the glue library in the described way because we don't
# provide frozen APIs (yet), so all VBox XPCOM client applications are
# dependent on the given version of both the VBox XPCOM runtime (binary
# dependency) and VirtualBox component library (COM interface dependency). For
# this reason, VBox client applications link to the VBox XPCOM shared library
# directly (instead of linking to the standalone XPCOM glue library that would
# dynamically search for and load the installed XPCOM runtime). For the same
# reason, we link all parts of XPCOM into a single shared XPCOM library below
# (as opposed to the original XPCOM where e.g. NSPR lives in a separate DLL).
#
VBoxXPCOMGlue_COMMON_SOURCES = \
# dependent glue library which goes in to the VBoxXPCOM shared library
VBoxXPCOMGlue_s_TEMPLATE = XPCOM
VBoxXPCOMGlue_s_NOINST = 1
VBoxXPCOMGlue_s_DEFS = _IMPL_NS_COM
VBoxXPCOMGlue_s_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES)
# standalone glue library which all third-party client apps (if any) will link with
# (currently not used anywhere (see above) but still built to make sure
# the code inside #ifdef XPCOM_GLUE compiles)
VBoxXPCOMGlue_TEMPLATE = XPCOM
VBoxXPCOMGlue_DEFS = XPCOM_GLUE
VBoxXPCOMGlue_SOURCES = $(VBoxXPCOMGlue_COMMON_SOURCES) \
VBoxXPCOMGlue_SOURCES += \
$(TARGET_VBox-xpcom-string)
#VBoxXPCOMGlue_INST = lib/ $(INST_SDK)lib/
#
# The VBoxXPCOM Shared Object, assembling all lib files.
#
VBoxXPCOM_TEMPLATE = XPCOM
VBoxXPCOM_NAME = $(basename $(notdir $(LIB_XPCOM)))
VBoxXPCOM_DEFS = BUILD_DCONNECT="1" _IMPL_NS_COM
ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP
VBoxXPCOM_LDFLAGS.linux = -Wl,--version-script=$(XPCOM_C_NAMESPACE_MAP)
VBoxXPCOM_LNK_DEPS.linux += $(XPCOM_C_NAMESPACE_MAP)
VBoxXPCOM_LDFLAGS.solaris = -Wl,-M,$(XPCOM_C_NAMESPACE_MAP)
VBoxXPCOM_LNK_DEPS.solaris+= $(XPCOM_C_NAMESPACE_MAP)
endif
VBoxXPCOM_SOURCES = \
VBoxXPCOM_LIBS = \
$(TARGET_VBox-xpcom-typelib) \
$(TARGET_VBox-xpcom-string) \
$(TARGET_VBox-xpcom-base) \
$(TARGET_VBox-xpcom-ds) \
$(TARGET_VBox-xpcom-io) \
$(TARGET_VBox-xpcom-components) \
$(TARGET_VBox-xpcom-threads) \
$(TARGET_VBox-xpcom-xptinfo) \
$(TARGET_VBox-xpcom-xptcall) \
$(TARGET_VBox-xpcom-proxy) \
$(TARGET_VBox-xpcom-nspr) \
$(TARGET_VBoxXPCOMGlue_s)
ifeq ($(filter-out freebsd l4 linux netbsd openbsd,$(KBUILD_TARGET)),) # gnu ld.
VBoxXPCOM_LDFLAGS = -Wl,--whole-archive \
$(TARGET_VBox-xpcom-typelib) \
$(TARGET_VBox-xpcom-string) \
$(TARGET_VBox-xpcom-base) \
$(TARGET_VBox-xpcom-ds) \
$(TARGET_VBox-xpcom-io) \
$(TARGET_VBox-xpcom-components) \
$(TARGET_VBox-xpcom-threads) \
$(TARGET_VBox-xpcom-xptinfo) \
$(TARGET_VBox-xpcom-xptcall) \
$(TARGET_VBox-xpcom-proxy) \
$(TARGET_VBox-xpcom-nspr) \
$(TARGET_VBoxXPCOMGlue_s) \
-Wl,--no-whole-archive
endif
VBoxXPCOM_LDFLAGS.solaris += -Wl,-z,allextract \
$(TARGET_VBox-xpcom-typelib) \
$(TARGET_VBox-xpcom-string) \
$(TARGET_VBox-xpcom-base) \
$(TARGET_VBox-xpcom-ds) \
$(TARGET_VBox-xpcom-io) \
$(TARGET_VBox-xpcom-components) \
$(TARGET_VBox-xpcom-threads) \
$(TARGET_VBox-xpcom-xptinfo) \
$(TARGET_VBox-xpcom-xptcall) \
$(TARGET_VBox-xpcom-proxy) \
$(TARGET_VBox-xpcom-nspr) \
$(TARGET_VBoxXPCOMGlue_s) \
-Wl,-z,defaultextract
#VBoxXPCOM_LIBS.l4 = $(L4_LIBDIR)/libxpcomstubs.a $(L4_LIBDIR)/../libuc_c++.a \
# $(VBOX_PATH_L4_GCC3_INSTALL)/libsupc++.a $(VBOX_PATH_L4_GCC3_INSTALL)/libgcc_eh.a
# EF heap
#VBoxXPCOM_LIBS += $(LIB_RUNTIME_EF)
#VBoxXPCOM_LDFLAGS = -Wl,--whole-archive $(VBoxXPCOM_LIBS) -Wl,--no-whole-archive $(LIB_RUNTIME)
VBoxXPCOM_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/VBoxXPCOM.dylib
ifdef VBOX_IPC_RELEASE_LOG
IPC_LOGGING = 1
else ifneq ($(KBUILD_TYPE),release)
IPC_LOGGING = 1
endif
TEMPLATE_XPCOMIPC = XPCOM IPC libraries
TEMPLATE_XPCOMIPC_EXTENDS = XPCOM
TEMPLATE_XPCOMIPC_DEFS = \
$(TEMPLATE_XPCOM_DEFS) BUILD_DCONNECT="1" \
IPC_DAEMON_APP_NAME=\"VBoxXPCOMIPCD$(SUFF_EXE)\"
ifdef IPC_LOGGING
TEMPLATE_XPCOMIPC_DEFS += IPC_LOGGING
endif
TEMPLATE_XPCOMIPC_LIBS = $(TARGET_VBoxXPCOM) $(TEMPLATE_XPCOM_LIBS)
TEMPLATE_XPCOMIPCEXE = XPCOM IPC executables
TEMPLATE_XPCOMIPCEXE_EXTENDS = XPCOMEXE
TEMPLATE_XPCOMIPCEXE_DEFS = $(TEMPLATE_XPCOMEXE_DEFS) BUILD_DCONNECT="1"
ifdef IPC_LOGGING
TEMPLATE_XPCOMIPCEXE_DEFS += IPC_LOGGING
endif
VBox-xpcom-ipcutils_TEMPLATE = XPCOMIPC
VBox-xpcom-ipcutils_NOINST = 1
VBox-xpcom-ipcutils_SOURCES = \
VBox-xpcom-ipcshared_TEMPLATE = XPCOMIPC
VBox-xpcom-ipcshared_NOINST = 1
VBox-xpcom-ipcshared_SOURCES = \
VBox-xpcom-ipcdlock_TEMPLATE = XPCOMIPC
VBox-xpcom-ipcdlock_NOINST = 1
VBox-xpcom-ipcdlock_SOURCES = \
VBox-xpcom-ipctransmgr_TEMPLATE = XPCOMIPC
VBox-xpcom-ipctransmgr_NOINST = 1
VBox-xpcom-ipctransmgr_SOURCES = \
VBox-xpcom-ipctmgrcom_TEMPLATE = XPCOMIPC
VBox-xpcom-ipctmgrcom_NOINST = 1
VBox-xpcom-ipctmgrcom_SOURCES = \
#
# DCONNECT client shared object
#
VBoxXPCOMIPCC_TEMPLATE = XPCOMIPC
VBoxXPCOMIPCC_NAME.os2 = VBoxIPCC
VBoxXPCOMIPCC_INST = $(INST_BIN)components/
VBoxXPCOMIPCC_DEFS = HAVE_DEPENDENT_LIBS
VBoxXPCOMIPCC_SOURCES = \
ifeq ($(KBUILD_TARGET),win)
VBoxXPCOMIPCC_SOURCES += \
else
VBoxXPCOMIPCC_SOURCES += \
endif
VBoxXPCOMIPCC_LDFLAGS.darwin = -install_name $(VBOX_DYLD_EXECUTABLE_PATH)/components/VBoxXPCOMIPCC.dylib
VBoxXPCOMIPCC_LIBS = \
$(TARGET_VBox-xpcom-ipcutils) \
$(TARGET_VBox-xpcom-ipcshared) \
$(TARGET_VBox-xpcom-ipcdlock) \
$(TARGET_VBox-xpcom-ipctransmgr) \
$(TARGET_VBox-xpcom-ipctmgrcom)
# EF
#VBoxXPCOMIPCC_LIBS += $(LIB_RUNTIME)
#
# DCONNECT daemon executable
#
VBoxXPCOMIPCD_TEMPLATE = XPCOMIPCEXE
VBoxXPCOMIPCD_SOURCES = \
ifeq ($(KBUILD_TARGET),win)
VBoxXPCOMIPCD_SOURCES += \
else
VBoxXPCOMIPCD_SOURCES += \
endif
#
# Python<->XPCOM bridge.
#
# Find the Python headers for the Python<->XPCOM bridge if enabled.
ifdef VBOX_WITH_PYTHON
if "$(KBUILD_TARGET)" == "darwin" && !defined(VBOX_PATH_PYTHON_INC) && !defined(VBOX_LIB_PYTHON)
ifndef VBOX_PYTHON_FRAMEWORK
ifneq ($(VBOX_DEF_MACOSX_VERSION_MIN),10.4)
$(error we are assuming 10.4 here; VBOX_DEF_MACOSX_VERSION_MIN=$(VBOX_DEF_MACOSX_VERSION_MIN))
endif
# Does -framework really work with CXXFLAGS and CFLAGS?
VBOX_PYTHON_FRAMEWORK := -framework Python
VBOX_PATH_PYTHON_INC := $(VBOX_PATH_MACOSX_SDK_10_4)/System/Library/Frameworks/Python.framework/Headers
endif
else # !darwin || configured darwin
ifndef VBOX_PATH_PYTHON_INC
VBOX_PATH_PYTHON_INC := $(patsubst %/Python.h,%, $(lastword $(sort $(wildcard \
))))
ifeq ($(VBOX_PATH_PYTHON_INC),)
$(warning Unable to determine the python include directory (VBOX_PATH_PYTHON_INC).)
endif
endif
VBOX_PYTHON_VER := 2$(lastword $(subst ., .,$(VBOX_PATH_PYTHON_INC)))
ifndef VBOX_LIB_PYTHON
VBOX_TMP := $(if $(eq $(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),solaris.amd64),64/,)
VBOX_LIB_PYTHON := $(firstword $(wildcard \
/usr/lib/$(VBOX_TMP)libpython$(VBOX_PYTHON_VER)$(SUFF_DLL) \
/usr/local/lib/$(VBOX_TMP)libpython$(VBOX_PYTHON_VER)$(SUFF_DLL) \
/usr/lib/$(VBOX_TMP)libpython2$(SUFF_DLL) \
/usr/local/lib/$(VBOX_TMP)libpython2$(SUFF_DLL) \
/usr/lib/$(VBOX_TMP)libpython$(SUFF_DLL) \
/usr/local/lib/$(VBOX_TMP)libpython$(SUFF_DLL) \
))
ifeq ($(VBOX_LIB_PYTHON),)
$(warning Unable to determine the python library (VBOX_LIB_PYTHON).)
endif
endif # !darwin || configured darwin
endif
ifndef VBOX_ONLY_SDK
DLLS += VBoxPython
endif
INSTALLS += VBoxPython-inst-py-xpcom
INSTALLS += VBoxPython-inst-sample
endif
# Python Client Module - the C++/XPCOM bits.
VBoxPython_TEMPLATE = XPCOM
VBoxPython_DEFS = _IMPL_NS_COM _IMPL_NS_BASE EXPORT_XPTI_API EXPORT_XPT_API \
VBOX_PYXPCOM VBOX_WITH_XPCOM
VBoxPython_DEFS.darwin = VBOX_PYXPCOM_VERSIONED
VBoxPython_NAME.darwin = VBoxPython2_3
ifeq ($(KBUILD_TARGET),darwin)
## @todo kBuild - this ain't working: VBoxPython_DLLSUFF.darwin = .so
VBoxPython_DLLSUFF = .so
endif
VBoxPython_CFLAGS.darwin = $(VBOX_PYTHON_FRAMEWORK)
VBoxPython_CXXFLAGS.darwin = $(VBOX_PYTHON_FRAMEWORK)
VBoxPython_LDFLAGS.darwin = $(VBOX_PYTHON_FRAMEWORK)
VBoxPython_INCS = \
$(VBOX_PATH_PYTHON_INC)
VBoxPython_SOURCES = \
VBoxPython_LIBS = \
$(PATH_LIB)/VBoxCOM$(VBOX_SUFF_LIB) \
$(PATH_BIN)/VBoxXPCOM$(VBOX_SUFF_DLL) \
$(VBOX_LIB_PYTHON)
if defined(VBOX_WITH_VBOXPYTHON_FOR_OSX_10_5) && "$(KBUILD_TARGET)" == "darwin"
# Same VBoxPython except built against the Mac OS X 10.5 SDK.
DLLS += VBoxPython2_5
VBoxPython2_5_EXTENDS = VBoxPython
VBoxPython2_5_TEMPLATE = XPCOMOSX105
VBoxPython2_5_NAME.darwin = VBoxPython2_5
VBoxPython2_5_INCS = \
$(VBOX_PATH_MACOSX_SDK_10_5)/System/Library/Frameworks/Python.framework/Headers
endif
# Python Client Module - the Python bits.
VBoxPython-inst-py-xpcom_INST = $(INST_SDK)bindings/xpcom/python/xpcom/
VBoxPython-inst-py-xpcom_SOURCES = \
python/__init__.py \
# Python Client Module - a sample script.
VBoxPython-inst-sample_INST = $(INST_SDK)bindings/xpcom/python/sample/
VBoxPython-inst-sample_SOURCES = \
#
# testcases
#
tstnsIFileEnumerator_TEMPLATE = XPCOMEXE
tstnsIFileEnumerator_SOURCES = xpcom/tests/nsIFileEnumerator.cpp
tstnsIFileTest_TEMPLATE = XPCOMEXE
tstnsIFileTest_SOURCES = xpcom/tests/nsIFileTest.cpp
tstTestArray_TEMPLATE = XPCOMEXE
tstTestArray_SOURCES = xpcom/tests/TestArray.cpp
tstTestAtoms_TEMPLATE = XPCOMEXE
tstTestAtoms_SOURCES = xpcom/tests/TestAtoms.cpp
tstTestAutoLock_TEMPLATE = XPCOMEXE
tstTestAutoLock_SOURCES = xpcom/tests/TestAutoLock.cpp
tstTestCallTemplates_TEMPLATE = XPCOMEXE
tstTestCallTemplates_SOURCES = xpcom/tests/TestCallTemplates.cpp
tstTestCOMPtr_TEMPLATE = XPCOMEXE
tstTestCOMPtr_SOURCES = xpcom/tests/TestCOMPtr.cpp
tstTestCOMPtrEq_TEMPLATE = XPCOMEXE
tstTestCOMPtrEq_SOURCES = xpcom/tests/TestCOMPtrEq.cpp
tstTestCRT_TEMPLATE = XPCOMEXE
tstTestCRT_SOURCES = xpcom/tests/TestCRT.cpp
tstTestFactory_TEMPLATE = XPCOMEXE
tstTestFactory_SOURCES = xpcom/tests/TestFactory.cpp
tstTestHashtables_TEMPLATE = XPCOMEXE
tstTestHashtables_SOURCES = xpcom/tests/TestHashtables.cpp
tstTestID_TEMPLATE = XPCOMEXE
tstTestID_SOURCES = xpcom/tests/TestID.cpp
tstTestObserverService_TEMPLATE= XPCOMEXE
tstTestObserverService_SOURCES = xpcom/tests/TestObserverService.cpp
tstTestPermanentAtoms_TEMPLATE = XPCOMEXE
tstTestPermanentAtoms_SOURCES = xpcom/tests/TestPermanentAtoms.cpp
tstTestPipes_TEMPLATE = XPCOMEXE
tstTestPipes_SOURCES = xpcom/tests/TestPipes.cpp
tstTestServMgr_TEMPLATE = XPCOMEXE
tstTestServMgr_SOURCES = xpcom/tests/TestServMgr.cpp
tstTestServMgr_INCS = xpcom/tests/services
tstTestThreads_TEMPLATE = XPCOMEXE
tstTestThreads_SOURCES = xpcom/tests/TestThreads.cpp
tstTestXPIDLString_TEMPLATE = XPCOMEXE
tstTestXPIDLString_SOURCES = xpcom/tests/TestXPIDLString.cpp
tstTestDeque_TEMPLATE = XPCOMEXE
tstTestDeque_SOURCES = xpcom/tests/TestDeque.cpp
tstTestAutoPtr_TEMPLATE = XPCOMEXE
tstTestAutoPtr_SOURCES = xpcom/tests/TestAutoPtr.cpp
tstTestMinStringAPI_TEMPLATE = XPCOMEXE
tstTestMinStringAPI_SOURCES = xpcom/tests/TestMinStringAPI.cpp
tstTestStrings_TEMPLATE = XPCOMEXE
tstTestStrings_SOURCES = xpcom/tests/TestStrings.cpp
tstPrimitiveTest_TEMPLATE = XPCOMEXE
tstPrimitiveTest_SOURCES = xpcom/typelib/xpt/tests/PrimitiveTest.c
tstSimpleTypeLib_TEMPLATE = XPCOMEXE
tstSimpleTypeLib_SOURCES = xpcom/typelib/xpt/tests/SimpleTypeLib.c
tstXptDump_TEMPLATE = XPCOMEXE
tstXptDump_SOURCES = xpcom/typelib/xpt/tools/xpt_dump.c
tstXptLink_TEMPLATE = XPCOMEXE
tstXptLink_SOURCES = xpcom/typelib/xpt/tools/xpt_link.c
XPCOM_IDLFILES = \
OTHER_CLEAN += \
$(PATH_VBox-xpcom-string)/idl_ts \
$(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.h,$(XPCOM_IDLFILES)))) \
$(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/include,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES)))) \
$(addprefix $(VBOX_PATH_SDK)/bindings/xpcom/idl/,$(notdir $(XPCOM_IDLFILES))) \
$(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(XPCOM_IDLFILES))))
#
# Create and install VBoxXPCOMBase.xpt
#
INSTALLS += VBoxXPCOMBase-xpt-inst
VBOX_XPTFILES = $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/, \
VBoxXPCOMBase-xpt-inst_INST = $(INST_BIN)components/
VBoxXPCOMBase-xpt-inst_MODE = 0644
VBoxXPCOMBase-xpt-inst_SOURCES = \
$(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
VBoxXPCOMBase-xpt-inst_CLEAN = \
$(VBOX_XPTFILES) \
$(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt
# combined typelib library
$(PATH_TARGET)/VBox-xpcom-xpt-files/VBoxXPCOMBase.xpt: $$(VBOX_XPTFILES) | $$(TARGET_xpt_link) $(PATH_TARGET)/VBox-xpcom-xpt-files/
$(call MSG_LINK,XPCOM_TYPELIB,$@)
$(QUIET)$(MKDIR) -p -- $(PATH_BIN)/components
$(QUIET)$(TARGET_xpt_link) $@ $^
# generate rules
include $(KBUILD_PATH)/subfooter.kmk
#
# Generate IDL rules.
#
##
# Define for compiling one IDL into a header and a typelib
# @param idl The filename with everything.
XPIDL_INCS = \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/base/ \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/ds/ \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/components/ \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/io/ \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/threads/ \
-I $(VBOX_PATH_XPCOM_SRC)/xpcom/reflect/xptinfo/public/
define def_IDL
$(VBOX_PATH_SDK)/bindings/xpcom/include/$(notdir $(subst .idl,.h,$(idl))) \
+ $(PATH_TARGET)/VBox-xpcom-xpt-files/$(notdir $(subst .idl,.xpt,$(idl))): \
$(VBOX_PATH_XPCOM_SRC)/$(idl) \
| $$$$(TARGET_xpidl) \
$(PATH_TARGET)/VBox-xpcom-xpt-files/
$$(call MSG_TOOL,xpidl,XPCOM,$$<,$$@)
$$(QUIET)$(MKDIR) -p $(VBOX_PATH_SDK)/bindings/xpcom/include $(VBOX_PATH_SDK)/bindings/xpcom/idl
$$(QUIET)$$(TARGET_xpidl) -m header $(XPIDL_INCS) -e $$@ $$<
$$(QUIET)$$(TARGET_xpidl) -m typelib $(XPIDL_INCS) -e $(addprefix $(PATH_TARGET)/VBox-xpcom-xpt-files/,$(notdir $(subst .idl,.xpt,$(idl)))) $$<
$$(QUIET)$(CP) $$< $$(VBOX_PATH_SDK)/bindings/xpcom/idl
endef
$(foreach idl, $(XPCOM_IDLFILES), $(eval $(def_IDL)))
# dummy target.
$(PATH_VBox-xpcom-string)/idl_ts: $$(addprefix $$(VBOX_PATH_SDK)/bindings/xpcom/include/,$$(notdir $$(subst .idl,.h,$$(XPCOM_IDLFILES))))
$(call MSG_L1,IDL processing completed.)
$(QUIET)$(MKDIR) -p $(dir $@)
$(QUIET)$(APPEND) -t $@
#
# HACK ALERT! Make sure main doesn't start using xpidl before we're done
# with the idl files here. The trick here is that we're using TARGET_xpidl,
# i.e. the copy residing in obj/, while VBOX_XPIDL is pointing to
# INSTARGET_xpidl which is the one in bin/.
#
$(VBOX_XPIDL): $$(PATH_VBox-xpcom-string)/idl_ts
#
# Generate linker map file filtering out unwanted global symbols.
#
$(PATH_TARGET)/xpcom-namespace-cleanup.map foo.map: $$(VBoxXPCOM_LIBS) $$(VBoxXPCOM_OBJS_)
$(call MSG_L1, Creating linker map $@ for scrubbing the symbol namespace)
$(QUIET)$(APPEND) -t $@ '{ local: *; global: '
$(QUIET)$(VBOX_NM) -p -g $^ \
| $(SED) -n \
-e '/^$$/b' \
-e '/:$$/b' \
-e '/ U /b' \
-e 's/^[^ ]* [A-Z] \(.*\)$$/\1/' \
-e 's/\<_Z[^ ]*$$/&;/p' \
-e 's/\<VBoxNs[^ ]*$$/&;/p' \
-e 's/\<_edata$$/&;/p' \
-e 's/\<_end$$/&;/p' \
-e 's/\<_etext$$/&;/p'\
-e 's/\<_fini$$/&;/p' \
-e 's/\<_init$$/&;/p' \
--append $@
$(QUIET)$(APPEND) $@ '};'