"Hello - Debug" uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
当我尝试运行HelloWorld
如下简单程序时收到上述消息。
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
关于为什么会发生这种情况以及如何解决它的任何想法都会很有用仅供参考:我目前正在使用 GNU GCC 编译器,我也尝试过更改它,但没有用。