Skip to content

Commit

Permalink
feat: support RISC-V 64
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
  • Loading branch information
shanduur committed May 31, 2024
1 parent f9ce6f8 commit f7949eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ mkdir -p bin
if [ ${ARCH} = armv7l ] || [ ${ARCH} = arm ]; then
export GOARCH="arm"
export GOARM="7"
elif [ ${ARCH} = riscv64 ]; then
export GOARCH="riscv64"
fi

if [ "$(uname)" = "Linux" ]; then
Expand Down

0 comments on commit f7949eb

Please sign in to comment.