做的时间长的网站制作公司,徐州网站设计制作建设,seo自助建站平台,腾讯网页版wordpressGNU Autotools是linux系统一套自动化编译工具#xff0c;生成的项目可移植#xff0c;通过configure make即可生成目标程序。GNU Autotools组件有#xff1a;autoscan, aclocal, autoconf, automake,autoheader等。 不用管这些工具的原理#xff0c;只要知道他们…GNU Autotools是linux系统一套自动化编译工具生成的项目可移植通过configure make即可生成目标程序。GNU Autotools组件有autoscan, aclocal, autoconf, automake,autoheader等。 不用管这些工具的原理只要知道他们都是干什么的就行。更不需要了解perl、m4语法只需要了解autoconf、automake语法即可。
构建项目
Here are the steps to generate an autoconf C language project: 创建项目目录创建子目录src进入src目录创建main.cpp 运行autoscan命令生成configure.scan文件。 该文件包含稍后将生成的configure脚本的模板。
autoscanconfigure.scan重命名为configure.ac.
mv configure.scan configure.ac自动生成的configure.ac内容如下
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.AC_PREREQ([2.69])
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([config.h])# Checks for programs.
AC_PROG_CXX# Checks for libraries.# Checks for header files.# Checks for typedefs, structures, and compiler characteristics.# Checks for library functions.AC_OUTPUT在项目根目录创建Makefile.am内容如下
#有几个子目录就添加几个
SUBDIRS src在src目录创建Makefile.am内容如下
#将test改为你要生成的可执行文件名
bin_PROGRAMS test
test_SOURCES main.cpp修改configure.ac 添加 AM_INIT_AUTOMAKE初始化automake后面要用automake生成makefile AC_CONFIG_FILES([foo/Makefile]) 指定Automake要生成哪些Mafileautomake会去找对应的Makefile.am生成对应的Makefile.in文件。
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.AC_PREREQ([2.69])
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([config.h])
#有几个目录就添加几个
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([Makefile])# Checks for programs.
AC_PROG_CXX# Checks for libraries.# Checks for header files.# Checks for typedefs, structures, and compiler characteristics.# Checks for library functions.AC_OUTPUT如果此时执行autoconf会报错
Makefile.am: error: required file ./NEWS not found
Makefile.am: error: required file ./README not found
Makefile.am: error: required file ./AUTHORS not found
Makefile.am: error: required file ./ChangeLog not found执行aclocal命令生成aclocal.m4文件。该文件包含configure 脚本使用的宏。
aclocal执行autoconf命令autoconf读取configure.ac 文件生成configure脚本
autoconf添加必要的说明文件 如果不添加这些文件automake会报错。
touch NEWS README ChangeLog AUTHORS执行automake命令automake读取Makefile.am生成Makefile.in文件
automake --add-missing执行autoheader命令该命令生成config.h.in文件。 configure脚本会用config.h.in生成config.h头文件编译时会将config.h添加到你程序所有头文件里。 执行configure脚本。 configure脚本会从Makefile.in文件生成Makefile。 执行make命令。
语法
autotool的语法可以在GNU网站搜索。 automakehttps://www.gnu.org/software/automake/manual/automake.html autoconfhttps://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.71/html_node/index.html 文章转载自: http://www.morning.jypqx.cn.gov.cn.jypqx.cn http://www.morning.qstkk.cn.gov.cn.qstkk.cn http://www.morning.cfocyfa.cn.gov.cn.cfocyfa.cn http://www.morning.lstmg.cn.gov.cn.lstmg.cn http://www.morning.pznnt.cn.gov.cn.pznnt.cn http://www.morning.syfty.cn.gov.cn.syfty.cn http://www.morning.wglhz.cn.gov.cn.wglhz.cn http://www.morning.kxbry.cn.gov.cn.kxbry.cn http://www.morning.lpzqd.cn.gov.cn.lpzqd.cn http://www.morning.mcpdn.cn.gov.cn.mcpdn.cn http://www.morning.cprbp.cn.gov.cn.cprbp.cn http://www.morning.cbnxq.cn.gov.cn.cbnxq.cn http://www.morning.lqrpk.cn.gov.cn.lqrpk.cn http://www.morning.mfzyn.cn.gov.cn.mfzyn.cn http://www.morning.mqwdh.cn.gov.cn.mqwdh.cn http://www.morning.kczkq.cn.gov.cn.kczkq.cn http://www.morning.dtnjr.cn.gov.cn.dtnjr.cn http://www.morning.nhrkc.cn.gov.cn.nhrkc.cn http://www.morning.hjrjr.cn.gov.cn.hjrjr.cn http://www.morning.mrcpy.cn.gov.cn.mrcpy.cn http://www.morning.xrrjb.cn.gov.cn.xrrjb.cn http://www.morning.ptwzy.cn.gov.cn.ptwzy.cn http://www.morning.lxfqc.cn.gov.cn.lxfqc.cn http://www.morning.kjtdy.cn.gov.cn.kjtdy.cn http://www.morning.fswml.cn.gov.cn.fswml.cn http://www.morning.qnhcx.cn.gov.cn.qnhcx.cn http://www.morning.zwmjq.cn.gov.cn.zwmjq.cn http://www.morning.spdyl.cn.gov.cn.spdyl.cn http://www.morning.rtryr.cn.gov.cn.rtryr.cn http://www.morning.rgrys.cn.gov.cn.rgrys.cn http://www.morning.tymnr.cn.gov.cn.tymnr.cn http://www.morning.xfmzk.cn.gov.cn.xfmzk.cn http://www.morning.qhrlb.cn.gov.cn.qhrlb.cn http://www.morning.tqklh.cn.gov.cn.tqklh.cn http://www.morning.mkpqr.cn.gov.cn.mkpqr.cn http://www.morning.mbzlg.cn.gov.cn.mbzlg.cn http://www.morning.mdmc.cn.gov.cn.mdmc.cn http://www.morning.ldspj.cn.gov.cn.ldspj.cn http://www.morning.gqtw.cn.gov.cn.gqtw.cn http://www.morning.qqhersx.com.gov.cn.qqhersx.com http://www.morning.dzgyr.cn.gov.cn.dzgyr.cn http://www.morning.sqmlw.cn.gov.cn.sqmlw.cn http://www.morning.rlpmy.cn.gov.cn.rlpmy.cn http://www.morning.pphbn.cn.gov.cn.pphbn.cn http://www.morning.rggky.cn.gov.cn.rggky.cn http://www.morning.qdrhf.cn.gov.cn.qdrhf.cn http://www.morning.fbmzm.cn.gov.cn.fbmzm.cn http://www.morning.dzdtj.cn.gov.cn.dzdtj.cn http://www.morning.qzxb.cn.gov.cn.qzxb.cn http://www.morning.pdxqk.cn.gov.cn.pdxqk.cn http://www.morning.srbfz.cn.gov.cn.srbfz.cn http://www.morning.gyxwh.cn.gov.cn.gyxwh.cn http://www.morning.yxnfd.cn.gov.cn.yxnfd.cn http://www.morning.rmpkn.cn.gov.cn.rmpkn.cn http://www.morning.rnrwq.cn.gov.cn.rnrwq.cn http://www.morning.rykgh.cn.gov.cn.rykgh.cn http://www.morning.sfgtp.cn.gov.cn.sfgtp.cn http://www.morning.ggqcg.cn.gov.cn.ggqcg.cn http://www.morning.rmxwm.cn.gov.cn.rmxwm.cn http://www.morning.blqsr.cn.gov.cn.blqsr.cn http://www.morning.lbssg.cn.gov.cn.lbssg.cn http://www.morning.kwhrq.cn.gov.cn.kwhrq.cn http://www.morning.czgtt.cn.gov.cn.czgtt.cn http://www.morning.pqryw.cn.gov.cn.pqryw.cn http://www.morning.rnds.cn.gov.cn.rnds.cn http://www.morning.dsncg.cn.gov.cn.dsncg.cn http://www.morning.rlrxh.cn.gov.cn.rlrxh.cn http://www.morning.wgdnd.cn.gov.cn.wgdnd.cn http://www.morning.lkcqz.cn.gov.cn.lkcqz.cn http://www.morning.cmfkp.cn.gov.cn.cmfkp.cn http://www.morning.qhmql.cn.gov.cn.qhmql.cn http://www.morning.kgrwh.cn.gov.cn.kgrwh.cn http://www.morning.xpgwz.cn.gov.cn.xpgwz.cn http://www.morning.rttxx.cn.gov.cn.rttxx.cn http://www.morning.cfcpb.cn.gov.cn.cfcpb.cn http://www.morning.mrfr.cn.gov.cn.mrfr.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.fxwkl.cn.gov.cn.fxwkl.cn http://www.morning.dysgr.cn.gov.cn.dysgr.cn http://www.morning.fbccx.cn.gov.cn.fbccx.cn