Skip to content

Commit 0ac6964

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

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ox64-special.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
cat nuttx.hash
8383
8484
## Show the GCC version
85-
riscv64-unknown-elf-gcc -v
85+
riscv-none-elf-gcc -v
8686
8787
## Configure the build
8888
tools/configure.sh ox64:nsh
@@ -94,7 +94,7 @@ jobs:
9494
make
9595
9696
## Export the Binary Image to nuttx.bin
97-
riscv64-unknown-elf-objcopy \
97+
riscv-none-elf-objcopy \
9898
-O binary \
9999
nuttx \
100100
nuttx.bin
@@ -117,26 +117,26 @@ jobs:
117117
>Image
118118
119119
## Show the size
120-
riscv64-unknown-elf-size nuttx
120+
riscv-none-elf-size nuttx
121121
122122
## Dump the disassembly to nuttx.S
123-
riscv64-unknown-elf-objdump \
123+
riscv-none-elf-objdump \
124124
--syms --source --reloc --demangle --line-numbers --wide \
125125
--debugging \
126126
nuttx \
127127
>nuttx.S \
128128
2>&1
129129
130130
## Dump the init disassembly to init.S
131-
riscv64-unknown-elf-objdump \
131+
riscv-none-elf-objdump \
132132
--syms --source --reloc --demangle --line-numbers --wide \
133133
--debugging \
134134
../apps/bin/init \
135135
>init.S \
136136
2>&1
137137
138138
## Dump the hello disassembly to hello.S
139-
riscv64-unknown-elf-objdump \
139+
riscv-none-elf-objdump \
140140
--syms --source --reloc --demangle --line-numbers --wide \
141141
--debugging \
142142
../apps/bin/hello \

0 commit comments

Comments
 (0)