summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
authorRefael Ackermann <refack@gmail.com>2019-02-04 15:49:47 -0500
committerRefael Ackermann <refack@gmail.com>2019-02-14 15:14:46 -0500
commitff4adab78c5237a89cb207d9be7e5e81398fe640 (patch)
tree45dcd5f4013823df98db154735ee8de490d575f4 /configure.py
parent6ac80f0e2bffcad57b15366f2f833b9bd4a00621 (diff)
downloadandroid-node-v8-ff4adab78c5237a89cb207d9be7e5e81398fe640.tar.gz
android-node-v8-ff4adab78c5237a89cb207d9be7e5e81398fe640.tar.bz2
android-node-v8-ff4adab78c5237a89cb207d9be7e5e81398fe640.zip
build,win: always build with PCH
PR-URL: https://github.com/nodejs/node/pull/25931 Reviewed-By: João Reis <reis@janeasystems.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.py b/configure.py
index 5a7cade60c..74fffa9b2e 100755
--- a/configure.py
+++ b/configure.py
@@ -448,11 +448,6 @@ parser.add_option('--with-ltcg',
dest='with_ltcg',
help='Use Link Time Code Generation. This feature is only available on Windows.')
-parser.add_option('--with-pch',
- action='store_true',
- dest='with_pch',
- help='Use Precompiled Headers (only available on Windows).')
-
intl_optgroup.add_option('--download',
action='store',
dest='download_list',
@@ -1070,11 +1065,6 @@ def configure_node(o):
if flavor != 'win' and options.with_ltcg:
raise Exception('Link Time Code Generation is only supported on Windows.')
- if flavor == 'win':
- o['variables']['node_use_pch'] = b(options.with_pch)
- else:
- o['variables']['node_use_pch'] = 'false'
-
if options.tag:
o['variables']['node_tag'] = '-' + options.tag
else: