摘要:
在linux环境下进行c语言编程,基础的工具就是gcc和make。关于这2个工具的内容有很多,现在要做的仅仅是起步。gcc的用法:-S Compile only; do not assemble or link-c Compile and assemble, but do not link-o Place the output into -shared Create a shared librarymake的用法:建立makefile,makefile的语法如下:target:prereq1 prereq2 commands实例:环境:Ubuntu 13.04 (GNU/Linux 3.... 阅读全文