Changeset 11551 in vbox for trunk/src/VBox/Main
- Timestamp:
- Aug 21, 2008 5:16:02 PM (16 years ago)
- Location:
- trunk/src/VBox/Main/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/Makefile.kmk
r11467 r11551 86 86 tstVBoxAPILinux_CXXFLAGS = -Wno-non-virtual-dtor -fshort-wchar 87 87 tstVBoxAPILinux_LDFLAGS.solaris += '$(VBOX_GCC_RPATH_OPT)$$(VBOX_ORIGIN)/../../..' 88 ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 89 tstVBoxAPILinux_DEFS += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 90 endif 88 91 tstVBoxAPILinux_INCS = \ 89 92 $(VBOX_XPCOM_INCS) \ -
trunk/src/VBox/Main/testcase/makefile.tstVBoxAPILinux
r8155 r11551 21 21 PATH_BIN = ../../.. 22 22 23 # This setting must be the same as used when building VBoxXPCOM.so. 24 # If you get a lot of unresolved symbols, try commenting it out. 25 VBOX_WITH_XPCOM_NAMESPACE_CLEANUP=1 26 23 27 PATH_XPCOM_IDL = $(PATH_XPCOM)/idl 24 28 INCS_XPCOM = $(PATH_XPCOM)/include \ … … 27 31 $(PATH_XPCOM)/include/xpcom/xpcom \ 28 32 $(PATH_XPCOM)/include/xpcom/ipcd 33 34 ifdef VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 35 DEFS_XPCOM += VBOX_WITH_XPCOM_NAMESPACE_CLEANUP 36 endif 37 29 38 30 39 # … … 38 47 39 48 tstVBoxAPILinux.o: tstVBoxAPILinux.cpp 40 g++ -c -DRT_OS_LINUX -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) -o $@ tstVBoxAPILinux.cpp49 g++ -c -DRT_OS_LINUX -g -fshort-wchar $(addprefix -I, $(INCS_XPCOM)) $(addprefix -D, $(DEFS_XPCOM)) -o $@ tstVBoxAPILinux.cpp 41 50 42 51 clean:
Note:
See TracChangeset
for help on using the changeset viewer.