Skip to content

Instantly share code, notes, and snippets.

@weimeng23
Last active April 16, 2024 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weimeng23/edc9cbbb9074d1c5b5fbbc42e486afc9 to your computer and use it in GitHub Desktop.
Save weimeng23/edc9cbbb9074d1c5b5fbbc42e486afc9 to your computer and use it in GitHub Desktop.
compile and install glibc in custom path
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