summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorGabriel Schulhof <gabriel.schulhof@intel.com>2019-12-23 18:20:45 -0800
committerGabriel Schulhof <gabriel.schulhof@intel.com>2019-12-25 18:42:15 -0800
commit3d500015feb4c8cc9a2ee9d18a6883acf0a3f5f2 (patch)
tree4e5fae720dd04d60db945b5ca6581ad375f2a9a0 /configure.py
parentbefff8fa6004d2d1d45bd28674e5f97fa4dbfa16 (diff)
downloadnode-new-3d500015feb4c8cc9a2ee9d18a6883acf0a3f5f2.tar.gz
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 PR_URL: https://github.com/nodejs/node/pull/31075 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index de27bb3403..a6b4bc219c 100755
--- a/configure.py
+++ b/configure.py
@@ -404,6 +404,16 @@ parser.add_option('--with-etw',
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',