specify correct package names.

This commit is contained in:
jasonwitty 2025-11-21 16:11:27 -08:00
parent 31c2b59fd4
commit 7fe302a3e2

View File

@ -52,19 +52,19 @@ jobs:
if: matrix.target == 'aarch64-unknown-linux-gnu' if: matrix.target == 'aarch64-unknown-linux-gnu'
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross sudo apt-get install -y libdrm-dev libdrm-amdgpu1
- name: Install cross-compilation tools (ARMhf) - name: Install cross-compilation tools (ARMhf)
if: matrix.target == 'armv7-unknown-linux-gnueabihf' if: matrix.target == 'armv7-unknown-linux-gnueabihf'
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross sudo apt-get install -y libdrm-dev libdrm-amdgpu1
- name: Install cross-compilation tools (RISC-V) - name: Install cross-compilation tools (RISC-V)
if: matrix.target == 'riscv64gc-unknown-linux-gnu' if: matrix.target == 'riscv64gc-unknown-linux-gnu'
run: | run: |
sudo apt-get update sudo apt-get update
sudo apt-get install -y gcc-riscv64-linux-gnu libc6-dev-riscv64-cross sudo apt-get install -y libdrm-dev libdrm-amdgpu1
- name: Configure cross-compilation (ARM64) - name: Configure cross-compilation (ARM64)
if: matrix.target == 'aarch64-unknown-linux-gnu' if: matrix.target == 'aarch64-unknown-linux-gnu'