使用TextMate编译C代码

时间:2011-12-28 01:42:22

标签: c makefile textmate

假设您的C项目中有3个文件

 - a.c
 - a.h // Header for a.c
 - b.c

Apple-R无法正确链接文件,出现ld错误。 (ld: symbol(s) not found for architecture x86_64)

enter image description here

在命令行上手动运行gcc工作正常gcc -o executable a.c b.c

可以重新定义Apple-R需要创建makefile的内容吗?可以将Apple-R链接到make file?

1 个答案:

答案 0 :(得分:1)

如果启用了Make包,则应该能够Command-B使用当前的Makefile构建项目。在任何情况下,您应该使用Makefile而不是依赖TextMate的“运行”命令,该命令不了解依赖关系等等。