1

我一直在尝试在我的 mac (10.7.5) 上运行代码块并且碰壁了。我与有类似问题的人一起研究了许多其他线程,但仍然无法弄清楚。我敢肯定,我缺少一些简单的东西。

  1. 从 codeblocks.org 下载了 mac 版的 codeblocks
  2. 我已经从应用商店安装了 Xcode
  3. 从苹果开发者网站安装了额外的开发者工具

当我运行一个简单的程序时:

#include <stdio.h>

int main(){
    printf("hello dudes");
    return 0;
}

输出只是说你好,世界,我知道这行得通,我将程序粘贴到 codepad.org 并且输出正常。代码块中的颜色突出显示似乎也不起作用。只有黑色文本,变量和函数没有颜色。

我不确定我错过了什么,我还尝试将默认编译器设置为:

  1. GNU CC
  2. LLVM 铿锵
4

1 回答 1

0

This is how you can debug the issue. You can add -v flags to both the compilation and the linking in code blocks. This can be done in three places in code blocks, settings->compiler, project settings or build settings.

I ran into a similar issue with compiler problems and solved it through -v debugging. Heres a link to the issue, C++11 compilation issues in codeblocks, and the solution. Hopefully that will help walk you through a solution.

于 2014-12-18T20:12:40.280 回答