Last active
November 17, 2024 18:57
-
-
Save bogre/02cc591ff0325d2ae7e954b86d5650d5 to your computer and use it in GitHub Desktop.
install alternate glibc linux
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
mkdir $HOME/glibc/ && cd $HOME/glibc | |
wget http://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz | |
tar -xvzf glibc-2.33.tar.gz | |
mkdir build | |
mkdir glibc-2.33-install | |
cd build | |
~/glibc/glibc-2.33/configure --prefix=$HOME/glibc/glibc-2.33-install | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment