Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-10-23 19:38:41 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-10-23 19:43:38 +0400
commit160e4d053481f3ad85e5532a353a68c1565764d2 (patch)
treef62c0b3cebc30a9cf66c6992604d640f71581651 /configure
parente8b0427be28460205f99ba6e7fad0eef92e90b6f (diff)
build: re-enable gdbjit, honor --gdb again
Note that you need to start node with --gdbjit for it to become effective.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 7c2550f870c..1f1343441a5 100755
--- a/configure
+++ b/configure
@@ -340,7 +340,7 @@ def configure_arm(o):
def configure_node(o):
- # TODO add gdb
+ o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
o['variables']['v8_no_strict_aliasing'] = 1 # work around compiler bugs
o['variables']['node_prefix'] = os.path.expanduser(options.prefix or '')
o['variables']['node_install_npm'] = b(not options.without_npm)