summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2019-06-27 14:46:09 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-07-04 07:03:32 +0200
commit39a935883df8cc87e1bd6364df38a61131e1e4ba (patch)
treeb2adf80366e1dbe3b97281d93cb719ec64fe3478 /configure.py
parentaf3992b1caff074812579a792f28eef0256190b7 (diff)
downloadandroid-node-v8-39a935883df8cc87e1bd6364df38a61131e1e4ba.tar.gz
android-node-v8-39a935883df8cc87e1bd6364df38a61131e1e4ba.tar.bz2
android-node-v8-39a935883df8cc87e1bd6364df38a61131e1e4ba.zip
build: remove --code-cache-path help option
This commit removes the now obsolete option. PR-URL: https://github.com/nodejs/node/pull/28446 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.py b/configure.py
index 8af0aab3dc..6a0bfd0860 100755
--- a/configure.py
+++ b/configure.py
@@ -515,11 +515,6 @@ parser.add_option('--without-siphash',
dest='without_siphash',
help=optparse.SUPPRESS_HELP)
-parser.add_option('--code-cache-path',
- action='store',
- dest='code_cache_path',
- help='optparse.SUPPRESS_HELP')
-
# End dummy list.
parser.add_option('--without-ssl',
@@ -1116,7 +1111,7 @@ def configure_node(o):
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
# TODO(refack): fix this when implementing embedded code-cache when cross-compiling.
if o['variables']['want_separate_host_toolset'] == 0:
- o['variables']['node_code_cache_path'] = 'yes'
+ o['variables']['node_code_cache'] = 'yes' # For testing
o['variables']['node_shared'] = b(options.shared)
node_module_version = getmoduleversion.get_version()