From 91f33170e76f2073e124da532ab6ac59fd3bc8a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fahller?= Date: Wed, 10 Jul 2024 10:21:45 +0200 Subject: [PATCH] Try to paralellize build of glibc --- common/install-glibc.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/install-glibc.sh b/common/install-glibc.sh index be743a8..6a171e5 100755 --- a/common/install-glibc.sh +++ b/common/install-glibc.sh @@ -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