Skip to content

Commit b52654b

Browse files
authored
Change toolchain from SiFive to xPack
1 parent 5732778 commit b52654b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ox64.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
cat nuttx.hash
6363
6464
## Show the GCC version
65-
riscv64-unknown-elf-gcc -v
65+
riscv-none-elf-gcc -v
6666
6767
## Configure the build
6868
tools/configure.sh ox64:nsh
@@ -74,7 +74,7 @@ jobs:
7474
make
7575
7676
## Export the Binary Image to nuttx.bin
77-
riscv64-unknown-elf-objcopy \
77+
riscv-none-elf-objcopy \
7878
-O binary \
7979
nuttx \
8080
nuttx.bin
@@ -97,26 +97,26 @@ jobs:
9797
>Image
9898
9999
## Show the size
100-
riscv64-unknown-elf-size nuttx
100+
riscv-none-elf-size nuttx
101101
102102
## Dump the disassembly to nuttx.S
103-
riscv64-unknown-elf-objdump \
103+
riscv-none-elf-objdump \
104104
--syms --source --reloc --demangle --line-numbers --wide \
105105
--debugging \
106106
nuttx \
107107
>nuttx.S \
108108
2>&1
109109
110110
## Dump the init disassembly to init.S
111-
riscv64-unknown-elf-objdump \
111+
riscv-none-elf-objdump \
112112
--syms --source --reloc --demangle --line-numbers --wide \
113113
--debugging \
114114
../apps/bin/init \
115115
>init.S \
116116
2>&1
117117
118118
## Dump the hello disassembly to hello.S
119-
riscv64-unknown-elf-objdump \
119+
riscv-none-elf-objdump \
120120
--syms --source --reloc --demangle --line-numbers --wide \
121121
--debugging \
122122
../apps/bin/hello \

0 commit comments

Comments
 (0)