07 2017 档案

摘要:点击阅读原文 I spent a little bit of time playing with Git today, specifically the way that the ^ (caret) and ~ (tilde) work and thought I'd document it her 阅读全文
posted @ 2017-07-31 10:42 icuic 阅读(302) 评论(0) 推荐(0)
摘要:点击阅读原文 这篇文章介绍在LINUX下进行C语言编程所需要的基础知识。在这篇文章当中,我们将会学到以下内容: 1. 源程序编译 2. Makefile的编写 3. 程序库的链接 4. 程序的调试 5. 头文件和系统求助 6. 源程序的编译 在Linux下面,如果要编译一个C语言源... 阅读全文
posted @ 2017-07-28 14:02 icuic 阅读(577) 评论(0) 推荐(0)
摘要:1. 格式 Makefile 中函数的调用格式如下: $(function arguments) 其中,function 为函数名,arguments 为参数。 函数名与参数之间由空格或Tab分隔,如果有多个参数,这些参数之间由逗号分隔。 2. 常用函数介绍 内核的 Makefile 中用到大量的函数,以下介绍一些常用的函数。 2.1 字符串替换和分析函数 $(subst from,to... 阅读全文
posted @ 2017-07-10 18:48 icuic 阅读(2285) 评论(0) 推荐(0)