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 ce72cd7 commit 179ab39Copy full SHA for 179ab39
src/node_options.cc
@@ -27,10 +27,10 @@ std::shared_ptr<PerProcessOptions> cli_options{new PerProcessOptions()};
27
} // namespace per_process
28
29
void DebugOptions::CheckOptions(std::vector<std::string>* errors) {
30
-#if !NODE_USE_V8_PLATFORM
+#if !NODE_USE_V8_PLATFORM && !HAVE_INSPECTOR
31
if (inspector_enabled) {
32
errors->push_back("Inspector is not available when Node is compiled "
33
- "--without-v8-platform");
+ "--without-v8-platform and --without-inspector.");
34
}
35
#endif
36
0 commit comments