Linux下使用automake、autoconf生成configure檔案
一、生成configure過程中各檔案之間的關係圖
二、詳細介紹
autoscan: 掃描原始碼以搜尋普通的可移植性問題,比如檢查編譯器,庫,標頭檔案等,生成檔案configure.scan,它是configure.ac的一個雛形。
aclocal:根據已經安裝的巨集,使用者定義巨集和acinclude.m4檔案中的巨集將configure.ac檔案所需要的巨集集中定義到檔案 aclocal.m4中。aclocal是一個perl 指令碼程式,它的定義是:“aclocal - create aclocal.m4 by scanning configure.ac”
automake:將Makefile.am中定義的結構建立Makefile.in,然後configure指令碼將生成的Makefile.in檔案轉換 為Makefile。如果在configure.ac中定義了一些特殊的巨集,比如AC_PROG_LIBTOOL,它會呼叫libtoolize,否則它 會自己產生config.guess和config.sub
autoconf:將configure.ac中的巨集展開,生成configure指令碼。這個過程可能要用到aclocal.m4中定義的巨集。
三、例項
1.測試程式碼(定義兩個檔案hello.h和hello.c)
/*hello.c*/ #include <iostream> #include "hello.h" using namespace std; int main() { CHello a; return 0; }
/*hello.h*/ #ifndef __HELLO_H__ #define __HELLO_H__ #include<iostream> usingnamespace std; class CHello { public: CHello(){ cout<<"Hello!"<<endl;} ~CHello(){ cout<<"Bye!"<<endl;} }; #endif
2.操作步驟
(1)安裝依賴的包
[[email protected] autoconfig]# yum -y install automake autoconf
automake包括:aclocal、automake等
autoconf包括:autoscan、autoconf等
(2)autoscan
[[email protected]autoconfig]# ll -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h [[email protected] autoconfig]# autoscan [[email protected] autoconfig]# ll total 12 -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rw-r--r-- 1 root root 481 Jun 4 configure.scan -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h
(3)aclocal
[[email protected] autoconfig]# mv configure.scan configure.ac [[email protected] autoconfig]# vim configure.ac /*將下面紅色加粗的部分修改掉*/ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT(hello, 1.0, [email protected]) AM_INIT_AUTOMAKE(hello, 1.0) AC_CONFIG_SRCDIR([hello.cpp]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. AC_PROG_CXX AC_PROG_CC # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. AC_OUTPUT(Makefile) [[email protected] autoconfig]# aclocal [[email protected] autoconfig]# ll total 52 -rw-r--r-- 1 root root 37794 Jun 4 aclocal.m4 drwxr-xr-x 2 root root 51 Jun 4 autom4te.cache -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rw-r--r-- 1 root root 492 Jun 4 configure.ac -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h
下面給出本檔案的簡要說明(所有以”#”號開始的行為註釋):
· AC_PREREQ 巨集宣告本檔案要求的autoconf版本,本例使用的版本為2.59。
· AC_INIT 巨集用來定義軟體的名稱和版本等資訊,”FULL-PACKAGE-NAME”為軟體包名稱,”VERSION”為軟體版本號,”BUG-REPORT-ADDRESS”為BUG報告地址(一般為軟體作者郵件地址)。
·AC_CONFIG_SRCDIR 巨集用來偵測所指定的原始碼檔案是否存在,來確定原始碼目錄的有效性。此處為當前目錄下的hello.c。
·AC_CONFIG_HEADER 巨集用於生成config.h檔案,以便autoheader使用。
·AC_PROG_CC 用來指定編譯器,如果不指定,選用預設gcc。
·AC_OUTPUT 用來設定 configure 所要產生的檔案,如果是makefile,configure會把它檢查出來的結果帶入makefile.in檔案產生合適的makefile。使用Automake時,還需要一些其他的引數,這些額外的巨集用aclocal工具產生。
(3)autoconf
[[email protected] autoconfig]# autoconf [[email protected] autoconfig]# ll total 204 -rw-r--r-- 1 root root 37794 Jun 4 aclocal.m4 drwxr-xr-x 2 root root 81 Jun 4 autom4te.cache -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rwxr-xr-x 1 root root 154727 Jun 4 configure -rw-r--r-- 1 root root 492 Jun 4 configure.ac -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h
此時可以看到已經生成了configure
(4)autoheader
[[email protected] autoconfig]# autoheader [[email protected] autoconfig]# ll total 208 -rw-r--r-- 1 root root 37794 Jun 4 aclocal.m4 drwxr-xr-x 2 root root 81 Jun 4 autom4te.cache -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rw-r--r-- 1 root root 625 Jun 4 config.h.in -rwxr-xr-x 1 root root 154727 Jun 4 configure -rw-r--r-- 1 root root 492 Jun 4 configure.ac -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h
autoheader生成了configure.h.in如果在configure.ac中定義了AC_CONFIG_HEADER,那麼此檔案就需要;
(5)Makefile.am
[[email protected] autoconfig]# vim Makefile.am [[email protected] autoconfig]# cat Makefile.am AUTOMAKE_OPTIONS=foreign bin_PROGRAMS=hello hello_SOURCES=hello.cpp hello.h
· AUTOMAKE_OPTIONS 為設定Automake的選項。由於GNU對自己釋出的軟體有嚴格的規範,比如必須附帶許可證宣告檔案COPYING等,否則Automake執行時會報錯。Automake提供了3種軟體等級:foreign、gnu和gnits,供使用者選擇,預設等級為gnu。本例使需用foreign等級,它只檢測必須的檔案。
· bin_PROGRAMS 定義要產生的執行檔名。如果要產生多個執行檔案,每個檔名用空格隔開。
· hello_SOURCES 定義”hello”這個執行程式所需要的原始檔案。如果”hello”這個程式是由多個原始檔案所產生的,則必須把它所用到的所有原始檔案都列出來,並用空格隔開。例如:若目標體”hello”需要”hello.c”、”hello.h”兩個依賴檔案,則定義hello_SOURCES=hello.c hello.h。
(6)automake
[[email protected] autoconfig]# automake --add-missing configure.ac:6: warning: AM_INIT_AUTOMAKE: two- and three-arguments forms are deprecated. For more info, see: configure.ac:6: http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_005fINIT_005fAUTOMAKE-invocation configure.ac:6: installing './install-sh' configure.ac:6: installing './missing' [[email protected] autoconfig]# ll total 236 -rw-r--r-- 1 root root 37794 Jun 4 aclocal.m4 drwxr-xr-x 2 root root 81 Jun 4 autom4te.cache -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rw-r--r-- 1 root root 625 Jun 4 config.h.in -rwxr-xr-x 1 root root 154727 Jun 4 configure -rw-r--r-- 1 root root 492 Jun 4 configure.ac -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h lrwxrwxrwx 1 root root 35 Jun 4 install-sh -> /usr/share/automake-1.13/install-sh -rw-r--r-- 1 root root 79 Jun 4 Makefile.am -rw-r--r-- 1 root root 22227 Jun 4 Makefile.in lrwxrwxrwx 1 root root 32 Jun 4 missing -> /usr/share/automake-1.13/missing
此步主要是為了生成Makefile.in,加上--add-missing引數後,會補全缺少的指令碼;
(6)測試
[[email protected] autoconfig]# ./configure [[email protected] autoconfig]# make [[email protected] autoconfig]# ./hello Hello! Bye!
和平時安裝許多開源軟體一樣操作
(7)打包
[[email protected] autoconfig]# make dist [[email protected] autoconfig]# ll total 436 -rw-r--r-- 1 root root 37794 Jun 4 aclocal.m4 drwxr-xr-x 2 root root 81 Jun 4 autom4te.cache -rw-r--r-- 1 root root 0 Jun 4 autoscan.log -rw-r--r-- 1 root root 758 Jun 4 config.h -rw-r--r-- 1 root root 625 Jun 4 config.h.in -rw-r--r-- 1 root root 11031 Jun 4 config.log -rwxr-xr-x 1 root root 32557 Jun 4 config.status -rwxr-xr-x 1 root root 154727 Jun 4 configure -rw-r--r-- 1 root root 492 Jun 4 configure.ac lrwxrwxrwx 1 root root 32 Jun 4 depcomp -> /usr/share/automake-1.13/depcomp -rwxr-xr-x 1 root root 22250 Jun 4 hello -rw-r--r-- 1 root root 72021 Jun 4 hello-1.0.tar.gz -rw-r--r-- 1 root root 105 Jun 4 hello.cpp -rw-r--r-- 1 root root 189 Jun 4 hello.h -rw-r--r-- 1 root root 26008 Jun 4 hello.o lrwxrwxrwx 1 root root 35 Jun 4 install-sh -> /usr/share/automake-1.13/install-sh -rw-r--r-- 1 root root 23564 Jun 4 Makefile -rw-r--r-- 1 root root 79 Jun 4 Makefile.am -rw-r--r-- 1 root root 23869 Jun 4 Makefile.in lrwxrwxrwx 1 root root 32 Jun 4 missing -> /usr/share/automake-1.13/missing -rw-r--r-- 1 root root 23 Jun 4 stamp-h1
如果細心的話可以發現,人群中已經出現了hello-1.0.tar.gz就是將已經編譯好的檔案進行了打包。
轉自:https://www.cnblogs.com/bugutian/p/5560548.html
相關推薦
Linux下使用automake、autoconf生成configure檔案
一、生成configure過程中各檔案之間的關係圖二、詳細介紹autoscan: 掃描原始碼以搜尋普通的可移植性問題,比如檢查編譯器,庫,標頭檔案等,生成檔案configure.scan,它是configure.ac的一個雛形。aclocal:根據已經安裝的巨集,使用者定義巨
【configure】如何用automake、autoconf指令生成configure並建立自己的linux tar.gz安裝包【初級篇:簡單建立-測試】
$ tree 2048-c/ 2048-c/ ├── 2048.c ├── 2048.h └── main.c 0 directories, 3 files 然後進入資料夾,執行autoscan生成configure.scan檔案 $ cd 2048-c/ $ ls
linux下編譯bib、tex生成pdf檔案
Original url: https://www.cnblogs.com/cfsmile/p/4912226.html實驗:在linux環境下,編譯(英文)*.bib和*.tex檔案,生成pdf檔案。環境:fedora 20(uname -a : Linux localhost.localdomain 3
linux下目錄、檔案顯示顏色的設定生效
Centos系統 拷貝/etc/DIR_COLORS檔案為當前主目錄的 .dir_colors 命令:cp /etc/DIR_COLORS ~/.dir_colors 修改~/.dir_colors中DIR對應的顏色vim ~/.dir_colors 找到下面這一行: &nb
Linux下安裝pyinstaller用於將py檔案打包生成一個可執行檔案
(2)cd pyinstaller-2.1 執行 python setup.py install 4. 拷貝py檔案 將需打包的py檔案如test.py 拷貝到當前目錄 5. 生成可執行檔案 cd到pyinstaller目錄, 執行 python pyinstaller.py test.py可能遇到的問題1
Linux下grep、tail、wc、awk檔案處理命令
閱讀目錄 greptailwcawk grep Linux系統中grep命令是一種強大的文字搜尋工具,它能使用正則表示式搜尋文字,並匹配行打印出來。 命令語法: usage: grep [-abcDEFGHhIiJLlmnOoqRSsUVvwxZ] [-A num] [-B num] [-C[
Linux下增加、刪除Swap檔案
1、檢查 Swap 空間,先檢查一下系統裡有沒有既存的 Swap 檔案 swapon -s 如果返回的資訊概要是空的,則表示 Swap 檔案不存在。 2、確定swap檔案的大小,單位為M。將該值乘以1024得到塊大小。例如,64MB的swap檔案的塊大小是65536。 3、建立 Swap 檔案,下面使用 dd
Linux下建立、開啟、寫入檔案操作
linux下既然把所有的裝置都看作檔案來處理,就要熟練使用linux下檔案操作的相關API。 #include<stdio.h> #include<sys/types.h> #include<sys/stat.h> #incl
Java在linux下呼叫C/C++生成的so檔案
1.CplusUtil.java是java web工程中的一個工具類內容如下:CplusUtil.java [java] view plain copy print? package cn.undoner.utils; /** * Created
linux 下查詢、搜尋檔案篩選使用 grep 例項演示 帶截圖
經常想找到檔案中 關鍵字的位置 在window中 我們知道使用 ctrl+f查詢 但是在linux 中我們使用的是 grep 命令 查詢下面我來時查詢的ntf 這個字串 效果如下ntf 是我查詢的內容 a.txt 是查詢的內容是什麼,但是這樣是不是 很不合理,不清楚在
Linux下which、whereis、locate、find 命令查詢檔案
我們經常在linux要查詢某個檔案,但不知道放在哪裡了,可以使用下面的一些命令來搜尋。這些是從網上找到的資料,主要可以使用如下的幾個命令 which 檢視可執行檔案的位置 whereis
Linux下安裝、配置、啟動Apache
util roo 驗證 post res 啟動 php cto 直接 安裝Apache前準備: 1、檢查該環境中是否已經存在httpd服務的配置文件,默認存儲路徑:/etc/httpd/httpd.conf(這是centos預裝的Apache的一個ent版本,一般我們安裝
linux下ftp、telnet的安裝和使用
重啟 修改 home exp ftp服務 instance linux下 ble onf 1、ftp的安裝和使用 一般在各種linux的發行版中,默認帶有的ftp軟件是vsftp。 使用如下命令#rpm -qa | grep vsftpd可以檢測出是否安裝了
day18--linux下gzip、bzip2、zip、xz三種壓縮工具的介紹
gzip bzip2 zip xz 6.1:壓縮打包介紹:壓縮:節省空間,方便傳輸,帶寬資源耗費變少:常用的壓縮文件類型:windows: .rar .zip .7zlinux: .zip .gz .bz2 .xz .tar.gz .ta
day18--linux下gzip、bzip2、xz三種壓縮工具的介紹
gzip bzip2 zip xz 6.1:壓縮打包介紹:壓縮:節省空間,方便傳輸,帶寬資源耗費變少:常用的壓縮文件類型:windows: .rar .zip .7zlinux: .zip .gz .bz2 .xz .tar.gz .ta
VMware + ubuntu16.04 Linux 下安裝、配置Gogs
自己 不知道 advance bsp 空間 home apt-get gogs systemctl 本文在Win7+VMware的ubuntu 16.04中測試。運行如下命令: sudo apt-get install git sudo adduser git # 為Go
linux下.so、.ko、.a的區別
之間 模塊相互調用 進行 編譯 靜態庫 打包 通信 各類 內核 各類文件的區別與作用: 1、對於.so文件 .so文件是用戶層的動態鏈接庫,用於用戶層的動態鏈接使用,內核態的代碼同樣不能直接訪問。 2、對於.ko文件 obj-m = *.oobj-y = *.o上
linux下開啟、關閉、重啟mysql服務命令
一、 啟動1、使用 service 啟動:service mysql start2、使用 mysqld 指令碼啟動:/etc/inint.d/mysql start3、使用 safe_mysqld 啟動:safe_mysql&二、停止1、使用 service 啟動:service mysql stop
linux下zookeeper、redis、activemq、solr、mysql、nginx啟動、停止、檢視狀態命令
一、zookeeper 首先進入zookeeper/bin目錄下 *啟動 ./zkServer.sh start *停止 ./zkServer.sh stop *檢視狀態 ./zkServer.sh status 二、redis 1、 redis簡潔安裝 re
linux下nginx、php和mysql安裝配置
一、安裝nginx 安裝nginx yum install -y epel-release yum install nginx -y 檢視nginx軟體包包括了哪些檔案 rpm -ql nginx 啟動nginx systemctl start nginx 檢視ng