I am trying to run an executable on Linux Mint 16 x64 that was compiled for Ubuntu 12 x64. The executable uses Qt 5.1.1 dynamically during runtime. I get the error:
loaded the dummy plugin
loaded the Linux plugin
updating server status
./executableName: symbol lookup error: ./executableName: undefined symbol: _ZN18QXmlDefaultHandlerC2Ev
When I run
ldd executableName | grep "not found"
searching for missing dependencies I get no result; all dynamic dependencies seem to be found, but the undefined symbol error above persists.
Thoughts?