diff options
| author | Yang Liu <numbksco@gmail.com> | 2024-03-02 16:45:55 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-02 09:45:55 +0100 |
| commit | 829c254b1f5e14a48a8f096fdccd2b3637aabe32 (patch) | |
| tree | 882292e195dcf7391f43a934c96caa1afbe00d98 /.github/workflows | |
| parent | 8bf54eda562dc2f1c4ae74c8122d3b7be98f2d22 (diff) | |
| download | box64-829c254b1f5e14a48a8f096fdccd2b3637aabe32.tar.gz box64-829c254b1f5e14a48a8f096fdccd2b3637aabe32.zip | |
[LA64_DYNAREC] Added 70-7F Jcc opcodes, refine printer and some fixes too (#1307)
* [LA64_DYNAREC] Added 70-7F Jcc opcodes and some fixes too * [LA64_DYNAREC] Added more instructions to the printer and made the format prettier * Make LBT truely optional * Do not test LBT in CI * Format * Optimize * Fixed printer format * Fixed CLEAR_FLAGS macro * Fixed xMASK * Use $r22 ($sp) in the prolog/epilog for better semantics * Fixed la64_next
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ffbbf458..f2e9afed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: unzip android-ndk-r26b-linux.zip echo "BOX64_COMPILER=$PWD/android-ndk-r26b/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android31-clang" >> $GITHUB_ENV echo "BOX64_PLATFORM_MARCRO=-DANDROID=1 -DARM_DYNAREC=1 -DBAD_SIGNAL=1" >> $GITHUB_ENV - git clone https://github.com/termux/termux-docker.git + git clone https://github.com/termux/termux-docker.git sudo cp -rf termux-docker/system/arm /system sudo chown -R $(whoami):$(whoami) /system sudo chmod 755 -R /system @@ -150,7 +150,6 @@ jobs: INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ QEMU_CPU=rv64,zba=true,zbb=true,zbc=true,zbs=true ctest -j$(nproc) --output-on-failure INTERPRETER=qemu-riscv64-static QEMU_LD_PREFIX=/usr/riscv64-linux-gnu/ QEMU_CPU=rv64,xtheadba=true,xtheadba=true,xtheadbb=true,xtheadbs=true,xtheadcondmov=true,xtheadmemidx=true,xtheadmempair=true,xtheadfmemidx=true,xtheadmac=true,xtheadfmv=true ctest -j$(nproc) --output-on-failure elif [[ ${{ matrix.platform }} == 'LARCH64' ]]; then - INTERPRETER=qemu-loongarch64-static QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu/ ctest -j$(nproc) --output-on-failure INTERPRETER=qemu-loongarch64-static QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu/ BOX64_DYNAREC_LA64NOEXT=1 ctest -j$(nproc) --output-on-failure INTERPRETER=qemu-loongarch64-static QEMU_LD_PREFIX=/usr/loongarch64-linux-gnu/ BOX64_DYNAREC=0 ctest -j$(nproc) --output-on-failure elif [[ ${{ matrix.platform }} == 'ANDROID' ]]; then |