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
make install DESTDIR="$1"