青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

Creative Commons License
本Blog采用 知識共享署名-非商業性使用-禁止演繹 3.0 Unported許可協議 進行許可。 —— Fox <游戲人生>

游戲人生

游戲人生 != ( 人生 == 游戲 )
站點遷移至:http://www.yulefox.com。請訂閱本博的朋友將RSS修改為http://feeds.feedburner.com/yulefox
posts - 62, comments - 508, trackbacks - 0, articles - 7

Autotools初體驗

Posted on 2009-12-23 02:18 Fox 閱讀(6951) 評論(5)  編輯 收藏 引用 所屬分類: T技術碎語

本文同步自游戲人生

Writen by Fox(yulefox.at.gmail.com)


從接觸和使用make以來,前前后后寫了不少Makefile(添添減減、修修補補,累計上千行是有的),今天在重新整理代碼的組織結構之后,突然就想:我為什么不使用Autotools呢?

在開始體驗功能強大的Autotools之前,簡單(詳細)回憶總結一下我使用make的經歷和思考的過程,反省一下看看自己在接觸這些新鮮事物的時候到底走了多少彎路。

o Cygwin

今年3月份,拜Kevin Lynx所賜,每次對Linu淺嘗輒止的我終于下決心接觸了Cygwin環境,并一發不可收拾。

剛開始的時候,就像大學剛接觸編程那樣,寫“hello, world”,在終端用gcc命令直接編譯,然后開始寫最簡單的只有一個all的Makefile。因為Emacs、GCC、make對我來說都是嶄新的 工具,后面重心就不是放在寫代碼上了,而是急于掌握他們,以求達到在Windows下的開發效率。

去年11月底,當時還沒有開始用Cygwin,就買了一本《Managing Projects with GNU Make》,此時也算物盡其用了。慢慢開始使用variables、macros、phony targets、functions,按步就班的系統學習應用。

o Ubuntu

磨磨蹭蹭過了半年,其間因為忙著畢業,對Cygwin和Emacs、GCC、make也算比較熟悉了。

今年10月份,開始使用Ubuntu,剛開始在Windows下用wubi安裝,很快就直接用新的硬盤分區物理安裝,并隨著Ubuntu 9.10的發布,升級到了9.10

這前后寫Makefile最大的區別就是,之前純粹是為了寫而寫,之后是為了用而寫。

隨著整個代碼結構的不斷膨脹和修改,Makefile也不斷的變化。

Makefile自身的最大變化是從之前的因為編寫錯誤、通用性差而不斷修改,演變到最后代碼增減不會影響Makefile,只是為了增加tags、優化結構而改動。

經歷了這個過程后,對于Makefile的結構就比較熟悉了,而且可以從其他使用automake的項目的Makefile中學習借鑒了。


之所以想到使用autotools,是因為接觸的很多開源項目的代碼都使用了這一組工具。

對于用戶而言,一般的項目編譯安裝的過程:

o bootstrap:檢測autoconfautomakelibtool及其版本并完成初始化,生成configure;

o configure:檢測系統平臺及軟硬件環境,確定適用本地環境的編譯策略,生成Makefiles;

o make:編譯、鏈接;

o make install:安裝;

o ldconfig:配置環境變量。

對于開發者而言,則需要通過autoconf、automake為用戶組織起上面的過程:

Autoconf 流程
Autoconf 流程

對于這一流程,我的方法是照葫蘆畫瓢,參考OGRE等項目的相關文件和工具的GNU文檔。

寫個Hello, Kitty。

操作的流程和期間出現的幾個問題總結一下:

o cd project_dir:轉到項目目錄;

o emacs Hello.cpp

#include <iostream>

int main(int argc, char** argv)
{
std::cout << "Hello, Kitty!" << std::endl;
return 0;
}

o autoscan:生成configure.scan

#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.64])
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
AC_CONFIG_SRCDIR([Hello.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

o mv configure.scan configure.in:改名;

O emacs configure.in:編輯configure.in

AC_PREREQ([2.64])

# 這個是自動生成的,因為代碼中沒有相關初始化信息,這里手動修改一下,非必要
AC_INIT([CgFox], [0.0.1], [http://www.yulefox.com])

# 這個是必須的,否則無法生成aclocal.m4
AM_INIT_AUTOMAKE([CgFox], 0.0.1)

AC_CONFIG_SRCDIR([Hello.cpp])

o aclocal:生成aclocal.m4(太長了,還沒去仔細了解)和autom4te.cache;

o autoconf:生成configure(也很長,先不看);

o automake --add-missing。

……


本來想等明天(今天)弄完了再詳細整理一下。不過我沒有打算把這個東西搞成一篇教程。記下來更多的只是為了給自己留下一個lable,知道自己這幾天在做什么。

最近又是兩點左右睡。腦子里有個家伙告訴我這樣不好;另一個家伙告訴我他還不困;還一個家伙告訴我明天還要上班。

我去你大爺的!

Feedback

# re: Autotools初體驗[未登錄]  回復  更多評論   

2009-12-23 08:15 by jacky
autotools用起來太繁瑣,OGRE已經用cmake來構建了,很好用。

# re: Autotools初體驗  回復  更多評論   

2009-12-23 09:04 by Fox
In practice, CMake not only lacks a rich platform tests suite, compared to autoconf, it also lacks a lot of features from automake and libtool.

So why should you not switch an autotools-based project over to CMake?

Tedious
First and foremost, your configure.ac script may be large. Porting to CMake can be a time consuming and not so funnny task when it comes to the long tail.
iconv support missing
There are no standard tests for iconv(), neither for finding the compiler flags, nor whether it takes a const pointer.
pkg-config support broken
pkg-config support is reportedly broken as of cmake 2.4 patch 8.
Exported symbols list not implemented
There are no documented ways to specify the list of exported symbols for a shared libraries, so your libraries will unconditionnaly expose all their non-static APIs (libtool can use a flat list or a regular expression).
C99 compiler check missing
There is no built-in support to enable C99 support in the C compiler.
Objective-C flags not supported
You can add flags for the Objective-C compiler, but they propagate to C compilation as well.
Compiler feature checks missing
There are no built-in checks for any of the C99 features, such as variable-sized arrays, restricted pointers, macros with variable number of arguments, etc. nor for GCCisms.
Monolithic installation prefix
There is only one global installation prefix. So the typical Linux distro cannot set the global prefix to /usr while the system configuration (automake's sysconfdir) would be /etc. Very nice for "downstream" Linux packagers...
Installation paths hard-coding
As a consequence of the single prefix, you need to hard-code all paths from the prefix. Instead of ${docdir}, you need to hard-code ${prefix}/share/doc/${package} (${CMAKE_INSTALL_PREFIX}/share/doc/foobar in CMake parliance) and so on and so forth. BSD porters are going to have fun tweaking the paths manually...
Uninstallation not supported
There is sipport for uninstalling. That is a design choice. You'd better never ever try to install a package straight from the build tree, without a proper packaging system.
Installation testsuite not supported
Since there is no uninstallation, there is no of course no distcheck target either. How often did you get your source tarball right from the first attempt before a new release?
No cross-compilation
There is no documented support for cross-compilation. This is scheduled for a future release.
Limited documentation
Compared to autotools, the documentation feels a bit light. At least, there is a wiki, but that cannot replace a good offline reference.
Limited executable renaming
CMake is not quite as powerful as automake (with program-prefix, program-suffix and program-transform-name) when it comes to on-the-fly executable renaming. This little-known feature of automake can be extremely useful when building an operating system distribution with possibly conflicting executable names from different projects. For instance, it is very conveniant along with the Debian alternatives system.
No source tarball packaging
There is no built-in support for making a tarball (make dist). Some Version Control Systems can do it themselves (git does, Subversion does not). This is quite critical a feature for open-source projects.
No source tarball testing
As there is no replacement for make dist, there is no replacement for make distcheck either. From my not-so-humble experience, that is tremendously useful before doing a new release. (NOTE: when I write distcheck, I mean distcheck. I don't mean check which becomes test with CMake)
No gettext integration
Gettext is not supported. Targets for .po and .mo files must be added manually. Nevermind that this is the most widely used localization subsystem in the open-source community.
Awkward feature listing
Whereby ./configure --help gives the list of build option, cmake --help prints the CMake options only. Instead, it seems you have to run cmake in "interactive" mode and answer a question for each and every setting (much like Linux kernel make config).
---------------------------
當然這些問題對于我不是必需的,不過還是等我autotools用一段時間再說:)

# re: Autotools初體驗  回復  更多評論   

2009-12-24 10:31 by 飯中淹
這個相對于IDE來說,有什么優勢?

# re: Autotools初體驗  回復  更多評論   

2009-12-24 10:52 by Fox
@飯中淹
這套工具現在對于我更多的是一個學習和試驗,如果希望和別人交流和共同開發跨平臺(尤其是non-win)的代碼的話,由于需要對依賴庫進行檢測,這個工作可以由autoconf+automake來完成。
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产精品久久久久久久久久久久| 国产精品美女久久福利网站| 激情另类综合| 久久九九久精品国产免费直播| 亚洲欧美一区二区三区极速播放| 国产精品sm| 欧美呦呦网站| 久久深夜福利免费观看| 欧美在线二区| 亚洲视频日本| 国产亚洲精品成人av久久ww| 久久久夜夜夜| 欧美www视频| 亚洲伦理自拍| 亚洲视频免费观看| 国产在线播精品第三| 免费视频一区| 欧美日韩人人澡狠狠躁视频| 欧美亚洲一区| 米奇777在线欧美播放| 中国日韩欧美久久久久久久久| 一区二区高清在线观看| 国内一区二区三区| 亚洲国产精品久久久久秋霞蜜臀| 99精品国产在热久久| 国产日韩欧美综合在线| 亚洲国产福利在线| 国产精品一区二区三区四区| 欧美高清视频| 欧美午夜精品理论片a级按摩| 久久久之久亚州精品露出| 欧美激情黄色片| 久久精品国产欧美激情| 欧美理论大片| 久久综合九九| 国产精品成人久久久久| 欧美福利影院| 狠狠色噜噜狠狠色综合久| 日韩午夜三级在线| 在线日韩欧美视频| 午夜在线a亚洲v天堂网2018| 日韩视频在线一区二区| 久久国产毛片| 校园春色综合网| 欧美日韩123| 欧美成人黑人xx视频免费观看| 国产精品永久在线| 一本色道久久综合亚洲精品按摩| 亚洲国产欧美在线人成| 久久狠狠久久综合桃花| 性色av一区二区三区在线观看| 欧美国产一区视频在线观看| 久久先锋资源| 国产一区二区三区视频在线观看| 在线视频你懂得一区二区三区| 亚洲精品乱码久久久久久按摩观| 久久精品成人| 久久在线免费| 国内自拍一区| 久久美女艺术照精彩视频福利播放| 性欧美video另类hd性玩具| 欧美精品久久99| 欧美激情视频在线播放| 欧美激情一区二区| 久久高清免费观看| 久久国内精品视频| 国产日韩三区| 久久精品官网| 蜜桃久久av一区| 国产亚洲一区在线| 欧美在线视频免费播放| 久久免费少妇高潮久久精品99| 国产日韩1区| 欧美精品一区二区三区一线天视频| 久久国产精品99国产| 国产欧美日韩高清| 欧美在线观看一二区| 欧美制服丝袜| 国产一区免费视频| 久久免费黄色| 亚洲第一成人在线| 日韩一区二区电影网| 欧美日韩午夜精品| 亚洲一区观看| 鲁大师影院一区二区三区| 亚洲国产小视频在线观看| 欧美aaa级| 一区二区三区.www| 久久精品主播| 亚洲激情视频网站| 国产精品国产自产拍高清av| 午夜精品久久久久久久| 六十路精品视频| 最新日韩在线视频| 欧美视频中文一区二区三区在线观看| 一区二区三区成人精品| 久久久精品免费视频| 亚洲日本欧美天堂| 国产精品一区二区久久久久| 久久这里只有| 在线综合欧美| 欧美成人免费大片| 亚洲欧美国产视频| 在线国产亚洲欧美| 亚洲精品一区二区在线观看| 亚洲美女视频在线免费观看| 久久成年人视频| 亚洲理论在线观看| 国内伊人久久久久久网站视频| 欧美激情在线观看| 久久精品视频在线播放| 一区二区三区四区五区在线| 麻豆精品传媒视频| 欧美一级欧美一级在线播放| 亚洲第一区在线| 国产精品二区在线| 欧美激情一区二区三区成人| 久久国产精彩视频| 中文一区二区| 欧美成年人视频网站| 久久久99久久精品女同性| 99国产精品久久久| 伊人成综合网伊人222| 国产精品嫩草影院av蜜臀| 欧美国产精品v| 久久亚洲春色中文字幕久久久| 亚洲欧美激情四射在线日 | 亚洲欧美综合| 日韩系列在线| 亚洲国产日本| 韩日视频一区| 国产一二三精品| 国产美女扒开尿口久久久| 欧美日韩中文字幕日韩欧美| 免费成人网www| 久色成人在线| 美女视频黄a大片欧美| 久久高清免费观看| 久久国产精品黑丝| 在线播放精品| 久久国产欧美日韩精品| 午夜精品一区二区三区电影天堂| 亚洲午夜av电影| 欧美激情第9页| 欧美激情国产日韩| 久久国产夜色精品鲁鲁99| 日韩小视频在线观看专区| 在线观看亚洲a| 狠狠色噜噜狠狠狠狠色吗综合| 国产九色精品成人porny| 国产精品欧美日韩一区| 国产精品家庭影院| 国产精品女人毛片| 国产精品一二三| 国产日韩欧美亚洲一区| 国产欧美在线| 黑人巨大精品欧美一区二区小视频| 国产日韩在线看| 在线观看欧美一区| 亚洲精品久久久久久久久久久久| 日韩视频一区二区在线观看 | 欧美中文在线观看| 久久aⅴ国产紧身牛仔裤| 久久久噜噜噜久久中文字免| 久久久久久久久一区二区| 麻豆免费精品视频| 亚洲福利在线视频| 亚洲免费av网站| 亚洲一区二区综合| 美女免费视频一区| 欧美日韩伦理在线| 国产午夜久久| 亚洲国产日韩欧美综合久久| 99精品国产在热久久婷婷| 亚洲欧美一区二区视频| 久久天天躁狠狠躁夜夜av| 亚洲国产成人av好男人在线观看| aa级大片欧美| 久久全国免费视频| 欧美午夜www高清视频| 国产中文一区二区三区| 亚洲精品免费看| 欧美一区二视频| 亚洲高清久久网| 欧美一区二区三区播放老司机 | 一区二区三区回区在观看免费视频| 宅男噜噜噜66国产日韩在线观看| 欧美资源在线观看| 欧美日韩亚洲一区二区| 狠狠色丁香久久婷婷综合_中| 一区二区日韩伦理片| 久久久精品欧美丰满| 夜夜爽www精品| 免费短视频成人日韩| 国产欧美亚洲一区| 亚洲午夜视频在线| 欧美高清视频一区二区| 亚洲伊人久久综合| 欧美日本中文字幕| 亚洲精品麻豆|