From 332b343f500050b1c2787f804ead1ed4dc2c8788 Mon Sep 17 00:00:00 2001 From: Gabriel Schulhof Date: Mon, 23 Dec 2019 18:20:45 -0800 Subject: [PATCH] build: re-introduce --use-largepages as no-op Re-introduce the build-time option as a no-op in order to retain backward compatibility for LTS purposes. Re: https://github.com/nodejs/node/pull/31063#pullrequestreview-336045756 Backport-PR-URL: https://github.com/nodejs/node/pull/31063 PR_URL: https://github.com/nodejs/node/pull/31075 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Beth Griggs Reviewed-By: Ruben Bridgewater --- configure.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.py b/configure.py index 812502e91e755e..14787fe69155f3 100755 --- a/configure.py +++ b/configure.py @@ -398,6 +398,16 @@ dest='with_etw', help='build with ETW (default is true on Windows)') +parser.add_option('--use-largepages', + action='store_true', + dest='node_use_large_pages', + help='This option has no effect. --use-largepages is now a runtime option.') + +parser.add_option('--use-largepages-script-lld', + action='store_true', + dest='node_use_large_pages_script_lld', + help='This option has no effect. --use-largepages is now a runtime option.') + intl_optgroup.add_option('--with-intl', action='store', dest='with_intl',