Error on execution -version `Qt_5' not found required by

前端 未结 4 669
太阳男子
太阳男子 2020-11-30 09:56

On execution of eiskaltdc++ on ubuntu 15.10 ,I get the following error:

eiskaltdcpp-qt: /usr/lib/x86_64-linux-gnu/libQt5Multimedia.so.5: version `Qt_5\' not          


        
4条回答
  •  旧巷少年郎
    2020-11-30 10:26

    Issue happens because you have Qt installed in /usr/lib/x86_64-linux-gnu from distro which ld will use by default. To avoid such issues you can compile with -rpath or run with LD_LIBRARY_PATH=/path/to/your/Qt/libs/location to help linker find needed Qt version.

提交回复
热议问题