File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ New-Item - Force - Name bin - Type Directory
2
+
3
+ # remove existing blobs because otherwise this will append object files to the old blobs
4
+ Remove-Item - Force bin/* .a
5
+
6
+ $crate = " riscv"
7
+
8
+ riscv64- unknown- elf- gcc - c - mabi= ilp32 - march= rv32i asm.S - o bin/ $crate.o
9
+ riscv64- unknown- elf- ar crs bin/ riscv32i- unknown- none- elf.a bin/ $crate.o
10
+
11
+ riscv64- unknown- elf- gcc - c - mabi= ilp32 - march= rv32imc asm.S - o bin/ $crate.o
12
+ riscv64- unknown- elf- ar crs bin/ riscv32imac- unknown- none- elf.a bin/ $crate.o
13
+ riscv64- unknown- elf- ar crs bin/ riscv32imc- unknown- none- elf.a bin/ $crate.o
14
+
15
+ riscv64- unknown- elf- gcc - c - mabi= lp64 - march= rv64imac asm.S - o bin/ $crate.o
16
+ riscv64- unknown- elf- ar crs bin/ riscv64imac- unknown- none- elf.a bin/ $crate.o
17
+ riscv64- unknown- elf- ar crs bin/ riscv64gc- unknown- none- elf.a bin/ $crate.o
18
+
19
+ Remove-Item bin/ $crate.o
You can’t perform that action at this time.
0 commit comments