Kbuild fixes for v6.5
- Fix stale help text in gconfig - Support *.S files in compile_commands.json - Flatten KBUILD_CFLAGS - Fix external module builds with Rust so that temporary files are created in the modules directories instead of the kernel tree -----BEGIN PGP SIGNATURE----- iQJJBAABCgAzFiEEbmPs18K1szRHjPqEPYsBB53g2wYFAmS9dUcVHG1hc2FoaXJv eUBrZXJuZWwub3JnAAoJED2LAQed4NsGBKAP/iOjCOxcoS9j2tk1/ht4FD6ECf9d K56II3l8/Vgj8yyLYWqMAJkwfv3QL5H6rD2Ewf1Fiy34GFX3bukeYezKnS6WIkFe Vbc0aUTXoOTvQ2pSHq46SPflr7EFps0h5mOx0o68bRfX+IbGyDIzqvCWZ+RHiSVR z97J80vxOKFkTZB38l+OLNbFwCyEw9oiH9vrzwSG3ixmdXwFYBCPxtp2Rb+9bclH Tq/VWUCtkn5LjmKCMkDYDHcQLVZNwY+UVYc4yVhjBklDZYn/xX/OjNDlEt5llOvV A0d8Gg8+skeI/4OdWHGWJFy0G5NHg0+API+uN83qiTUn8TmV1SAuRaDIOF9D7GFv zg1ubDjaZ5yvTT6qdsmipOJvwTW1wwv0Ocqy6I7bpxOzn7E9ZaxV2KyhCnUF4E9p 9LdBcfXn+oir86OygcSN2rJWZnK8Ux+iwogItAVSBasze02v4AySc77gvCgHRPvp 6kDUM5rgm8s0E1WY8iRGsGXf742/6NkFaf2pO7fKXc3fHm5DeN9EMy2eicF6A7x6 +yypfOlo/+v452fDRvAY6FLFDnloNz20lV0/OJiPB45Qgkr7LgjGJZ4d6d+0bZWF hbBSW+r1Dj46G33KcSrLBvSaXCxrkNNd4L8G8wTEYDP57qo+nwDABqLPGsKrg4DU qpYo5vLJpduOOaId =BmWs -----END PGP SIGNATURE----- Merge tag 'kbuild-fixes-v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild Pull Kbuild fixes from Masahiro Yamada: - Fix stale help text in gconfig - Support *.S files in compile_commands.json - Flatten KBUILD_CFLAGS - Fix external module builds with Rust so that temporary files are created in the modules directories instead of the kernel tree * tag 'kbuild-fixes-v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: kbuild: rust: avoid creating temporary files kbuild: flatten KBUILD_CFLAGS gen_compile_commands: add assembly files to compilation database kconfig: gconfig: correct program name in help text kconfig: gconfig: drop the Show Debug Info help text
This commit is contained in:
commit
12a5336ca3
22
Makefile
22
Makefile
@ -555,11 +555,23 @@ LINUXINCLUDE := \
|
|||||||
$(USERINCLUDE)
|
$(USERINCLUDE)
|
||||||
|
|
||||||
KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE
|
KBUILD_AFLAGS := -D__ASSEMBLY__ -fno-PIE
|
||||||
KBUILD_CFLAGS := -Wall -Wundef -Werror=strict-prototypes -Wno-trigraphs \
|
|
||||||
-fno-strict-aliasing -fno-common -fshort-wchar -fno-PIE \
|
KBUILD_CFLAGS :=
|
||||||
-Werror=implicit-function-declaration -Werror=implicit-int \
|
KBUILD_CFLAGS += -std=gnu11
|
||||||
-Werror=return-type -Wno-format-security -funsigned-char \
|
KBUILD_CFLAGS += -fshort-wchar
|
||||||
-std=gnu11
|
KBUILD_CFLAGS += -funsigned-char
|
||||||
|
KBUILD_CFLAGS += -fno-common
|
||||||
|
KBUILD_CFLAGS += -fno-PIE
|
||||||
|
KBUILD_CFLAGS += -fno-strict-aliasing
|
||||||
|
KBUILD_CFLAGS += -Wall
|
||||||
|
KBUILD_CFLAGS += -Wundef
|
||||||
|
KBUILD_CFLAGS += -Werror=implicit-function-declaration
|
||||||
|
KBUILD_CFLAGS += -Werror=implicit-int
|
||||||
|
KBUILD_CFLAGS += -Werror=return-type
|
||||||
|
KBUILD_CFLAGS += -Werror=strict-prototypes
|
||||||
|
KBUILD_CFLAGS += -Wno-format-security
|
||||||
|
KBUILD_CFLAGS += -Wno-trigraphs
|
||||||
|
|
||||||
KBUILD_CPPFLAGS := -D__KERNEL__
|
KBUILD_CPPFLAGS := -D__KERNEL__
|
||||||
KBUILD_RUSTFLAGS := $(rust_common_flags) \
|
KBUILD_RUSTFLAGS := $(rust_common_flags) \
|
||||||
--target=$(objtree)/scripts/target.json \
|
--target=$(objtree)/scripts/target.json \
|
||||||
|
@ -264,6 +264,9 @@ $(obj)/%.lst: $(src)/%.c FORCE
|
|||||||
|
|
||||||
rust_allowed_features := new_uninit
|
rust_allowed_features := new_uninit
|
||||||
|
|
||||||
|
# `--out-dir` is required to avoid temporaries being created by `rustc` in the
|
||||||
|
# current working directory, which may be not accessible in the out-of-tree
|
||||||
|
# modules case.
|
||||||
rust_common_cmd = \
|
rust_common_cmd = \
|
||||||
RUST_MODFILE=$(modfile) $(RUSTC_OR_CLIPPY) $(rust_flags) \
|
RUST_MODFILE=$(modfile) $(RUSTC_OR_CLIPPY) $(rust_flags) \
|
||||||
-Zallow-features=$(rust_allowed_features) \
|
-Zallow-features=$(rust_allowed_features) \
|
||||||
@ -272,7 +275,7 @@ rust_common_cmd = \
|
|||||||
--extern alloc --extern kernel \
|
--extern alloc --extern kernel \
|
||||||
--crate-type rlib -L $(objtree)/rust/ \
|
--crate-type rlib -L $(objtree)/rust/ \
|
||||||
--crate-name $(basename $(notdir $@)) \
|
--crate-name $(basename $(notdir $@)) \
|
||||||
--emit=dep-info=$(depfile)
|
--out-dir $(dir $@) --emit=dep-info=$(depfile)
|
||||||
|
|
||||||
# `--emit=obj`, `--emit=asm` and `--emit=llvm-ir` imply a single codegen unit
|
# `--emit=obj`, `--emit=asm` and `--emit=llvm-ir` imply a single codegen unit
|
||||||
# will be used. We explicitly request `-Ccodegen-units=1` in any case, and
|
# will be used. We explicitly request `-Ccodegen-units=1` in any case, and
|
||||||
|
@ -86,7 +86,11 @@ hostc_flags = -Wp,-MMD,$(depfile) \
|
|||||||
hostcxx_flags = -Wp,-MMD,$(depfile) \
|
hostcxx_flags = -Wp,-MMD,$(depfile) \
|
||||||
$(KBUILD_HOSTCXXFLAGS) $(HOST_EXTRACXXFLAGS) \
|
$(KBUILD_HOSTCXXFLAGS) $(HOST_EXTRACXXFLAGS) \
|
||||||
$(HOSTCXXFLAGS_$(target-stem).o)
|
$(HOSTCXXFLAGS_$(target-stem).o)
|
||||||
hostrust_flags = --emit=dep-info=$(depfile) \
|
|
||||||
|
# `--out-dir` is required to avoid temporaries being created by `rustc` in the
|
||||||
|
# current working directory, which may be not accessible in the out-of-tree
|
||||||
|
# modules case.
|
||||||
|
hostrust_flags = --out-dir $(dir $@) --emit=dep-info=$(depfile) \
|
||||||
$(KBUILD_HOSTRUSTFLAGS) $(HOST_EXTRARUSTFLAGS) \
|
$(KBUILD_HOSTRUSTFLAGS) $(HOST_EXTRARUSTFLAGS) \
|
||||||
$(HOSTRUSTFLAGS_$(target-stem))
|
$(HOSTRUSTFLAGS_$(target-stem))
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ _DEFAULT_OUTPUT = 'compile_commands.json'
|
|||||||
_DEFAULT_LOG_LEVEL = 'WARNING'
|
_DEFAULT_LOG_LEVEL = 'WARNING'
|
||||||
|
|
||||||
_FILENAME_PATTERN = r'^\..*\.cmd$'
|
_FILENAME_PATTERN = r'^\..*\.cmd$'
|
||||||
_LINE_PATTERN = r'^savedcmd_[^ ]*\.o := (.* )([^ ]*\.c) *(;|$)'
|
_LINE_PATTERN = r'^savedcmd_[^ ]*\.o := (.* )([^ ]*\.[cS]) *(;|$)'
|
||||||
_VALID_LOG_LEVELS = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']
|
_VALID_LOG_LEVELS = ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']
|
||||||
# The tools/ directory adopts a different build system, and produces .cmd
|
# The tools/ directory adopts a different build system, and produces .cmd
|
||||||
# files in a different format. Do not support it.
|
# files in a different format. Do not support it.
|
||||||
|
@ -636,7 +636,7 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)
|
|||||||
{
|
{
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
const gchar *intro_text =
|
const gchar *intro_text =
|
||||||
"Welcome to gkc, the GTK+ graphical configuration tool\n"
|
"Welcome to gconfig, the GTK+ graphical configuration tool.\n"
|
||||||
"For each option, a blank box indicates the feature is disabled, a\n"
|
"For each option, a blank box indicates the feature is disabled, a\n"
|
||||||
"check indicates it is enabled, and a dot indicates that it is to\n"
|
"check indicates it is enabled, and a dot indicates that it is to\n"
|
||||||
"be compiled as a module. Clicking on the box will cycle through the three states.\n"
|
"be compiled as a module. Clicking on the box will cycle through the three states.\n"
|
||||||
@ -647,10 +647,7 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)
|
|||||||
"Although there is no cross reference yet to help you figure out\n"
|
"Although there is no cross reference yet to help you figure out\n"
|
||||||
"what other options must be enabled to support the option you\n"
|
"what other options must be enabled to support the option you\n"
|
||||||
"are interested in, you can still view the help of a grayed-out\n"
|
"are interested in, you can still view the help of a grayed-out\n"
|
||||||
"option.\n"
|
"option.";
|
||||||
"\n"
|
|
||||||
"Toggling Show Debug Info under the Options menu will show \n"
|
|
||||||
"the dependencies, which you can then match by examining other options.";
|
|
||||||
|
|
||||||
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),
|
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),
|
||||||
GTK_DIALOG_DESTROY_WITH_PARENT,
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||||
@ -667,7 +664,7 @@ void on_about1_activate(GtkMenuItem * menuitem, gpointer user_data)
|
|||||||
{
|
{
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
const gchar *about_text =
|
const gchar *about_text =
|
||||||
"gkc is copyright (c) 2002 Romain Lievin <roms@lpg.ticalc.org>.\n"
|
"gconfig is copyright (c) 2002 Romain Lievin <roms@lpg.ticalc.org>.\n"
|
||||||
"Based on the source code from Roman Zippel.\n";
|
"Based on the source code from Roman Zippel.\n";
|
||||||
|
|
||||||
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),
|
dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),
|
||||||
@ -685,7 +682,7 @@ void on_license1_activate(GtkMenuItem * menuitem, gpointer user_data)
|
|||||||
{
|
{
|
||||||
GtkWidget *dialog;
|
GtkWidget *dialog;
|
||||||
const gchar *license_text =
|
const gchar *license_text =
|
||||||
"gkc is released under the terms of the GNU GPL v2.\n"
|
"gconfig is released under the terms of the GNU GPL v2.\n"
|
||||||
"For more information, please see the source code or\n"
|
"For more information, please see the source code or\n"
|
||||||
"visit http://www.fsf.org/licenses/licenses.html\n";
|
"visit http://www.fsf.org/licenses/licenses.html\n";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user