QT BUG:make: Nothing to be done for `first'.

QT貌似卡死,终端没有输出,有时候显示如下图
QT BUG:make: Nothing to be done for `first'._第1张图片

application 卡住,没反应。

从终端启动QT,看到输出为:

x-terminal-emulator: error: Additional unexpected arguments found: [‘run’, ‘/tmp/QtCreator.o19270/stub-socket’, ‘Press to close this window…’,

原因:
1 勾选了
在这里插入图片描述
但是没有这个,还调试不了,所以需要一直有run in terminal

2
发现QT默认终端设置:工具–选项–环境 为“x-terminal-emulator -e",需要修改为"/usr/bin/xterm -e"
QT BUG:make: Nothing to be done for `first'._第2张图片

QT BUG:make: Nothing to be done for `first'._第3张图片
这个问题遇到了第二次了,要是再不写下来,下次遇到了还是不知道是什么鬼!

改完这个,调试的时候出现:

&"warning: GDB: Failed to set controlling terminal: Invalid argument\n"

解决办法:
1.修改系统配置文件:用gedit 使用 管理员权限打开

sudo gedit /etc/sysctl.d/10-ptrace.conf

2.找到下面这一行:

kernel.yama.ptrace_scope = 1

3.修改为0:

kernel.yama.ptrace_scope = 0

4.然后重启电脑:

reboot

你可能感兴趣的:(BUG,qt)