我已经从 Ubuntu 18.04 升级到 20.04,除了一些讨厌的grub
问题之外,大多数东西都是开箱即用的。但是我的 QtCreator ( Qt Creator 4.11.0, Based on Qt 5.12.8 (GCC 9.3.0, 64 bit)
) 在识别包含的库时遇到了问题。它在更新前运行良好的项目中显示了数千条错误消息。错误消息看起来都像链接器错误消息。一些例子:
error: 'std::string' (aka 'int') is not a class, namespace, or enumeration
error: no matching function for call to 'getline'
error: member reference base type 'std::ifstream' (aka 'int') is not a structure or union
error: no template named 'vector' in namespace 'std'
error: unknown type name 'SystemCallFactory' //this class is from the same project
甚至 qt 和 std 库中的一些错误:
/usr/include/x86_64-linux-gnu/qt5/QtCore/qstring.h:1374: passing argument to parameter 's' here
/usr/include/c++/8/ostream:41: candidate found by name lookup is 'std'
- 问题出现在 cmake 和 qmake 项目中
- 我确实(并且需要)安装了不同的 gcc 和 g++ 版本(9 和 8)(在更新后重新安装,因为 update-alternatives 设置被破坏并且一个依赖项从 6 升级到 8)
当我在 QtCreator 中创建一个新项目而不更改默认代码的任何内容时,它是相同的:
/home/$me/src/untitled/main.cpp:7: error: variable has incomplete type 'QApplication'`
/home/$me/src/untitled/main.cpp:8: error: unknown type name 'MainWindow'
安装的编译器:
update-alternatives --display gcc
gcc - 自动模式链接最佳版本是 /usr/bin/gcc-8 链接当前指向 /usr/bin/gcc-8 链接 gcc 是 /usr/bin/gcc /usr/bin/gcc -8 - 优先级 30 /usr/bin/gcc-9 - 优先级 20update-alternatives --display g++ g++ - 自动模式链接最佳版本是 /usr/bin/g++-8 链接当前指向 /usr/bin/g++-8 链接 g++ 是 /usr/bin/g++ /usr/bin/g++ -8 - 优先级 30 /usr/bin/g++-9 - 优先级 20
我仍然可以手动构建所有项目,cmake 和 qmake 都在这里工作。此外,当我在 QtCreator 中设置的构建目录中完成构建时,即使我更改了某些内容,QtCreator 也会构建我的项目。它仍然会在我的代码和该issues
部分中显示错误,但无论如何都会构建和运行,所以构建命令应该没问题。但是当构建目录为空时,它会失败。
我该如何进一步解决这个问题?
同样的问题,与@nou 相同的解决方案。QtCreator 4.11 仍然依赖 clang-8,但在 Ubuntu 20.04 上 apt 将安装 clang-10。以下为我解决了这个问题:
安装铿锵8
更新替代品
我不需要重新安装 QtCreator。
我不是 100% 确定这是同一个问题,但我通过安装 clang-8 包解决了这个问题。我认为问题在于 qtcreator 代码模型插件使用 libclang1-8 但默认安装了 clang-10。
似乎 Qt Creator 4.15.1 再次与其默认配置的套件发生冲突。
所以我做了一个自定义:
使用此套件 cmake 和 Qmake 正在工作,并且还修复了缺少的 stl 和 std 路径。