Adam Piątyszek - 2007-03-28

Logged In: YES
user_id=1004597
Originator: NO

This is not a bug... and completely unrelated to the IT++ library.

To perform compilation and linking at one stage, the compiler flags and sources needs to be passed before libraries, e.g.:
a) CORRECT:
g++ -O2 -g -I/usr/local/include -o abc abc.cpp -L/usr/local/lib -lmylib
b) WRONG:
g++ -O2 -g -I/usr/local/include -L/usr/local/lib -lmylib -o abc abc.cpp

In future, please do not report unconfirmed bugs here. Instead, please ask on the Help forum before!

/ediap