Skip to content
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

Merged
merged 1 commit into from
Nov 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ $(KCONFIG_CONFIG):
# This exploits the 'multi-target pattern rule' trick.
# The syncconfig should be executed only once to make all the targets.
# (Note: use the grouped target '&:' when we bump to GNU Make 4.3)
%/config/auto.conf %/config/auto.conf.cmd %/generated/autoconf.h: $(KCONFIG_CONFIG)
%/config/auto.conf %/config/auto.conf.cmd %/generated/autoconf.h %/generated/rustc_cfg: $(KCONFIG_CONFIG)
Copy link
Member Author

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!).

$(Q)$(MAKE) -f $(srctree)/Makefile syncconfig
else # !may-sync-config
# External modules and some install targets need include/generated/autoconf.h
Expand Down
4 changes: 2 additions & 2 deletions scripts/Makefile.lib
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Copy link
Member

Choose a reason for hiding this comment

The 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)
Expand Down
69 changes: 68 additions & 1 deletion scripts/kconfig/confdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Copy link
Member Author

Choose a reason for hiding this comment

The 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);
Copy link
Member

Choose a reason for hiding this comment

The 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?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it works! cfg holds a multimap, which allows us to do things like this:

#[cfg(not(CONFIG_X))]
pub static CONFIG_X_DISABLED: i32 = 0;

#[cfg(CONFIG_X)]
pub static CONFIG_X_ENABLED: i32 = 0;

#[cfg(CONFIG_X="y")]
pub static CONFIG_X_BUILTIN: i32 = 0;

#[cfg(CONFIG_X="m")]
pub static CONFIG_X_MODULE: i32 = 0;

Since the most common case is checking whether CONFIG_X is enabled in any way (either y or m), I suggested this way in #22 (comment). Thus most code gets the best looking code: #[cfg(CONFIG_X)].

Another option is generating things like CONFIG_X_ENABLED directly instead of using just CONFIG_X, but I thought this mimicked best what C does, looks best for the common case and is guaranteed to not have collisions, e.g. if someone wants to define both CONFIG_X and CONFIG_X_MODULE.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I should probably copy this example to somewhere in Documentation/rust too.

}

static struct conf_printer rustc_cfg_printer_cb =
{
.print_symbol = rustc_cfg_print_symbol,
};

/*
* Header printer
*
Expand Down Expand Up @@ -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))
Expand All @@ -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);

Expand All @@ -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)
Expand All @@ -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;
}

Expand Down