From 503d94ace2a59fe8978e9ec62d603039013aa838 Mon Sep 17 00:00:00 2001 From: TianlongLiang <111852609+TianlongLiang@users.noreply.github.com> Date: Thu, 16 Nov 2023 18:32:28 +0800 Subject: [PATCH] Enable more LLVM backends for the release wamrc binary (#2778) As mentioned in https://github.com/bytecodealliance/wasm-micro-runtime/issues/2504, the current release `wamrc` only has X86 target enabled. This PR enables more targets for release `wamrc`, including AArch64, ARM, Mips and RISCV. --- .github/workflows/release_process.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_process.yml b/.github/workflows/release_process.yml index 4188b4d40..ef722acdb 100644 --- a/.github/workflows/release_process.yml +++ b/.github/workflows/release_process.yml @@ -56,21 +56,21 @@ jobs: uses: ./.github/workflows/build_llvm_libraries.yml with: os: "ubuntu-20.04" - arch: "X86" + arch: "AArch64 ARM Mips RISCV X86" build_llvm_libraries_on_ubuntu_2204: needs: [create_tag, create_release] uses: ./.github/workflows/build_llvm_libraries.yml with: os: "ubuntu-22.04" - arch: "X86" + arch: "AArch64 ARM Mips RISCV X86" build_llvm_libraries_on_macos: needs: [create_tag, create_release] uses: ./.github/workflows/build_llvm_libraries.yml with: os: "macos-latest" - arch: "X86" + arch: "AArch64 ARM Mips RISCV X86" # # WAMRC