Fix suggestions for x.py setup

This commit is contained in:
Antoine Martin 2020-10-01 16:08:05 +02:00
parent 5849a7eca9
commit 6e06388a7f

View file

@ -40,9 +40,9 @@ pub fn setup(src_path: &Path, include_name: &str) {
println!("`x.py` will now use the configuration at {}", include_path);
let suggestions = match include_name {
"codegen" | "compiler" => &["check", "build", "test"][..],
"llvm" | "codegen" | "compiler" => &["check", "build", "test"][..],
"library" => &["check", "build", "test library/std", "doc"],
"user" => &["dist", "build"],
"maintainer" | "user" => &["dist", "build"],
_ => return,
};