From: Thomas Schwinge Date: Sun, 20 Nov 2022 23:01:20 +0000 (+0100) Subject: 'rust-warn += -Wno-unused-parameter' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=caca467268ad8c6a3c2177b9d3ac50d5299263b2;p=thirdparty%2Fgcc.git 'rust-warn += -Wno-unused-parameter' (cherry picked from #1670 commit 7ceb5e29c80c1fc91e208ae6955a22b0b73a2e6b) --- diff --git a/gcc/rust/Make-lang.in b/gcc/rust/Make-lang.in index 21d7d4eef716..36f068818468 100644 --- a/gcc/rust/Make-lang.in +++ b/gcc/rust/Make-lang.in @@ -24,6 +24,9 @@ # Use strict warnings for this front end. rust-warn = $(STRICT_WARN) +# ..., with the exception of '-Wunused-parameter'; waiting for +# "bootstrap build failure". +rust-warn += -Wno-unused-parameter # Installation name. Useful for cross compilers and used during install. GCCRS_INSTALL_NAME := $(shell echo gccrs|sed '$(program_transform_name)')