diff --git a/recipes/riscv64-pointer-compression/Dockerfile b/recipes/riscv64-pointer-compression/Dockerfile index 6b49cf3..acdd529 100644 --- a/recipes/riscv64-pointer-compression/Dockerfile +++ b/recipes/riscv64-pointer-compression/Dockerfile @@ -28,4 +28,4 @@ VOLUME /home/node/node.tar.xz USER node - ENTRYPOINT [ "/home/node/run.sh" ] +ENTRYPOINT [ "/home/node/run.sh" ] diff --git a/recipes/riscv64-pointer-compression/run.sh b/recipes/riscv64-pointer-compression/run.sh index 6866c02..328564a 100755 --- a/recipes/riscv64-pointer-compression/run.sh +++ b/recipes/riscv64-pointer-compression/run.sh @@ -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" \