Last active
February 1, 2025 23:29
-
-
Save carlesloriente/ab3387e7d035ed400dc2816873e9089e to your computer and use it in GitHub Desktop.
Compile and install GLIBC 2.18 in CentOS 7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Check gist comments to verify system PATH and or adapt it. | |
wget https://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
If all commands fails after adding new glibc in LD_LIBRARY_PATH, simply try
unset $LD_LIBRARY_PATH