mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cli: remove deprecated V8 flag
Remove the `--huge-max-old-generation-size` V8 flag from the `NODE_OPTIONS` allowlist. That flag was recently deprecated (it currently remains as nop, see crrev.com/c/5831467) and will soon be completely removed. PR-URL: https://github.com/nodejs/node/pull/54761 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
This commit is contained in:
parent
9be0057859
commit
4f1fe8a015
@ -3122,7 +3122,6 @@ V8 options that are allowed are:
|
||||
* `--disallow-code-generation-from-strings`
|
||||
* `--enable-etw-stack-walking`
|
||||
* `--expose-gc`
|
||||
* `--huge-max-old-generation-size`
|
||||
* `--interpreted-frames-native-stack`
|
||||
* `--jitless`
|
||||
* `--max-old-space-size`
|
||||
@ -3456,8 +3455,6 @@ documented here:
|
||||
|
||||
### `--harmony-shadow-realm`
|
||||
|
||||
### `--huge-max-old-generation-size`
|
||||
|
||||
### `--jitless`
|
||||
|
||||
### `--interpreted-frames-native-stack`
|
||||
|
@ -904,11 +904,6 @@ PerIsolateOptionsParser::PerIsolateOptionsParser(
|
||||
"disallow eval and friends",
|
||||
V8Option{},
|
||||
kAllowedInEnvvar);
|
||||
AddOption("--huge-max-old-generation-size",
|
||||
"increase default maximum heap size on machines with 16GB memory "
|
||||
"or more",
|
||||
V8Option{},
|
||||
kAllowedInEnvvar);
|
||||
AddOption("--jitless",
|
||||
"disable runtime allocation of executable memory",
|
||||
V8Option{},
|
||||
|
@ -70,7 +70,6 @@ if (common.hasCrypto) {
|
||||
expect('--abort_on-uncaught_exception', 'B\n');
|
||||
expect('--disallow-code-generation-from-strings', 'B\n');
|
||||
expect('--expose-gc', 'B\n');
|
||||
expect('--huge-max-old-generation-size', 'B\n');
|
||||
expect('--jitless', 'B\n');
|
||||
expect('--max-old-space-size=0', 'B\n');
|
||||
expect('--max-semi-space-size=0', 'B\n');
|
||||
|
Loading…
Reference in New Issue
Block a user