mirror of
https://github.com/lupyuen/nuttx-star64.git
synced 2025-01-12 20:58:32 +08:00
Change toolchain from SiFive to xPack
This commit is contained in:
parent
46a23c8c56
commit
cda11c6d91
1 changed files with 6 additions and 6 deletions
12
.github/workflows/star64.yml
vendored
12
.github/workflows/star64.yml
vendored
|
@ -62,7 +62,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 star64:nsh
|
||||
|
@ -74,7 +74,7 @@ jobs:
|
|||
make
|
||||
|
||||
## Export the Binary Image to nuttx.bin
|
||||
riscv64-unknown-elf-objcopy \
|
||||
riscv-none-elf-objcopy \
|
||||
-O binary \
|
||||
nuttx \
|
||||
nuttx.bin
|
||||
|
@ -95,10 +95,10 @@ jobs:
|
|||
mkimage -f nuttx.its -A riscv -O linux -T flat_dt starfiveu.fit
|
||||
|
||||
## 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 \
|
||||
|
@ -106,7 +106,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 \
|
||||
|
@ -114,7 +114,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 \
|
||||
|
|
Loading…
Reference in a new issue