Skip to content

Commit

Permalink
lib: sh-test-lib: Add riscv64 support
Browse files Browse the repository at this point in the history
Add the support of the riscv64 platform by adding the skipgen
executable for riscv64.
The binary has been generated following the "Releasing" instructions
at https://github.com/Linaro/skipgen using go version go1.18.1
and goreleaser. The difference is that the upx tool to compress
the executable has not been used as it does support the riscv64
architecture at the moment.

Signed-off-by: Nicolas Belin <[email protected]>
  • Loading branch information
nkbelin authored and roxell committed Oct 19, 2022
1 parent daf09e2 commit ecf3bb5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 0 deletions.
Binary file added automated/bin/riscv64/skipgen
Binary file not shown.
1 change: 1 addition & 0 deletions automated/lib/sh-test-lib
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ detect_abi() {
#aarch64_be) abi="arm64be" ;;
i*86) abi="i386" ;;
x86_64) abi="x86_64" ;;
riscv64) abi="riscv64" ;;
*) error_msg "Unsupported architecture: ${abi}" ;;
esac
}
Expand Down

0 comments on commit ecf3bb5

Please sign in to comment.