Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions recipes/riscv64/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export CC_host="ccache gcc-13"
export CXX_host="ccache g++-13"
export CC="ccache /usr/bin/riscv64-linux-gnu-gcc-14"
export CXX="ccache /usr/bin/riscv64-linux-gnu-g++-14"
# Required to allow GCC to be able to build on RISC-V
export CXXFLAGS="-DHWY_BROKEN_EMU128=0 -DHWY_BROKEN_TARGETS=HWY_RVV"

make -j$(getconf _NPROCESSORS_ONLN) binary V= \
DESTCPU="riscv64" \
Expand Down
2 changes: 1 addition & 1 deletion recipes/riscv64/should-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ fullversion=$2

decode "$fullversion"

test "$major" -ge "17" && test "$major" -ne 26
test "$major" -ge "17" && test "$major" -le 26