Helmut Jarausch <jarausch@xxxxxxxxxxxxxxxxxxx> writes: > (I believe) I have clean C++ code but g++-4.1.1 > emits the following warning during generation of > a dynamic library (on Linux) > warning: creating a DT_TEXTREL in object This means that you are including an object in the shared library which was compiled without the -fpic option. Ian