From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 42/50] make.sh: riscv64: Emulate SiFive U54 CPU Date: Tue, 22 Feb 2022 12:51:27 +0000 Message-ID: <20220222125135.1211290-43-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5332438891740510441==" List-Id: --===============5332438891740510441== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit In QEMU, some processes seem to freeze/deadlock in their futex handling which is causing the whole build process to block. Changing the emulated CPU seems to work around these problems. Signed-off-by: Michael Tremer --- make.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/make.sh b/make.sh index 522fe8401..1fb14c9ea 100755 --- a/make.sh +++ b/make.sh @@ -793,6 +793,11 @@ qemu_environ() { arm*) QEMU_CPU="${QEMU_CPU:-cortex-a9}" + env="${env} QEMU_CPU=${QEMU_CPU}" + ;; + riscv64) + QEMU_CPU="${QEMU_CPU:-sifive-u54}" + env="${env} QEMU_CPU=${QEMU_CPU}" ;; esac -- 2.30.2 --===============5332438891740510441==--