Rename ra_toolchain -> toolchain

This commit is contained in:
Aleksey Kladov 2020-08-12 16:52:28 +02:00
parent 550d7fbe3c
commit 8d34262956
14 changed files with 30 additions and 32 deletions

View file

@ -513,7 +513,7 @@ fn get_rustc_cfg_options(target: Option<&str>) -> Vec<CfgFlag> {
}
let rustc_cfgs = {
let mut cmd = Command::new(ra_toolchain::rustc());
let mut cmd = Command::new(toolchain::rustc());
cmd.args(&["--print", "cfg", "-O"]);
if let Some(target) = target {
cmd.args(&["--target", target]);