admin管理员组

文章数量:1566220

问题背景:

编译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

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/gnu/autoconf/autoconf-2.69.tar.gz

tar xzvf autoconf-2.69.tar.gz

cd autoconf-2.69

./configure

make && make install

本文标签: 报错GLIBCPHPCriticalld