【发布时间】:2016-09-14 19:59:42
【问题描述】:
我编写了一个简单的控制台应用程序,并尝试对其进行调试。但是当我开始调试时,在应用程序输出中出现此消息:Run in Terminal is not supported with the LLDB backend.。
我在 Mac OS X 10.11 上使用 Qt Creator 4.1.0。
这是我尝试调试的代码示例:
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a;
cin >> a;
cout << "a^2 = " << a * a;
return 0;
}
【问题讨论】: