repo/glibc/build

9 lines
181 B
Text
Raw Normal View History

2021-07-07 17:27:54 +03:00
wget https://ftp.gnu.org/gnu/libc/glibc-2.33.tar.gz
tar -xf glibc-2.33.tar.gz
cd glibc-2.33
mkdir build
cd build
../configure --prefix=/usr
2021-07-08 18:28:30 +03:00
make -j`nproc`
2021-07-04 22:40:26 +03:00
make install DESTDIR="$1"