summaryrefslogtreecommitdiff
path: root/scripts/generate_rust_analyzer.py
diff options
context:
space:
mode:
authorMiguel Ojeda <ojeda@kernel.org>2025-11-24 16:18:26 +0100
committerMiguel Ojeda <ojeda@kernel.org>2025-11-24 17:15:43 +0100
commit88de91cc1ce7b3069ccabc1a5fbe16d41c663093 (patch)
tree6ce78ce2d363c4da009d8157f4834708b60de189 /scripts/generate_rust_analyzer.py
parent51177f023ce82c6d7d59bc5c64d94eea317d445d (diff)
rust: quote: enable support in kbuild
With all the new files in place and ready from the new crate, enable the support for it in the build system. Reviewed-by: Alice Ryhl <aliceryhl@google.com> Reviewed-by: Gary Guo <gary@garyguo.net> Tested-by: Gary Guo <gary@garyguo.net> Tested-by: Jesung Yang <y.j3ms.n@gmail.com> Link: https://patch.msgid.link/20251124151837.2184382-15-ojeda@kernel.org Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
-rwxr-xr-xscripts/generate_rust_analyzer.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/generate_rust_analyzer.py b/scripts/generate_rust_analyzer.py
index 00c6b7cc94b7..4faf153ed2ee 100755
--- a/scripts/generate_rust_analyzer.py
+++ b/scripts/generate_rust_analyzer.py
@@ -94,6 +94,13 @@ def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs, core_edit
)
append_crate(
+ "quote",
+ srctree / "rust" / "quote" / "lib.rs",
+ ["alloc", "proc_macro", "proc_macro2"],
+ cfg=crates_cfgs["quote"],
+ )
+
+ append_crate(
"macros",
srctree / "rust" / "macros" / "lib.rs",
["std", "proc_macro"],