qemu: Enable loading natmods on RV64.

This commit lets the QEMU port's VIRT_RV64 board load and run native
modules, via the appropriate configuration changes in mpconfigport.h.

Now the CI test job for the QEMU/RV64 port can also run natmods and see
whether they actually work, so the CI tasks script has been updated to
bring RV64 to parity with RV32 as far as CI checks go.

Documentation was also updated, since now all supported boards in the
QEMU port should be able to run natmod tests.

Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
This commit is contained in:
Alessandro Gatti
2025-11-17 03:57:05 +01:00
parent e939d3ec76
commit 9af103300f
3 changed files with 10 additions and 4 deletions

View File

@@ -439,8 +439,9 @@ function ci_qemu_build_rv64 {
make ${MAKEOPTS} -C ports/qemu BOARD=VIRT_RV64 submodules
make ${MAKEOPTS} -C ports/qemu BOARD=VIRT_RV64 test
# Test building native .mpy with rv64imc architecture.
# Test building and running native .mpy with rv64imc architecture.
ci_native_mpy_modules_build rv64imc
make ${MAKEOPTS} -C ports/qemu BOARD=VIRT_RV64 test_natmod
}
########################################################################################