From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH 1/4] qemu_environ: set G_SLICE="always_malloc" for riscv64 Date: Wed, 09 Aug 2023 19:58:03 +0200 Message-ID: <20230809175806.2624-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0742534868849746899==" List-Id: --===============0742534868849746899== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit this is a work around for often hanging processes eg. at rust builds. Signed-off-by: Arne Fitzenreiter --- make.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.sh b/make.sh index e0db03619..9297cac1f 100755 --- a/make.sh +++ b/make.sh @@ -767,8 +767,8 @@ qemu_environ() { ;; riscv64) QEMU_CPU="${QEMU_CPU:-sifive-u54}" - - env="${env} QEMU_CPU=${QEMU_CPU}" + G_SLICE="always-malloc" + env="${env} QEMU_CPU=${QEMU_CPU} G_SLICE=${G_SLICE}" ;; esac -- 2.39.2 --===============0742534868849746899==--