Skip to content

Commit

Permalink
Change toolchain from SiFive to xPack
Browse files Browse the repository at this point in the history
  • Loading branch information
lupyuen authored Oct 2, 2024
1 parent b52654b commit 0ac6964
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ox64-special.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -117,26 +117,26 @@ 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 \
>nuttx.S \
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 \
>init.S \
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 \
Expand Down

0 comments on commit 0ac6964

Please sign in to comment.