|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
无论图形界面发展到什么水平这个原理是不会变的,Linux命令有许多强大的功能:从简单的磁盘操作、文件存取、到进行复杂的多媒体图象和流媒体文件的制作。
将各个模块的干系写进makefile,而且写了然编译命令,如许,当有模块的源代码举行修正后,就能够经由过程利用make命令运转makefile文件就能够举行触及模块修正的一切模块的从头编译,其他模块就不必管了。
makefile文件的写法:
方针,组件
划定规矩
比方有上面5个文件:
/*main.c*/
#include"mytool1.h"
#include"mytool2.h"
intmain(intargc,char**argv)
{
mytool1_print("hello");
mytool2_print("hello");
}
/*mytool1.h*/
#ifndef_MYTOOL_1_H
#define_MYTOOL_1_H
voidmytool1_print(char*print_str);
#endif
/*mytool1.c*/
#include"mytool1.h"
voidmytool1_print(char*print_str)
{
printf("Thisismytool1print%s
",print_str);
}
/*mytool2.h*/
#ifndef_MYTOOL_2_H
#define_MYTOOL_2_H
voidmytool2_print(char*print_str);
#endif
/*mytool2.c*/
#include"mytool2.h"
voidmytool2_print(char*print_str)
{
printf("Thisismytool2print%s
",print_str);
}
能够如许举行编译以便运转main这个可实行文件
gcc-cmain.c(天生main.o)
gcc-cmytool1.c(天生mytool1.0)
gcc-cmytool2.c(天生mytool2.0)
gcc-omainmain.omytool1.omytool2.o(天生main)
也能够如许写makefile文件
mainmain.omytool.omytool2.o
gcc-0$@$^
main.0main.cmytool1.hmytool2.h
gcc-c{GetProperty(Content)}lt;
mytool1.0mytool1.cmytool1.h
gcc-c{GetProperty(Content)}lt;(大概是mytool.c)
mytool2.0mytool2.cmytool2.h
gcc-c{GetProperty(Content)}lt;(大概是mytool2.c)
经由过程make命令能够运转该文件,也就是举行编译了。
linux上有良多库,c言语编写的各类库的总称为libc,glibc为libc的一个子集,由gnu供应,内核供应的体系函数和体系挪用是不包含在libc中。
linux体系默许会安装glibc
glibc中
经常使用库gcc会主动往查找,不予剖析。
在/lib,/usr/lib,/usr/local/lib在这三个路径上面有一些尺度库,只需-l+库名能够不用要指定路径。其他库必需在用gcc时用-L+详细的路径
</p>
如果你只是想应付一下操作系统的课程,劝你最好别学,或者说不要指望能用的怎么样。 |
|