From b03cc991aae4325a2308211c82cc653032aee0b3 Mon Sep 17 00:00:00 2001 From: Rod Vagg Date: Tue, 8 Dec 2015 20:35:49 +1100 Subject: [PATCH] build: minor corrections in VTune configure text PR-URL: https://github.com/nodejs/node/pull/4192 Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell --- configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 71dc467dce4c98..00f20f75d40af8 100755 --- a/configure +++ b/configure @@ -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'