These critical programs are missing or too old as ld
阿新 • • 發佈:2018-11-12
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
configure 時出現以下錯誤:
checking for autoconf... noconfigure: error :*** These critical programs are missing or too old: as ld*** Check the INSTALL file for required versions.
- 1
- 2
- 3
- 4
問題原因:
缺少autoconf或版本太低
下載安裝新版本
# wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz# tar zxvf autoconf-2.68.tar.gz# cd autoconf-2.68# ./configure --prefix=/usr/ # make && make install
- 1
- 2
- 3
- 4
- 5
檢視當前版本:
# autoconf -Vautoconf (GNU Autoconf) 2.68Copyright (C) 2010 Free Software Foundation, Inc.License GPLv3+/Autoconf: GNU GPL version 3 or later<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>This is free software: you are free to change and redistribute it.There is NO WARRANTY, to the extent permitted by law.Written by David J. MacKenzie and Akim Demaille.
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
注意是大寫的V。