Skip to content

Commit

Permalink
adds arm7 and riskv targets
Browse files Browse the repository at this point in the history
  • Loading branch information
gbin committed Jun 3, 2024
1 parent 05e97f7 commit e6022b3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arm7.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
cross build --target armv7-unknown-linux-gnueabihf --release
find target/armv7-unknown-linux-gnueabihf/release -maxdepth 1 -type f -executable -exec scp -r {} gbin@copper7:copper/ \;
scp copper_derive_test/copperconfig.ron gbin@copper7:copper

5 changes: 5 additions & 0 deletions riskv.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
cross build --target riscv64gc-unknown-linux-gnu --release
find target/riscv64gc-unknown-linux-gnu/release -maxdepth 1 -type f -executable -exec scp -r {} gbin@copperv:copper/ \;
scp copper_derive_test/copperconfig.ron gbin@copperv:copper

0 comments on commit e6022b3

Please sign in to comment.