From 046ee73756d20274a3dfc48de34c658b0e21df06 Mon Sep 17 00:00:00 2001 From: "Zheng, Qi" Date: Thu, 16 Mar 2023 13:54:06 +0800 Subject: [PATCH] [toolchain] Speed up glibc build --- tools/toolchains/glibc/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolchains/glibc/build.sh b/tools/toolchains/glibc/build.sh index fa439121..62d25bd2 100755 --- a/tools/toolchains/glibc/build.sh +++ b/tools/toolchains/glibc/build.sh @@ -30,5 +30,5 @@ CFLAGS="-O2 -g ${EXTRA_CFLAGS}" ${SRC_DIR}/configure \ --prefix=${INSTALL_DIR} --with-tls --without-selinux \ --enable-stack-protector=strong --disable-nscd --disable-crypt \ ${EXTRA_CONFIG_OPTION} -make +make -j$(nproc) make install