Last active
April 16, 2024 16:11
-
-
Save weimeng23/edc9cbbb9074d1c5b5fbbc42e486afc9 to your computer and use it in GitHub Desktop.
compile and install glibc in custom path
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
wget https://github.com/bminor/glibc/archive/refs/tags/glibc-2.35.tar.gz | |
tar xvf glibc-2.35.tar.gz | |
cd glibc-glibc-2.35 | |
mkdir build | |
cd build | |
../configure --prefix=/path/to/install | |
make -j10 | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment