Skip to content

Commit

Permalink
Try to paralellize build of glibc
Browse files Browse the repository at this point in the history
  • Loading branch information
rollbear committed Jul 10, 2024
1 parent 1b9a0d9 commit 91f3317
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions common/install-glibc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@ then
fi
apt install -y --no-install-recommends gawk bison texinfo gcc
git clone -b glibc-${MIN_VERSION} --depth=1 git://sourceware.org/git/glibc
lscpu
mkdir glibc/build
pushd glibc/build
../configure --disable-sanity-checks
make
make install
make -j 4
make -j 4 install
popd
rm /usr/include/xlocale.h
ln -s /usr/include/locale.h /usr/include/xlocale.h
Expand Down

0 comments on commit 91f3317

Please sign in to comment.