bin: update name of object file
This minor update simply changes the name of the object file within the library. It should have no user-facing changes. Signed-off-by: Sean Cross <sean@xobs.io>
This commit is contained in:
parent
5121f28fde
commit
8bc0b06f95
|
@ -3,7 +3,7 @@ New-Item -Force -Name bin -Type Directory
|
||||||
# remove existing blobs because otherwise this will append object files to the old blobs
|
# remove existing blobs because otherwise this will append object files to the old blobs
|
||||||
Remove-Item -Force bin/*.a
|
Remove-Item -Force bin/*.a
|
||||||
|
|
||||||
$crate = "xous-riscv"
|
$crate = "vexriscv"
|
||||||
|
|
||||||
riscv64-unknown-elf-gcc -c -mabi=ilp32 -march=rv32imac asm.S -o bin/$crate.o
|
riscv64-unknown-elf-gcc -c -mabi=ilp32 -march=rv32imac asm.S -o bin/$crate.o
|
||||||
riscv64-unknown-elf-ar crs bin/riscv32imac-unknown-none-elf.a bin/$crate.o
|
riscv64-unknown-elf-ar crs bin/riscv32imac-unknown-none-elf.a bin/$crate.o
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
set -euxo pipefail
|
set -euxo pipefail
|
||||||
|
|
||||||
crate=riscv-rt
|
crate=vexriscv
|
||||||
|
|
||||||
# remove existing blobs because otherwise this will append object files to the old blobs
|
# remove existing blobs because otherwise this will append object files to the old blobs
|
||||||
rm -f bin/*.a
|
rm -f bin/*.a
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue