From a420004f197717dcf0be739cf6684de253c4e490 Mon Sep 17 00:00:00 2001 From: Han Dai Date: Wed, 29 May 2024 21:26:18 -0400 Subject: [PATCH] use libc6-dev-*-cross so it include headers --- .github/actions/install-patcherex2/action.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/actions/install-patcherex2/action.yml b/.github/actions/install-patcherex2/action.yml index 8c548b8..ccc0b20 100644 --- a/.github/actions/install-patcherex2/action.yml +++ b/.github/actions/install-patcherex2/action.yml @@ -11,13 +11,14 @@ runs: run: | sudo apt-get update sudo apt-get install -y \ - qemu-user \ clang-15 lld-15 \ - libc6-armhf-cross libc6-arm64-cross \ - libc6-mips-cross libc6-mips64-cross \ - libc6-powerpc-cross libc6-powerpc-ppc64-cross \ - libc6-mipsel-cross libc6-mips64el-cross \ - libc6-ppc64el-cross + qemu-user \ + gcc-multilib \ + libc6-dev-armhf-cross libc6-dev-arm64-cross \ + libc6-dev-mips-cross libc6-dev-mips64-cross \ + libc6-dev-powerpc-cross libc6-dev-ppc64-cross \ + libc6-dev-mipsel-cross libc6-dev-mips64el-cross \ + libc6-dev-ppc64el-cross \ - name: Install clang-19 lld-19 shell: bash run: |