Building and Installing TAO
TAO has been ported and tested Windows NT, Solaris, VxWorks, and
Linux. I expect that major portions of the release will port easily
to other platforms that ACE has been ported to. If you can help port
TAO to other platforms I'd appreciate it.
TAO can be obtained electronically via
the WWW and ftp. Besides getting the TAO alpha
release you will need ACE.
You will likely need the most recent beta version of ACE because TAO
tends to track changes to ACE rather closely.
A quick build note for users who have used ACE with other ORBs:
linking TAO with a version of ACE that must also be linked against
another ORB vendor's library, e.g., liborbix.so, will produce
undefined and most likely unpredictable and erroneous results.
On UNIX platforms
- Set
ACE_ROOT
environment variable as outlined
in the ACE installation
notes.
- Build and install ACE under $ACE_ROOT.
- Change directory to
$ACE_ROOT/ace
and execute
make
.
- Set
TAO_ROOT
environment variable to
$ACE_ROOT/TAO.
- Build and install the TAO release under $TAO_ROOT.
- Change directory to
$TAO_ROOT/tao
and
execute make
.
- Change directory to
$TAO_ROOT/tests
and
execute make
.
- Follow instructions on executing the various examples under
$TAO_ROOT/tests
.
On Windows NT
Visual C++ 5.0
It works best if TAO is placed in ACE_wrappers so TAO ends up in
ACE_wrappers\TAO because the Visual C++ 5.0 Project files are set up to work
in this configuration. If you move it, then make sure you change the project
file to look for the include and library files in the correct place.
- Make sure ACE is built (For Visual C++ 5.0, use ace.dsw or ace-vc50.dsw,
whichever is in your copy of ACE).
- Load the workspace tao\TAO.dsw and build the TAO library.
- To build the Cubit test, load the workspace tests\Cubit\TAO\test.dsw
and build both client and server.
Visual C++ 4.x
- In Tools|Options, go to the Directories page and make sure that include
files paths includes ACE_wrappers\ and the root directory of TAO (which
can be ACE_wrappers\TAO if installed there). The library files paths
should include ACE_wrappers\ace.
- Load the project file tao\TAO.mdp and build the TAO library.
- To build the Cubit test, load the project file tests\Cubit\TAO\test.mdp
and build both client and server.
Back to the TAO home page.