[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 07/16] rust: use native Meson support for clippy and rustdoc
From: |
Paolo Bonzini |
Subject: |
[PULL 07/16] rust: use native Meson support for clippy and rustdoc |
Date: |
Tue, 3 Jun 2025 23:45:14 +0200 |
Meson has support for invoking clippy and rustdoc on all crates (1.7.0 for
clippy, 1.8.0 for rustdoc). Use it instead of the homegrown version; this
requires disabling the multiple_crate_versions lint (the only one that was
enabled from the "cargo" group)---which was not particularly useful anyway
because all dependencies are converted by hand into Meson subprojects.
rustfmt is still not supported.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
docs/devel/rust.rst | 10 +++++++---
meson.build | 2 +-
rust/clippy.toml => clippy.toml | 2 +-
rust/Cargo.toml | 1 -
rust/meson.build | 12 ------------
scripts/rust/rustc_args.py | 5 +----
6 files changed, 10 insertions(+), 22 deletions(-)
rename rust/clippy.toml => clippy.toml (55%)
diff --git a/docs/devel/rust.rst b/docs/devel/rust.rst
index f66f2bef60b..34d9c7945b7 100644
--- a/docs/devel/rust.rst
+++ b/docs/devel/rust.rst
@@ -37,12 +37,16 @@ output directory (typically ``rust/target/``). A vanilla
invocation
of Cargo will complain that it cannot find the generated sources,
which can be fixed in different ways:
-* by using special shorthand targets in the QEMU build directory::
+* by using Makefile targets, provided by Meson, that run ``clippy`` or
+ ``rustdoc``:
make clippy
- make rustfmt
make rustdoc
+A target for ``rustfmt`` is also declared in ``rust/meson.build``:
+
+ make rustfmt
+
* by invoking ``cargo`` through the Meson `development environment`__
feature::
@@ -50,7 +54,7 @@ which can be fixed in different ways:
pyvenv/bin/meson devenv -w ../rust cargo fmt
If you are going to use ``cargo`` repeatedly, ``pyvenv/bin/meson devenv``
- will enter a shell where commands like ``cargo clippy`` just work.
+ will enter a shell where commands like ``cargo fmt`` just work.
__ https://mesonbuild.com/Commands.html#devenv
diff --git a/meson.build b/meson.build
index e85b358d637..651bd4f7275 100644
--- a/meson.build
+++ b/meson.build
@@ -4404,7 +4404,7 @@ foreach target : target_dirs
build_by_default: true,
build_always_stale: true)
rlib = static_library('rust_' + target.underscorify(),
- rlib_rs,
+ structured_sources([], {'.': rlib_rs}),
dependencies: target_rust.dependencies(),
override_options: ['rust_std=2021',
'build.rust_std=2021'],
rust_abi: 'c')
diff --git a/rust/clippy.toml b/clippy.toml
similarity index 55%
rename from rust/clippy.toml
rename to clippy.toml
index 58a62c0e632..90161729838 100644
--- a/rust/clippy.toml
+++ b/clippy.toml
@@ -1,3 +1,3 @@
-doc-valid-idents = ["PrimeCell", ".."]
+doc-valid-idents = ["IrDA", "PrimeCell", ".."]
allow-mixed-uninlined-format-args = false
msrv = "1.77.0"
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index d9faeecb10b..a00b8ad0bcd 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -63,7 +63,6 @@ ignored_unit_patterns = "deny"
implicit_clone = "deny"
macro_use_imports = "deny"
missing_safety_doc = "deny"
-multiple_crate_versions = "deny"
mut_mut = "deny"
needless_bitwise_bool = "deny"
needless_pass_by_ref_mut = "deny"
diff --git a/rust/meson.build b/rust/meson.build
index 801f4374dfa..afce62f4772 100644
--- a/rust/meson.build
+++ b/rust/meson.build
@@ -24,21 +24,9 @@ subdir('hw')
cargo = find_program('cargo', required: false)
if cargo.found()
- run_target('clippy',
- command: [config_host['MESON'], 'devenv',
- '--workdir', '@CURRENT_SOURCE_DIR@',
- cargo, 'clippy', '--tests'],
- depends: bindings_rs)
-
run_target('rustfmt',
command: [config_host['MESON'], 'devenv',
'--workdir', '@CURRENT_SOURCE_DIR@',
cargo, 'fmt'],
depends: bindings_rs)
-
- run_target('rustdoc',
- command: [config_host['MESON'], 'devenv',
- '--workdir', '@CURRENT_SOURCE_DIR@',
- cargo, 'doc', '--no-deps', '--document-private-items'],
- depends: bindings_rs)
endif
diff --git a/scripts/rust/rustc_args.py b/scripts/rust/rustc_args.py
index 2633157df2a..63b0748e0d3 100644
--- a/scripts/rust/rustc_args.py
+++ b/scripts/rust/rustc_args.py
@@ -104,10 +104,7 @@ def generate_lint_flags(cargo_toml: CargoTOML,
strict_lints: bool) -> Iterable[s
else:
raise Exception(f"invalid level {level} for {prefix}{lint}")
- # This may change if QEMU ever invokes clippy-driver or rustdoc by
- # hand. For now, check the syntax but do not add non-rustc lints
to
- # the command line.
- if k == "rust" and not (strict_lints and lint in STRICT_LINTS):
+ if not (strict_lints and lint in STRICT_LINTS):
lint_list.append(LintFlag(flags=[flag, prefix + lint],
priority=priority))
if strict_lints:
--
2.49.0
- [PULL 00/16] rust, i386 changes for 2025-06-03, Paolo Bonzini, 2025/06/03
- [PULL 01/16] rust: bindings: allow ptr_offset_with_cast, Paolo Bonzini, 2025/06/03
- [PULL 03/16] rust: use "objects" for Rust executables as well, Paolo Bonzini, 2025/06/03
- [PULL 04/16] build, dockerfiles: add support for detecting rustdoc, Paolo Bonzini, 2025/06/03
- [PULL 06/16] rust: cell: remove support for running doctests with "cargo test --doc", Paolo Bonzini, 2025/06/03
- [PULL 07/16] rust: use native Meson support for clippy and rustdoc,
Paolo Bonzini <=
- [PULL 05/16] rust: add qemu-api doctests to "meson test", Paolo Bonzini, 2025/06/03
- [PULL 09/16] target/i386: Add a new CPU feature word for CPUID.7.1.ECX, Paolo Bonzini, 2025/06/03
- [PULL 08/16] target/i386: Remove FRED dependency on WRMSRNS, Paolo Bonzini, 2025/06/03
- [PULL 10/16] target/i386: Add the immediate form MSR access instruction support, Paolo Bonzini, 2025/06/03
- [PULL 11/16] meson: use config_base_arch for target libraries, Paolo Bonzini, 2025/06/03
- [PULL 13/16] i386/tdvf: Fix build on 32-bit host, Paolo Bonzini, 2025/06/03
- [PULL 12/16] i386/tdx: Fix build on 32-bit host, Paolo Bonzini, 2025/06/03
- [PULL 14/16] rust: add "bits", a custom bitflags implementation, Paolo Bonzini, 2025/06/03
- [PULL 02/16] meson: update to version 1.8.1, Paolo Bonzini, 2025/06/03
- [PULL 15/16] rust: pl011: use the bits macro, Paolo Bonzini, 2025/06/03