Skip to content

Commit a135aa3

Browse files
committed
rust: sort global Rust flags
Sort the global Rust flags so that it is easier to follow along when we have more, like this patch series does. Reviewed-by: Trevor Gross <[email protected]> Reviewed-by: Alice Ryhl <[email protected]> Tested-by: Gary Guo <[email protected]> Reviewed-by: Gary Guo <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>
1 parent 024f967 commit a135aa3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -446,18 +446,18 @@ KBUILD_USERLDFLAGS := $(USERLDFLAGS)
446446
export rust_common_flags := --edition=2021 \
447447
-Zbinary_dep_depinfo=y \
448448
-Astable_features \
449-
-Dunsafe_op_in_unsafe_fn \
450449
-Dnon_ascii_idents \
450+
-Dunsafe_op_in_unsafe_fn \
451+
-Wmissing_docs \
451452
-Wrust_2018_idioms \
452453
-Wunreachable_pub \
453-
-Wmissing_docs \
454-
-Wrustdoc::missing_crate_level_docs \
455454
-Wclippy::all \
455+
-Wclippy::dbg_macro \
456456
-Wclippy::mut_mut \
457457
-Wclippy::needless_bitwise_bool \
458458
-Wclippy::needless_continue \
459459
-Wclippy::no_mangle_with_rust_abi \
460-
-Wclippy::dbg_macro
460+
-Wrustdoc::missing_crate_level_docs
461461

462462
KBUILD_HOSTCFLAGS := $(KBUILD_USERHOSTCFLAGS) $(HOST_LFS_CFLAGS) \
463463
$(HOSTCFLAGS) -I $(srctree)/scripts/include

0 commit comments

Comments
 (0)