repo/glibc/build

9 lines
179 B
Text
Raw Normal View History

wget -O glibc.tar.gz https://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
2021-07-07 06:51:43 +03:00
tar -xf ./glibc.tar.gz
cd glibc
mkdir build
cd build
../configure --prefix=/usr
make
2021-07-04 22:40:26 +03:00
make install DESTDIR="$1"