0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-21 15:04:33 -05:00

clang/update.py requires python3 now

This commit is contained in:
Ryan Dahl 2022-06-14 22:18:55 -04:00
parent 2493ac8b17
commit 3264cac1ea

View file

@ -519,7 +519,7 @@ fn find_compatible_system_clang() -> Option<PathBuf> {
fn clang_download() -> PathBuf {
let clang_base_path = build_dir().join("clang");
println!("clang_base_path {}", clang_base_path.display());
let status = Command::new("python")
let status = Command::new("python3")
.arg("./tools/clang/scripts/update.py")
.arg("--output-dir")
.arg(&clang_base_path)