使用autotools工具用configure、make、make install编译安装linux工程的详细步骤

本文主要是介绍使用autotools工具用configure、make、make install编译安装linux工程的详细步骤,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

autotools是个系列工具,主要由autoconf、automake、perl语言环境和m4等组成,所包含的命令有5个:

下图是autotools使用的流程图:



autotools的安装:

  1. apt-get install autoconf  automake  autotools-dev m4  

autotools使用简单实例如下:

  • 准备程序源代码
    1. mkdir demo_conf   
    2. vi hello.cpp   
    内容如下:
    1. #include <iostream>  
    2.   
    3. using namespace std;  
    4. int main(){  
    5.   
    6.     cout << "hello\n";  
    7. }  

  • 使用autoscan命令,扫描工作目录,生成configure.scan 文件
    1. $ autoscan  
    2. $ ls   
    3. autoscan.log  configure.scan  hello.cpp  

  • 将configure.scan文件重命名为configure.ac(或configure.in),并做适当修改。在configure.ac文件中,#号开始的是行注释,其他都是m4宏命令;configure.ac里面的宏的主要作用是侦测系统
    1. $ mv configure.scan configure.ac  
    2. vi configure.ac  
    修改后的内容如下:
    1. #                                               -*- Autoconf -*-  
    2. # Process this file with autoconf to produce a configure script.  
    3.   
    4. AC_PREREQ([2.68])  
    5. AC_INIT(hello, 1.0, zhunian0322@163.com)  
    6. AC_CONFIG_SRCDIR([hello.cpp])  
    7. AC_CONFIG_HEADERS([config.h])  
    8. AM_INIT_AUTOMAKE(hello,1.0)  
    9.   
    10. # Checks for programs.  
    11. AC_PROG_CXX  
    12.   
    13. # Checks for libraries.  
    14.   
    15. # Checks for header files.  
    16.   
    17. # Checks for typedefs, structures, and compiler characteristics.  
    18.   
    19. # Checks for library functions.  
    20. AC_CONFIG_FILES([Makefile])  
    21. AC_OUTPUT  
    configure.ac文件说明:
    1. AC_PREREQ   声明本文要求的autoconf版本.如本例中的版本2.68  
    2. AC_INIT     用来定义软件的名称、版本、作者E-mail等  
    3. AC_CONFIG_SRCDIR    用来侦测所制定的源码文件是否存在,确定源码目录的有效性。此处为当前目录下的hello.cpp  
    4. AC_CONFIG_HEADERS   用于生成config.h文件,以便autoheader命令使用  
    5. AM_INIT_AUTOMAKE    是通过手动添加的,他是automake所必备的宏,用于指定软件名和软件版本号  
    6. AC_PROC_CXX         用来指定编译器。此处是g++  AC_PROC_CC是gcc  
    7. AC_CONFIG_FILES     用于生成相应的Makefile文件  
    8. AC_OUTPUT           用来设定configure 所要产生的文件,如果是Makefile,configure 会把它检查出来的结果带入makefile.in文件产生何时的Makefile。使用automake时,还需要一些其他的参数,这些额外的宏用aclocal工具产生  

  • 使用aclocal命令,扫描configure.ac文件生成aclocal.m4文件,该文件主要处理本地的宏定义,它根据已经安装的宏\用户定义宏和acinclude.m4文件中的宏将configure.ac文件需要的宏集中定义到aclocal.m4中
    1. $ aclocal  
    2. $ ls   
    3. aclocal.m4  autom4te.cache  autoscan.log  configure.ac  hello.cpp  

  • 使用autoconf命令生成configure文件.这个命令将configure.ac文件中的宏展开,生成configure脚本。
    1. $ autoconf   
    2. $ ls   
    3. aclocal.m4  autom4te.cache  autoscan.log  configure  configure.ac  hello.cpp  

  • 使用autoheader命令生成config.h.in文件.该命令通常会中acconfig.h 文件中复制用户附加的符号定义
    1. $ autoheader   
    2. $ ls   
    3. aclocal.m4      autoscan.log  configure     hello.cpp  
    4. autom4te.cache  config.h.in   configure.ac  

  • 手工创建Makefile.am 文件。automake工具会根据configure.in中的参量把Makefile.am转换成Makefile.in文件
    1. $ vi Makefile.am  
    增加一下内容:
    1. AUTUMAKE_OPTIONS = foreign  
    2. bin_PROGRAMS = hello  
    3. hello_SOURCES = hello.cpp  
    Makefile.am文件内容说明
    1. AUTOMAKE_OPTIONS 为设置automake 的选项.由于GNU对自己发布的软件有严格的规范,比如必须附带许可证声明文件COPYING等,否则automake执行时会报错.automake提供了3种软件等级:foreign、gnu、gnits,供用户选择。默认级别是gnu。  
    2. bin_PROGRAMS 定义要产生的执行文件名。如果要产生多个执行文件,每个文件名用空格隔开  
    3. hello_SOURCES  定义“hello”这个可以执行程序所需的原始文件。如果“hello”这个程序是由多个源文件所产生的,则必须把它所用到的所有源文件都列出来,并用空格隔开。如果要定义多个可执行程序,那么需要对每个可执行程序建立对应的file_SOURCES  

  • 使用automake 命令生成Makefile.in 文件.使用选项"--add-missing" 可以让automake自动添加一些必须的脚本文件
    1. $ automake --add-missing  
    2. configure.ac:8: installing `./install-sh'; error while making link: Operation not supported  
    3. configure.ac:8: installing `./missing'; error while making link: Operation not supported  
    4. Makefile.am: installing `./INSTALL'; error while making link: Operation not supported  
    5. <pre name="code" class="plain">Makefile.am: required file `./NEWS' not found  
    6. Makefile.am: required file `./README' not found  
    7. Makefile.am: required file `./AUTHORS' not found  
    8. Makefile.am: required file `./ChangeLog' not found  
    Makefile.am: installing `./COPYING' using GNU General Public License v3 file; error while making link: Operation not supportedMakefile.am: Consider adding the COPYING file to the version control systemMakefile.am: for your code, to avoid questions about which license your project uses.Makefile.am: installing `./depcomp'; error while making link: Operation not supported说明:
    1. configure.ac:8: installing `./install-sh'; error while making link: Operation not supported  
    2. configure.ac:8: installing `./missing'; error while making link: Operation not supported  
    3. Makefile.am: installing `./depcomp'; error while making link: Operation not supported  
    4.   
    5. ##因为把工程放在FAT32分区上,而它不支持link.需要挪到ext3上  
    1. Makefile.am: required file `./NEWS' not found  
    2. Makefile.am: required file `./README' not found  
    3. Makefile.am: required file `./AUTHORS' not found  
    4. Makefile.am: required file `./ChangeLog' not found  
    5.   
    6. ##使用touch 命令创建这4个文件  
    1. $ cp -rvf ../demo_conf/  /home/gino/  
    2. $ cd /home/gino/demo_conf/  
    3. $ touch NEWS  
    4. $ touch README  
    5. $ touch AUTHORS  
    6. $ touch ChangeLog  
    7. $ automake --add-missing  
    8. $ ls   
    9. aclocal.m4      autoscan.log  config.h.in    configure     hello      install-sh   Makefile.in  README  
    10. AUTHORS         ChangeLog     config.log     configure.ac  hello.cpp  Makefile     missing      stamp-h1  
    11. autom4te.cache  config.h      config.status  depcomp       hello.o    Makefile.am  NEWS  

  • 使用configure命令,把Makefile.in 变成Makefile
    1. $ ./configure  
    2. checking for a BSD-compatible install... /usr/bin/install -c  
    3. checking whether build environment is sane... yes  
    4. checking for a thread-safe mkdir -p... /bin/mkdir -p  
    5. checking for gawk... no  
    6. checking for mawk... mawk  
    7. checking whether make sets $(MAKE)... yes  
    8. checking for g++... g++  
    9. checking whether the C++ compiler works... yes  
    10. checking for C++ compiler default output file name... a.out  
    11. checking for suffix of executables...   
    12. checking whether we are cross compiling... no  
    13. checking for suffix of object files... o  
    14. checking whether we are using the GNU C++ compiler... yes  
    15. checking whether g++ accepts -g... yes  
    16. checking for style of include used by make... GNU  
    17. checking dependency style of g++... gcc3  
    18. configure: creating ./config.status  
    19. config.status: creating Makefile  
    20. config.status: creating config.h  
    21. config.status: config.h is unchanged  
    22. config.status: executing depfiles commands  
Makefile的用法
  • make 命令,用来执行编译代码,默认执行"make all"命令.
  • make clean 命令清除编译时的obj文件.
  • make install 命令把目标文件安装到系统中.
  • make uninstall 命令把目标文件从系统中卸载.
  • make dist 命令将程序和相关的文档打包为一个压缩文档,以供发布.
  • make -n   非执行模式,输出所有执行命令,但不执行.
  • make -c   读取Makefile之前改变到指定目录
  • make -h   显示所有make选项

这篇关于使用autotools工具用configure、make、make install编译安装linux工程的详细步骤的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/902353

相关文章

Python常用命令提示符使用方法详解

《Python常用命令提示符使用方法详解》在学习python的过程中,我们需要用到命令提示符(CMD)进行环境的配置,:本文主要介绍Python常用命令提示符使用方法的相关资料,文中通过代码介绍的... 目录一、python环境基础命令【Windows】1、检查Python是否安装2、 查看Python的安

SQL Server数据库死锁处理超详细攻略

《SQLServer数据库死锁处理超详细攻略》SQLServer作为主流数据库管理系统,在高并发场景下可能面临死锁问题,影响系统性能和稳定性,这篇文章主要给大家介绍了关于SQLServer数据库死... 目录一、引言二、查询 Sqlserver 中造成死锁的 SPID三、用内置函数查询执行信息1. sp_w

Python UV安装、升级、卸载详细步骤记录

《PythonUV安装、升级、卸载详细步骤记录》:本文主要介绍PythonUV安装、升级、卸载的详细步骤,uv是Astral推出的下一代Python包与项目管理器,主打单一可执行文件、极致性能... 目录安装检查升级设置自动补全卸载UV 命令总结 官方文档详见:https://docs.astral.sh/

Python并行处理实战之如何使用ProcessPoolExecutor加速计算

《Python并行处理实战之如何使用ProcessPoolExecutor加速计算》Python提供了多种并行处理的方式,其中concurrent.futures模块的ProcessPoolExecu... 目录简介完整代码示例代码解释1. 导入必要的模块2. 定义处理函数3. 主函数4. 生成数字列表5.

Python中help()和dir()函数的使用

《Python中help()和dir()函数的使用》我们经常需要查看某个对象(如模块、类、函数等)的属性和方法,Python提供了两个内置函数help()和dir(),它们可以帮助我们快速了解代... 目录1. 引言2. help() 函数2.1 作用2.2 使用方法2.3 示例(1) 查看内置函数的帮助(

Linux脚本(shell)的使用方式

《Linux脚本(shell)的使用方式》:本文主要介绍Linux脚本(shell)的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录概述语法详解数学运算表达式Shell变量变量分类环境变量Shell内部变量自定义变量:定义、赋值自定义变量:引用、修改、删

Python pip下载包及所有依赖到指定文件夹的步骤说明

《Pythonpip下载包及所有依赖到指定文件夹的步骤说明》为了方便开发和部署,我们常常需要将Python项目所依赖的第三方包导出到本地文件夹中,:本文主要介绍Pythonpip下载包及所有依... 目录步骤说明命令格式示例参数说明离线安装方法注意事项总结要使用pip下载包及其所有依赖到指定文件夹,请按照以

基于Python实现一个Windows Tree命令工具

《基于Python实现一个WindowsTree命令工具》今天想要在Windows平台的CMD命令终端窗口中使用像Linux下的tree命令,打印一下目录结构层级树,然而还真有tree命令,但是发现... 目录引言实现代码使用说明可用选项示例用法功能特点添加到环境变量方法一:创建批处理文件并添加到PATH1

Python包管理工具核心指令uvx举例详细解析

《Python包管理工具核心指令uvx举例详细解析》:本文主要介绍Python包管理工具核心指令uvx的相关资料,uvx是uv工具链中用于临时运行Python命令行工具的高效执行器,依托Rust实... 目录一、uvx 的定位与核心功能二、uvx 的典型应用场景三、uvx 与传统工具对比四、uvx 的技术实

Java使用HttpClient实现图片下载与本地保存功能

《Java使用HttpClient实现图片下载与本地保存功能》在当今数字化时代,网络资源的获取与处理已成为软件开发中的常见需求,其中,图片作为网络上最常见的资源之一,其下载与保存功能在许多应用场景中都... 目录引言一、Apache HttpClient简介二、技术栈与环境准备三、实现图片下载与保存功能1.