From 0ac6964d0209037a5c87389d6889f3062c0e2cc6 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Wed, 2 Oct 2024 09:39:55 +0800 Subject: [PATCH] Change toolchain from SiFive to xPack --- .github/workflows/ox64-special.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ox64-special.yml b/.github/workflows/ox64-special.yml index 16c0780..90098fb 100644 --- a/.github/workflows/ox64-special.yml +++ b/.github/workflows/ox64-special.yml @@ -82,7 +82,7 @@ jobs: cat nuttx.hash ## Show the GCC version - riscv64-unknown-elf-gcc -v + riscv-none-elf-gcc -v ## Configure the build tools/configure.sh ox64:nsh @@ -94,7 +94,7 @@ jobs: make ## Export the Binary Image to nuttx.bin - riscv64-unknown-elf-objcopy \ + riscv-none-elf-objcopy \ -O binary \ nuttx \ nuttx.bin @@ -117,10 +117,10 @@ jobs: >Image ## Show the size - riscv64-unknown-elf-size nuttx + riscv-none-elf-size nuttx ## Dump the disassembly to nuttx.S - riscv64-unknown-elf-objdump \ + riscv-none-elf-objdump \ --syms --source --reloc --demangle --line-numbers --wide \ --debugging \ nuttx \ @@ -128,7 +128,7 @@ jobs: 2>&1 ## Dump the init disassembly to init.S - riscv64-unknown-elf-objdump \ + riscv-none-elf-objdump \ --syms --source --reloc --demangle --line-numbers --wide \ --debugging \ ../apps/bin/init \ @@ -136,7 +136,7 @@ jobs: 2>&1 ## Dump the hello disassembly to hello.S - riscv64-unknown-elf-objdump \ + riscv-none-elf-objdump \ --syms --source --reloc --demangle --line-numbers --wide \ --debugging \ ../apps/bin/hello \