\"\" \"\" \"\"
Go backward to RT++ Type Declarations
Go up to Program Control
Go forward to Preprocessor Constants
RISC-Linz logo

Compilation and Execution

An RT++ program may be compiled with the GNU C++ compiler(4) 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).
Author: Wolfgang Schreiner
Last Modification: April 12, 1997