Embedded Linux
黑石猴子
这个作者很懒,什么都没留下…
展开
-
something about Compile and Link on Embedded Linux
1 , Compile 流程 2,The `##' preprocessing operator performs token pasting #define myprintf(format, ...) printf (format, ##__VA_ARGS__) #define myprintf(args...) myprintf (args) 3原创 2013-11-06 16:51:06 · 942 阅读 · 0 评论 -
Makefile 自动化变量使用
写Makefile 时候,可以使用一些自动化变量代表目标或依赖文件; 1, $@ 表示规则中的目标文件集;匹配目标文件集合; 2,$% 当目标是函数库文件时,表示规则中的目标成员名,例如,如果一个目标是“foo.a(bar.o)”, 那么"$%"就是"bar.o","$@"就是"foo.a"; 如果目标不是函数库文件(Unix 下是[.a],Windows下是[原创 2013-11-08 16:28:11 · 677 阅读 · 0 评论