diff options
author | 2024-07-04 16:00:24 +0200 | |
---|---|---|
committer | 2024-07-04 16:00:24 +0200 | |
commit | 0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99 (patch) | |
tree | ba0443b74f063471c5d81d85e795e04e7e1dc79c /scripts/generate_rust_analyzer.py | |
parent | perf: Make rb_alloc_aux() return an error immediately if nr_pages <= 0 (diff) | |
parent | x86/cpu/intel: Drop stray FAM6 check with new Intel CPU model defines (diff) | |
download | wireguard-linux-0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99.tar.xz wireguard-linux-0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99.zip |
Merge branch 'tip/x86/cpu'
The Lunarlake patches rely on the new VFM stuff.
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Diffstat (limited to '')
-rwxr-xr-x | scripts/generate_rust_analyzer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_rust_analyzer.py b/scripts/generate_rust_analyzer.py index fc52bc41d3e7..f270c7b0cf34 100755 --- a/scripts/generate_rust_analyzer.py +++ b/scripts/generate_rust_analyzer.py @@ -66,7 +66,7 @@ def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs): append_crate( "alloc", - srctree / "rust" / "alloc" / "lib.rs", + sysroot_src / "alloc" / "src" / "lib.rs", ["core", "compiler_builtins"], cfg=crates_cfgs.get("alloc", []), ) |