We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
GenerateSingleExecutableBlob()
1 parent b030004 commit 8d6948fCopy full SHA for 8d6948f
src/node_sea.cc
@@ -486,13 +486,6 @@ ExitCode GenerateSingleExecutableBlob(
486
}
487
488
489
- std::optional<std::string> optional_code_cache =
490
- GenerateCodeCache(config.main_path, main_script);
491
- if (!optional_code_cache.has_value()) {
492
- FPrintF(stderr, "Cannot generate V8 code cache\n");
493
- return ExitCode::kGenericUserError;
494
- }
495
-
496
std::optional<std::string_view> optional_sv_code_cache;
497
std::string code_cache;
498
if (static_cast<bool>(config.flags & SeaFlags::kUseCodeCache)) {
0 commit comments