Skip to content
Merged
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: 1 addition & 1 deletion recipes/riscv64-pointer-compression/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ VOLUME /home/node/node.tar.xz

USER node

ENTRYPOINT [ "/home/node/run.sh" ]
ENTRYPOINT [ "/home/node/run.sh" ]
6 changes: 2 additions & 4 deletions recipes/riscv64-pointer-compression/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ export CXX='ccache clang++-19 --target=riscv64-linux-gnu -march=rv64gc'
export CC_host='ccache clang-19'
export CXX_host='ccache clang++-19'

#make -j$(getconf _NPROCESSORS_ONLN) binary \

make -j4 binary \
make -j$(getconf _NPROCESSORS_ONLN) binary V= \
DESTCPU="riscv64" \
ARCH="riscv64" \
VARIATION="" \
VARIATION="pointer-compression" \
DISTTYPE="$disttype" \
CUSTOMTAG="$customtag" \
DATESTRING="$datestring" \
Expand Down