I built application with gcc on linux host (x86_64) and it linked to exact version number of a shared libs. I specify linker option -lQt5Core
, but application links to libQt5Core.so.5.3.1.
How to build application which would be linked with common version of a shared library like libQt5Core.so.5?
So I would like link my application to libQt5Core.so.5, not to libQt5Core.so.5.3.1. How to do it?
Thanks.