C语言编译的顺序。关于 .c 文件 .h 文件的用法。Makefile文件简单概念。
C语言编译的顺序。关于 .c 文件 .h 文件的用法。Makefile文件简单概念。
C语言编译链接过程:
http://hi.baidu.com/jcbpxdmajtfguxr/item/dbb6b1ada0572c2c8819d34b
編譯器與連結器的基本概念:
http://www.csie.nctu.edu.tw/~skyang/concept.zhtw.htm
C语言头文件的使用:
http://blog.csdn.net/janders/article/details/611081
=============================================
关于 .c 文件 .h 文件的用法
- main.c
1. #include"head_file.h"
2. #include<stdio.h>
3.
4.
5. int main(void){
6.
7.
8. usr_func();
9. }
- usr_func.c
1. int usr_fun(void){
2. printf("Hello, I'm your usr_function!\n");
3.
4.
5. }
- head_file.h
1. #ifndef USR_FUNC
2. #define USR_FUNC
3.
4.
5. int usr_fun();
6.
7.
8. #endif
把以上3个文件放入project文件夹,build即可,无需在project_properties里面设置include这3个文件中的某些文件。
===================================================
Linux下Makefile文件简单概念
来源: Linux伊甸园 日期: 2008.05.28 16:14
将各个模块的关系写进makefile,并且写明了编译命令,这样,当有模块的源代码进行修改后,就可以通过使用make命令运行makefile文件就可以进行涉及模块修改的所有模块的重新编译,其他模块就不用管了。
makefile文件的写法:
目标, 组件,规则
例如 有下面5个文件:
main.c:
1. #include "mytool1.h"
2. #include "mytool2.h"
3. int main(int argc,char **argv)
4. {
5. mytool1_print("hello");
6. mytool2_print("hello");
7. }
mytoo1.h
1. #ifndef _MYTOOL_1_H
2. #define _MYTOOL_1_H
3. void mytool1_print(char *print_str);
4. #endif
mytool1.c
1. #include "mytool1.h"
2. void mytool1_print(char *print_str)
3. {
4. printf("This is mytool1 print %s\n",print_str);
5. }
mytool2.h:
1. #ifndef _MYTOOL_2_H
2. #define _MYTOOL_2_H
3. void mytool2_print(char *print_str);
4. #endif
mytool2.c:
1. #include "mytool2.h"
2. void mytool2_print(char *print_str)
3. {
4. printf("This is mytool2 print %s\n",print_str);
5. }
可以这样进行编译以便运行main这个可执行文件
gcc -c main.c (生成main.o)
gcc -c mytool1.c (生成mytool1.o)
gcc -c mytool2.c (生成mytool2.o)
gcc -o main main.o mytool1.o mytool2.o (生成main)
也可以这样写makefile文件:
gcc -c main.c (生成main.o)
gcc -c mytool1.c (生成mytool1.o)
gcc -c mytool2.c (生成mytool2.o)
gcc -o main main.o mytool1.o mytool2.o (生成main)
通过make命令可以运行该文件,也就是进行编译了。
linux上有很多库,c语言编写的各种库的总称为libc,glibc为libc的一个子集,由gnu提供,内核提供的系统函数和系统调用是不包括在libc中。
linux系统默认会安装glibc
glibc中常用库gcc会自动去查找,不予理会。
在/lib, /usr/lib, /usr/local/lib 在这三个路径下面有一些标准库,只需-l+库名 可以不必要指定路径。其他库必须在用gcc时用-L+具体的路径。