diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-19 09:35:44 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-09-22 17:17:18 +0200 |
| commit | fcbe1080a4cb16767cdda788504f9793cbbe0532 (patch) | |
| tree | 1b23bcac3a909e065b7adab7d19ec977a632ce05 /docs/devel/rust.rst | |
| parent | ab8008b231e758e03c87c1c483c03afdd9c02e19 (diff) | |
| download | focaccia-qemu-fcbe1080a4cb16767cdda788504f9793cbbe0532.tar.gz focaccia-qemu-fcbe1080a4cb16767cdda788504f9793cbbe0532.zip | |
docs: use the pyvenv version of Meson
The version in the system might be too old for QEMU; this will be especially true if Rust is going to be enabled by default. Adjust the docs to suggest using pyvenv/bin/meson, which is in fact what the "make" wrappers will be running internally. Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/devel/rust.rst')
| -rw-r--r-- | docs/devel/rust.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/rust.rst b/docs/devel/rust.rst index 13a20e86a1..2f0ab2e282 100644 --- a/docs/devel/rust.rst +++ b/docs/devel/rust.rst @@ -66,7 +66,7 @@ __ https://mesonbuild.com/Commands.html#devenv As shown above, you can use the ``--tests`` option as usual to operate on test code. Note however that you cannot *build* or run tests via ``cargo``, because they need support C code from QEMU that Cargo does not know about. Tests can -be run via ``meson test`` or ``make``:: +be run via Meson (``pyvenv/bin/meson test``) or ``make``:: make check-rust |