齐昱博 + 原创作品转载请注明出处 + 《Linux内核分析》MOOC课程http://mooc.study.163.com/course/USTC-1000029000
1、课上总结:
(1)、编译链接的过程和ELF可执行文件格式
从一个源代码文件到一个可执行程序文件大概要经历如下过程:
以hello.c为例:
//hello.c
#include <stdio.h>
int main()
{
printf("hello world!");
return 0;
}