在arch linux中使用autotools在c中编译各种头文件

发布于 2024-08-17 17:00:30 字数 53 浏览 4 评论 0原文

我想知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谁人与我共长歌 2024-08-24 17:00:30

头文件不用于编译。他们不(或不应该)定义实现。

对于一般 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

泪是无色的血 2024-08-24 17:00:30

通常,您不会编译头文件 (.h),而是编译 .c 文件。

如果您只有一些使用 autotools 的源代码包,并且您想要编译常用命令,则通常的命令是:

./configure && make

如果您还想在系统中安装该包,请执行 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:

./configure && make

If you also want to install the package an your system, follow that up by make install.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文