diff options
author | Rod Vagg <rod@vagg.org> | 2015-12-08 20:35:49 +1100 |
---|---|---|
committer | Rod Vagg <rod@vagg.org> | 2016-01-13 22:29:54 +1100 |
commit | be0b0b8cb90867b397416e1e086bbb621b533e15 (patch) | |
tree | 28968d5a8f66b97317cfd68cf64080aaacd6f429 /configure | |
parent | 9164c00bdb88acade543f1d0e2cefbb5c14ad0c4 (diff) | |
download | node-new-be0b0b8cb90867b397416e1e086bbb621b533e15.tar.gz |
build: minor corrections in VTune configure text
PR-URL: https://github.com/nodejs/node/pull/4192
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -95,9 +95,9 @@ parser.add_option("--partly-static", parser.add_option("--enable-vtune-profiling", action="store_true", dest="enable_vtune_profiling", - help="Enable profiling support for Intel Vtune profiler to profile" + help="Enable profiling support for Intel VTune profiler to profile" "JavaScript code executed in nodejs. This feature is only available " - "for ia32, x32 or x64 platform.") + "for x32, x86 and x64 architectures.") parser.add_option("--link-module", @@ -692,8 +692,8 @@ def configure_node(o): o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling) elif options.enable_vtune_profiling: raise Exception( - 'vtune profiler for JavaScript is only supported on x86, x32 or x64 ' - 'platform.') + 'The VTune profiler for JavaScript is only supported on x32, x86 and x64 ' + 'architectures.') else: o['variables']['node_enable_v8_vtunejit'] = 'false' |