copy the rest of the logic

This commit is contained in:
2026-03-08 18:00:40 +01:00
parent 3f62e1ec2b
commit 1705cbceeb
3 changed files with 820 additions and 9 deletions

View File

@@ -17,7 +17,7 @@ if command -v pkg-config >/dev/null; then
LIBELF_FLAGS=$(pkg-config --cflags --libs libelf 2>/dev/null)
if [ $? -eq 0 ]; then
echo "building riscv64..."
c++ $COMMON -o riscv64 riscv64.cc $LIBELF_FLAGS
c++ -std=c++20 $COMMON -o riscv64 riscv64.cc $LIBELF_FLAGS
else
echo "libelf not found - skipping riscv64..."
fi