Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trungx/d4cd651d579e340b76c6d2b09dd5359b to your computer and use it in GitHub Desktop.
Save trungx/d4cd651d579e340b76c6d2b09dd5359b to your computer and use it in GitHub Desktop.
Compile and install GLIBC 2.18 in CentOS 7
wget http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz
tar zxvf glibc-2.18.tar.gz
cd glibc-2.18
mkdir build
cd build
../configure --prefix=/opt/glibc-2.18
make -j4
sudo make install
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/glibc-2.18/lib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment