Standalone XPCOM v 0.5

Version 0.5
15 May 2000
Suresh Duddi <dp@netscape.com>

1.0  Overview

Standalone XPCOM is a tree configuration, that when built, provides a minimal set of libraries (shared mostly) that can be used to get all features of XPCOM. The contents of this standalone XPCOM in general are: NOTE 1: xpcom apis are not frozen yet. By XPCOM 1.0 release they will be.
NOTE 2: xpcom standalone differs from the xpcom built with mozilla. Hence cannot be used with the mozilla browser.

2.0  Building Standalone XPCOM

Here are the instructions for building the Standalone XPCOM on Unix or Windows:
 
    Step 1 : Pull the sources
  1. cvs -z 3 co mozilla/client.mk
  2. cd mozilla
  3. gmake -f client.mk pull_all BUILD_MODULES=xpcom
    Step 2 : Build XPCOM Standalone
  1. configure --enable-standalone-modules=xpcom
  2. gmake

3.0  Testing Standalone XPCOM

xpcom/sample contains a sample application and a component. This should get built by default. To run the test,
  1. cd to your bin/ directory
  2. setenv LD_LIBRARY_PATH .
  3. ./nsTestSample

  4. Warning: MOZILLA_FIVE_HOME not set.
    nsNativeComponentLoader: autoregistering begins.
    nsNativeComponentLoader: autoregistering succeeded
    Inital print: initial value
    Set value to: XPCOM defies gravity
    Final print : XPCOM defies gravity
    Test passed.

4.0  Test FAILED: What went wrong ?

The most common case of why the sample would have failed if you didn't run it from the bin directory. Here are some error messsages and possible ways of fixing them.
  1. ./nsTestSample: error in loading shared libraries: libxpcom.so: cannot open shared object file: No such file or directory
    1. LD_LIBRARY_PATH not set. To fix "setenv LD_LIBRARY_PATH ."
  2. Link errors when building xpcom standalone
    1. This is mostly due to the fact that probably xpcom is not being built standalone. Make sure you did "configure --enable-standalone-modules=xpcom"

5.0  Whats the difference between Standalone and non-Standalone XPCOM

There is no binary difference between standalone XPCOM and the XPCOM that ships with the Mozilla browser. The one functional difference is that XPT files cannot be read from .zip files in standalone XPCOM.

6.0  TODO for v 1.0

  1. Optional exclusion of specific features into standalone XPCOM like registry, xpconnect. Tweeking these options will cause reduction in memory requirements and size.
  2. Get xpcom/tests directory upto date and documented.
  3. Update this document for Mac.
  4. API freeze and documentation

7.0  Future (post v 1.0)

mmh! let me think...



Suresh Duddi <dp@netscape.com>