【原创】解决glibc编译报错:These critical programs are missing or too old: as ld
问题背景:
编译glibc-2.27报错:
checking for autoconf... no configure: error: *** These critical programs are missing or too old: as ld *** Check the INSTALL file for required versions.
问题原因:
缺少 autoconf 或 autoconf 版本太低所致
查看autoconf版本:
[root@node1 software]# autoconf --version autoconf (GNU Autoconf) 2.63 Copyright (C) 2008 Free Software Foundation, Inc. License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/old-licenses/gpl-2.0.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.
解决方案:
wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz tar xzvf autoconf-2.69.tar.gz cd autoconf-2.69 ./configure make && make install
版权声明:除非注明,本文由( blogdaren )原创,转载请保留文章出处。
本文链接:【原创】解决glibc编译报错:These critical programs are missing or too old: as ld
发表评论: