QT 之 编译错误(三)

时间:2022-08-11 02:00:05

(1)编译错误:Could not determine which "make" command to run. Check the "make" step in the build configuration.



QT 之 编译错误(三)


这是因为在:工具-》选项-》构建和运行中 “构建套件”中C++编译器没有选择, 在C++那一栏中选上GCC就可以。然后应用,确定。

如果没有就需要安装GCC编译器,这可能和刚刚安装的ubuntu系统中没有GCC编译器有关,安装指令:

sudo apt install cmake g++


(2)cannot find -IGL


QT 之 编译错误(三)


安装 libgl1-mesa-dev 库,指令


sudo apt install libgl1-mesa-dev


国外大神大神们的视频讲解:https://www.youtube.com/watch?v=unkGHMgffmI


如果上面命令运行后安装不成功提示依赖有问题的话就需要改一下:源

方法:http://blog.csdn.net/u012302488/article/details/50013849