We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b664100 commit 79644acCopy full SHA for 79644ac
src/bootstrap/sanity.rs
@@ -75,6 +75,12 @@ pub fn check(build: &mut Build) {
75
76
need_cmd("python".as_ref());
77
78
+ // If a manual nodejs was added to the config,
79
+ // of if a nodejs install is detected through bootstrap.py, use it.
80
+ if build.config.nodejs.is_some() {
81
+ need_cmd("nodejs".as_ref())
82
+ }
83
+
84
// We're gonna build some custom C code here and there, host triples
85
// also build some C++ shims for LLVM so we need a C++ compiler.
86
for target in build.config.target.iter() {
0 commit comments