我正在macOS版本10.14.6上运行Code :: Blocks版本Code :: 13.12 我使用的编译器是GNU GCC编译器
当我尝试通过单击Build> Build&Run或仅按F9来构建和运行任何代码时,我收到消息“看来该项目尚未构建。您现在要构建它吗?”然后,无论我单击“否”,“取消”还是“是”,都会发生相同的事情:什么都没有。
例如/伪代码,如果我运行:
#include <iostream>
using namespace std;
int main()
{
char box = 'z';
cout << box << endl << box << endl;
return 0;
}
出现提示“似乎您的项目尚未建立”的提示。
我运行该代码后的构建日志是这样的:
--------------构建:教程中的调试(编译器:GNU GCC编译器)---------------
g ++-墙壁-fexceptions -g -c / ____________________ /桌面/文件夹/教程/main.cpp -o obj / Debug / main.o xcrun:错误:无效的活动开发人员路径(/ Library / Developer / CommandLineTools),缺少xcrun,位于:/ Library / Developer / CommandLineTools / usr / bin / xcrun 进程以状态1(0分钟,0秒)终止 0个错误,0个警告(0分钟,0秒)
(我从构建日志中删除了我的名字。)祝一切顺利,谢谢您的帮助。