Go backward to RT++ Type Declarations
Go up to Program Control
Go forward to Preprocessor Constants

Compilation and Execution

An RT++ program may be compiled with the GNU C++ compiler(3) like any other C++ program with the single extension that the RT++ library librt++.a and the QuickThreads library libqt.a have to be linked to the program.

A typical compilation and linking sequence therefore is

g++ -Wall -O prog.c -o prog.o
g++ prog.o -lrt++ -lqt -o prog
(provided that all libraries are installed in standard paths). On some systems, you might have to link additional libraries (see the RT++ installation description).
Wolfgang.Schreiner@risc.uni-linz.ac.at
Id: main.tex,v 1.10 1996/04/04 11:45:47 schreine Exp

Prev Up Next