-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use @file to pass the --cfg flags to rustc (fixes #22) #32
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -229,9 +229,9 @@ c_flags = -Wp,-MMD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \ | |
RUST_BINDGEN_CFLAGS = $(c_flags) $(KBUILD_CFLAGS_MODULE) | ||
export RUST_BINDGEN_CFLAGS | ||
|
||
rustc_cfg_flags = $(shell sed -nE 's/^(CONFIG_[^=]+)=(y|m)$$/--cfg \1/p' $(srctree)/include/config/auto.conf | xargs) | ||
KCONFIG_RUSTC_CFG ?= $(srctree)/include/generated/rustc_cfg | ||
|
||
rustc_flags = $(_rustc_flags) $(modkern_rustcflags) $(rustc_cfg_flags) | ||
rustc_flags = $(_rustc_flags) $(modkern_rustcflags) @$(shell readlink -f $(KCONFIG_RUSTC_CFG)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would like to remove readlink someday, but does not have to be now |
||
|
||
# Passed by cargo | ||
RUSTFLAGS = $(rustc_flags) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -636,6 +636,56 @@ static struct conf_printer kconfig_printer_cb = | |
.print_comment = kconfig_print_comment, | ||
}; | ||
|
||
/* | ||
* rustc cfg printer | ||
* | ||
* This printer is used when generating the resulting rustc configuration | ||
* after kconfig invocation and `defconfig` files. | ||
*/ | ||
static void rustc_cfg_print_symbol(FILE *fp, struct symbol *sym, const char *value, void *arg) | ||
{ | ||
const char *str; | ||
|
||
switch (sym->type) { | ||
case S_INT: | ||
case S_HEX: | ||
case S_BOOLEAN: | ||
case S_TRISTATE: | ||
str = sym_escape_string_value(value); | ||
|
||
/* | ||
* We don't care about disabled ones, i.e. no need for | ||
* what otherwise are "comments" in other printers. | ||
*/ | ||
if (*value == 'n') | ||
return; | ||
|
||
/* | ||
* To have similar functionality to the C macro `IS_ENABLED()` | ||
* we provide an empty `--cfg CONFIG_X` here in both `y` | ||
* and `m` cases. | ||
* | ||
* Then, the common `fprintf()` below will also give us | ||
* a `--cfg CONFIG_X="y"` or `--cfg CONFIG_X="m"`, which can | ||
* be used as the equivalent of `IS_BUILTIN()`/`IS_MODULE()`. | ||
*/ | ||
if (*value == 'y' || *value == 'm') | ||
fprintf(fp, "--cfg=%s%s\n", CONFIG_, sym->name); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kloenk This is the fix you needed. |
||
|
||
break; | ||
default: | ||
str = value; | ||
break; | ||
} | ||
|
||
fprintf(fp, "--cfg=%s%s=%s\n", CONFIG_, sym->name, str); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This creates 2 times the same CFC flag? Does it work? Is cfg!(CONFIG_C) false if X is n? Or is it set to n and so returns true? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it works!
Since the most common case is checking whether Another option is generating things like There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I should probably copy this example to somewhere in |
||
} | ||
|
||
static struct conf_printer rustc_cfg_printer_cb = | ||
{ | ||
.print_symbol = rustc_cfg_print_symbol, | ||
}; | ||
ojeda marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/* | ||
* Header printer | ||
* | ||
|
@@ -1043,7 +1093,7 @@ int conf_write_autoconf(int overwrite) | |
struct symbol *sym; | ||
const char *name; | ||
const char *autoconf_name = conf_get_autoconfig_name(); | ||
FILE *out, *out_h; | ||
FILE *out, *out_h, *out_rustc_cfg; | ||
int i; | ||
|
||
if (!overwrite && is_present(autoconf_name)) | ||
|
@@ -1064,6 +1114,13 @@ int conf_write_autoconf(int overwrite) | |
return 1; | ||
} | ||
|
||
out_rustc_cfg = fopen(".tmp_rustc_cfg", "w"); | ||
if (!out_rustc_cfg) { | ||
fclose(out); | ||
fclose(out_h); | ||
return 1; | ||
} | ||
|
||
conf_write_heading(out, &kconfig_printer_cb, NULL); | ||
conf_write_heading(out_h, &header_printer_cb, NULL); | ||
|
||
|
@@ -1075,9 +1132,11 @@ int conf_write_autoconf(int overwrite) | |
/* write symbols to auto.conf and autoconf.h */ | ||
conf_write_symbol(out, sym, &kconfig_printer_cb, (void *)1); | ||
conf_write_symbol(out_h, sym, &header_printer_cb, NULL); | ||
conf_write_symbol(out_rustc_cfg, sym, &rustc_cfg_printer_cb, NULL); | ||
} | ||
fclose(out); | ||
fclose(out_h); | ||
fclose(out_rustc_cfg); | ||
|
||
name = getenv("KCONFIG_AUTOHEADER"); | ||
if (!name) | ||
|
@@ -1096,6 +1155,14 @@ int conf_write_autoconf(int overwrite) | |
if (rename(".tmpconfig", autoconf_name)) | ||
return 1; | ||
|
||
name = getenv("KCONFIG_RUSTC_CFG"); | ||
if (!name) | ||
name = "include/generated/rustc_cfg"; | ||
if (make_parent_dir(name)) | ||
return 1; | ||
if (rename(".tmp_rustc_cfg", name)) | ||
return 1; | ||
|
||
return 0; | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I changed a few of the names of several things/variables/etc. to improve clarity (hopefully!).