nodejs升级18.16报错/lib64/libm.so.6: version `GLIBC_2.27'
网友回复
node18需要GLIBC_2.27支持,解决办法,更新glibc
wget http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.gz tar xf glibc-2.28.tar.gz cd glibc-2.28/ && mkdir build && cd build ../configure --prefix=/usr --disable-profile --enable-add-ons --with-headers=/usr/include --with-binutils=/usr/bin make&&make install可能出现的错误
configure: error: *** These critical programs are missing or too old: make bison compiler *** Check the INSTALL file for required versions.
解决办法:升级gcc与make
# 升级GCC(默认为4 升级为8)
yum install -y centos-release-scl yum install -y devtoolset-8-gcc mv /usr/bin/gcc /usr/bin/gcc-4.8.5 ...
点击查看剩余70%