Hi,

A project of mine is splitted in two components : an executable and a shared lib. It compiles and run fine under window$ (mingw3.4.2, win ME) but when I tried to compile it under my linux distro (Kanotix 2005-4, GCC 4.0.1) the .so occured to cause troubles...

Firts of all I believed that any shared lib neede an import lib (.a in my case) but none was created... Thus I had to change my project file but it finally compiled fine. Second step : running the app. My executable is in the same directory as my .so, the makefile created 3 symlinks to it to make sure it can't get lost...
And the executable doesn't find the library!!!
Quote Originally Posted by it
error while loading shared libraries: libdevqt.so.1: cannot open shared object file: No such file or directory
I tried changing the name of the real shared library to avoid troubles with symlinks but it didn't change anyhting!
Help me!!!