在arch linux中使用autotools在c中编译各种头文件
我想知道如何在 arch linux 中使用 autotools 通过一个命令编译多个头文件
i would like to know how can i compile a number of header files by just one command using autotools in arch linux
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
头文件不用于编译。他们不(或不应该)定义实现。
对于一般 automake 帮助,我建议使用 Automake 手册
Header files are not for compilation. They do not (or should not) define an implementation.
For general automake help, I would suggest the Automake manual
通常,您不会编译头文件 (
.h
),而是编译.c
文件。如果您只有一些使用 autotools 的源代码包,并且您想要编译常用命令,则通常的命令是:
如果您还想在系统中安装该包,请执行
make install
。Generally you don't compile header files (
.h
), but instead the.c
files.If you just have some source code package that uses autotools and that you want to compile the usual command would be:
If you also want to install the package an your system, follow that up by
make install
.