repo/glibc/build

9 lines
246 B
Text
Raw Normal View History

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