$ ./ExeLinux
./ExeLinux: error while loading shared libraries: libGDCpp.so: cannot open shared object file: No such file or
directory
$ export LD_LIBRARY_PATH=$(pwd);./ExeLinux
./ExeLinux: error while loading shared libraries: libjpeg.so.8: cannot open shared object file: No such file or directory
I see there is a libjpeg but the filename is not quite the same as what it's looking for...
So after renaming the libraries and also specifying LD_LIBRARY_PATH before running. It finally worked. Perhaps you can help it look for libraries more easily.
