Major Study./Computer Science
glibc_2.16 not found error 해결법
sosal
2017. 1. 15. 15:51
반응형
/*
* http://sosal.kr/
* made by so_Sal
*/
이 에러가 나면 항상 헤매다가
다른 방법으로 어영부영 넘어가버렸다.
이번에 근데 정통으로 필요하게 생겼다 ;;
구글링 해보니 아래에 설명이 잘 나와있다.
http://unix.stackexchange.com/questions/176489/how-to-update-glibc-to-2-14-in-centos-6-5
mkdir ~/glibc_install; cd ~/glibc_install
wget http://ftp.gnu.org/gnu/glibc/glibc-2.14.tar.gz
tar zxvf glibc-2.14.tar.gz
cd glibc-2.14
mkdir build
cd build
../configure --prefix=/opt/glibc-2.14
make -j4
sudo make install
export LD_LIBRARY_PATH=/opt/glibc-2.14/lib
위 설명은 glibc_2.14 버전인데
http://ftp.gnu.org/gnu/glibc/ 에서 원하는 버전에 맞춰서
위 커맨드를 입력하면 해결됨.