我已将Xcode 从 v3 更新到 v4.2.1,它工作正常,但作为 C 新手,我想在 Text Wrangler 中编写代码并在 CLI 中使用 gcc 进行编译。
gcc 现在由于某种原因返回“找不到命令”(之前它工作得很好)
经过一番谷歌搜索后,我发现gcc 已从 /usr/bin 移至 /Developer/usr/bin(我可以在那里看到)。现在 gcc 在我使用确切路径时运行,但找不到任何头文件。
my-MacBook-Pro:Desktop user$ /Developer/usr/bin/gcc -o program program.c
program.c:15:19: error: stdio.h: No such file or directory
program.c:16:18: error: math.h: No such file or directory
program.c:17:20: error: stdlib.h: No such file or directory
program.c: In function ‘main’:
program.c:33: warning: incompatible implicit declaration of built-in function ‘malloc’
program.c:35: warning: incompatible implicit declaration of built-in function ‘sqrt’
program.c:44: warning: incompatible implicit declaration of built-in function ‘printf’
program.c:65: warning: incompatible implicit declaration of built-in function ‘printf’
任何帮助是极大的赞赏。