Linux下./configure錯誤詳解

來源:互聯網
上載者:User
說明:sudo apt-get install  package-name   更新你指定的軟體包sudo apt-get update                           擷取更新列表 sudo apt-get dist-upgrade                  開始更新./configure的問題錯誤: C compiler cannot create executables原因:解決:sudo apt-get gcc libc6-dev錯誤:checking for C compiler default output... configure: error: C compiler cannot create executables原因:解決:sudo apt-get install libc6-dev錯誤:configure: error: C++ preprocessor "/lib/cpp" fails sanity check原因:gcc的組件沒裝全解決:apt-get install build-essential錯誤: Can't find X includes. Please check your installation and add the correct paths!原因:沒有X的包含檔案解決:安裝xlibs-dev即可錯誤: Qt (>= Qt 3.0) (headers and libraries) not found. Please check your installation!原因:尋找提供qt的lib&&headers的軟體包,並安裝之解決:apt-get install libqt3-headers libqt3-mt-dev錯誤:in the prefix, you've chosen, are no KDE headers installed. This will fail.So, check this please and use another prefix!原因:install a KDE application in a Gnome environment。解決:which basically means its going to want to install a lot of KDE specific packages to work. This 'configure:error'is due to it expecting you to be running KDE and again refers to some 'headers'.sudo apt-get updatesudo apt-get install kdelibs4-dev kdelibs4c2a錯誤:./admin/cvs.sh: 585: autoconf: not found原因:解決:apt-get install autoconf錯誤: *** GTK >= 2.4.0 not installed! ***原因:沒裝GTK解決:apt-get build-dep gedit錯誤:heching for gtk-config... nochecking for GTK - version = 1.2.0... no*** The gtk-config script installed by GTK could not be found*** If GTK was installed in PREFIX, make sure PREFIX/bin is in*** your path, or set the GTK_CONFIG enviroment variable to the*** full path to gtk-config.configure: error: Cannot find GTK: Is gtk-config in path?原因:解決:sudo apt-get install libgtk1.2-dev問題:eclipse中encoding不支援中文解決:編輯/var/lib/locales/supported.d/local,加一行zh_CN.GBK GBK,執行sudo locale-gen錯誤:gnome.h: No such file or directory錯誤: No package 'libpanelapplet-2.0' found原因:解決:sudo apt-get install gnome-panel問題:eva不彈出IME解決:sudo apt-get install scim-qtimm問題:No package 'gtk+-2.0' foundNo package 'gtksourceview-1.0' foundNo package 'libgnomeui-2.0' foundNo package 'libglade-2.0' foundNo package 'libgnomeprintui-2.2' found解決:sudo apt-get install libgtk2.0-dev libgtksourceview-dev libgnomeui-dev libglade2-dev libgnomeprint2.2-dev問題:No package 'libpanelapplet-2.0' found解決:sudo apt-get install libpanelappletmm-2.6-dev編譯安裝 Pidgin 的步驟1. 下載 Pidgin 的原始碼包 pidgin-2.1.1.tar.bz2 (官方最新的版本)。wget http://jaist.dl.sourceforge.net/sourceforge/pidgin/pidgin-2.1.1.tar.bz22. 安裝編譯 Pidgin 所需的依賴:sudo apt-get install libgtk2.0-dev libxml2-dev gettext libnss-dev libnspr-dev3. 解壓原始碼包tar jxvf pidgin-2.1.1.tar.bz2cd pidgin-2.1.14. 編譯./configure (建議使用 –help 查詢需要用到的參數)makesudo make install如果在 ./configure 這一步出現錯誤錯誤一:configure: error:You must have the GTK+ 2.0 development headers installed to compile Pidgin.If you only want to build Finch then specify –disable-gtkui when running configure.解決:sudo apt-get install libgtk2.0-dev錯誤二:configure: error:You must have libxml2 >= 2.6.0 development headers installed to build.解決:sudo apt-get install libxml2-dev錯誤三:configure: error:The msgfmt command is required to build libpurple. If it is installed on your system, ensure that it is in your path. If it is not, install GNU gettext to continue.解決:sudo apt-get install gettext如果在使用 GTalk 或 MSN 時出現錯誤錯誤:SSL Library/Libraries……… : None (MSN and Google Talk will not workwithout SSL!)解決:sudo apt-get install libnss-dev libnspr-devUbuntu編譯時間找不到Makefile的解決辦法ZDNet  軟體頻道        更新時間:2007-09-26作者:  korn        來源:賽迪網 本文關鍵詞:      Ubuntu    Proftp    如果是需要編譯的環境,推薦安裝"build  essential"包,#sudo  apt-get  install  "build-essential" 在用./configure  ,make  ,  makeinstall  ,方法安裝軟體是,經常會發生髮生各種錯誤,而導致無法產生  makefile  檔案。現在我把我安裝過程中遇到的問題以及解決辦法寫下來,希望對大家有點協助。以我安裝  pidgin-2.0.0為例 #./configure  出現錯誤  : configure:  error:  C  compiler  cannot  create  executables 按照錯誤提示安裝缺少的包 #sudo  apt-get  install  libc6-dev 再次 #./configure 出現錯誤 checking  for  GLIB...  no no configure:  error: You  must  have  the  GLib  2.0  development  headers  installed  to  build. 根據錯誤提示,用新得立搜尋  GLib  2.0  或者  用命令#sudo  apt-cache  search  GLib  2.0 發現有個包  libglib2.0-dev  -  Development  files  for  the  GLib  library  。選擇安裝; #sudo  apt-get  install  libglib2.0-dev 這裡原文為libglib2.0-0-dev,似乎有誤。#./configure  #又出現錯誤 checking  for  X...  no checking  for  GTK...  no no configure:  error: You  must  have  the  GTK+  2.0  development  headers  installed  to  compile  Pidgin. If  you  only  want  to  build  Finch  then  specify  --disable-gtkui  when  running  configure. 用如上同樣的方法尋找到缺少的包  並安裝 sudo  apt-get  install  libgtkmm2.0-dev ./configure  出現錯誤 checking  for  LIBXML...  no no configure:  error: You  must  have  libxml2  >=  2.6.0  development  headers  installed  to  build. 於是安裝 sudo  apt-get  install  libxml2-dev 經過上麵包的安裝,在次./configure  沒有再出現錯誤,這次成功的產生了makefile  檔案。 然後執行:#make #make  install 成功安裝軟體。如果在./configure中還出現問題,那麼要找到問題所在,安裝缺失的包即可。在配置過程中,config.log檔案是很有協助的。我們可以在這裡面找出錯誤的根源,從而尋找應對措施。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.