From 1a8f132c13dc7e1e270f9c2751e21734bc8b9a67 Mon Sep 17 00:00:00 2001 From: Dummyc0m Date: Sat, 2 Nov 2024 18:02:54 -0700 Subject: [PATCH] switch the github workflow to use riscv32imc-unknown-none-elf --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 533dc35..4297c42 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -17,6 +17,6 @@ jobs: steps: - uses: actions/checkout@v4 - name: Prepare Rust Target - run: rustup target add riscv32imac-unknown-none-elf + run: rustup target add riscv32imc-unknown-none-elf - name: Build - run: cargo build --all --target riscv32imac-unknown-none-elf + run: cargo build --all --target riscv32imc-unknown-none-elf