Hi,
 
I want to install the Boost libraries and use them in C++ programs that I compile with a uclinux-compiler. The compiler source code is located in a directory that we can call DIR. When I install the Boost libraries I try
 
bjam "sTOOLS=gcc" "--prefix=DIR" install
 
The problem is that when I try to compile my testcode with the uclinux-compiler, I get errors like:
..../libboost_thread.so: undefined reference to 'strerror@GLIBC_2.0'
..../libboost_thread.so: undefined reference to 'pthread_once@GLIBC_2.0'
 
...etc.
 
What do I have to do to make it possible to compile a program with boost threads with my uclinux-compiler? The program works when I compile with the normal g++ compiler.
 
Thanks a lot in advance.
 
/ Monica Gretzer