Raw content of Fluent resource for this crate, generated by fluent_messages macro,
imported by rustc_driver to include all crates’ resources in one bundle.
Process command line options. Emits messages as appropriate. If compilation
should continue, returns a getopts::Matches object parsed from args,
otherwise returns None.
This allows tools to enable rust logging without having to magically match rustc’s
tracing crate version. In contrast to init_rustc_env_logger it allows you to choose
the logger config directly rather than having to set an environment variable.
This allows tools to enable rust logging without having to magically match rustc’s
tracing crate version. In contrast to init_rustc_env_logger, it allows you to
choose the logger config directly rather than having to set an environment variable.
Moreover, in contrast to init_logger, it allows you to add a custom tracing layer
via build_subscriber, for example || Registry::default().with(custom_layer).
Install our usual ctrlc handler, which sets rustc_const_eval::CTRL_C_RECEIVED.
Making this handler optional lets tools can install a different handler, if they wish.