应该是qt的头文件或者库有两个
Cannot mix incompatible Qt library (version ) with this library (version )

解决方案

.bashrc 里面新增 类似下面的东西

QtVersion=5.12.8

QtRoot="/scratch/Qt/${QtVersion}/gcc_64"

export PATH=${QtRoot}/bin:${PATH}
export LD_LIBRARY_PATH=${QtRoot}/lib:${LD_LIBRARY_PATH}

参考链接

https://stackoverflow.com/questions/40372537/cannot-mix-incompatible-qt-library-version-0x50501-with-this-library-version

相关文章:

  • 2021-06-26
  • 2022-03-10
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2021-09-21
  • 2022-02-04
  • 2021-07-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2021-11-04
相关资源
相似解决方案