From 7b755bb6a2a07a2f5c73fd8b35468f7d4172531c Mon Sep 17 00:00:00 2001 From: Yang Liu Date: Tue, 22 Jul 2025 20:37:20 +0800 Subject: [BOX32] Enable personality setting for RV64 and LA64 (#2841) --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d6b55699..e2471cb2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -249,6 +249,9 @@ jobs: export INTERPRETER=qemu-riscv64-static export QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ + if [[ ${{ env.BOX64_BOX32 }} == '1' ]]; then + export BOX32_PERSONA32BITS=1 # hack to disable personality setting + fi ctest $CTEST_OPTIONS QEMU_CPU=rv64,v=false BOX64_DYNAREC=0 ctest $CTEST_OPTIONS QEMU_CPU=rv64,v=false,zba=true,zbb=true,zbc=true,zbs=true ctest $CTEST_OPTIONS @@ -269,6 +272,9 @@ jobs: export INTERPRETER=qemu-loongarch64-static export QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu/ + if [[ ${{ env.BOX64_BOX32 }} == '1' ]]; then + export BOX32_PERSONA32BITS=1 # hack to disable personality setting + fi ctest $CTEST_OPTIONS -E nocosim BOX64_DYNAREC_LA64NOEXT=1 ctest $CTEST_OPTIONS -E nocosim BOX64_DYNAREC=0 ctest $CTEST_OPTIONS -E nocosim -- cgit 1.4.1