Skip to content

Instantly share code, notes, and snippets.

@atongsa
Created February 6, 2023 02:53
Show Gist options
  • Save atongsa/a0bd81324baadf8e6b74ca93386b53b3 to your computer and use it in GitHub Desktop.
Save atongsa/a0bd81324baadf8e6b74ca93386b53b3 to your computer and use it in GitHub Desktop.
install glibc from source
git clone git://sourceware.org/git/glibc.git
cd glibc
git checkout glibc-2.26
mkdir build
cd build
export glibc_install="$(pwd)/install"
../configure --prefix "$glibc_install"
make -j 4 #`nproc`
make install -j 4 #`nproc`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment