Skip to content

Commit be0b0b8

Browse files
committed
build: minor corrections in VTune configure text
PR-URL: #4192 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 9164c00 commit be0b0b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure

+4-4
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ parser.add_option("--partly-static",
9595
parser.add_option("--enable-vtune-profiling",
9696
action="store_true",
9797
dest="enable_vtune_profiling",
98-
help="Enable profiling support for Intel Vtune profiler to profile"
98+
help="Enable profiling support for Intel VTune profiler to profile"
9999
"JavaScript code executed in nodejs. This feature is only available "
100-
"for ia32, x32 or x64 platform.")
100+
"for x32, x86 and x64 architectures.")
101101

102102

103103
parser.add_option("--link-module",
@@ -692,8 +692,8 @@ def configure_node(o):
692692
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
693693
elif options.enable_vtune_profiling:
694694
raise Exception(
695-
'vtune profiler for JavaScript is only supported on x86, x32 or x64 '
696-
'platform.')
695+
'The VTune profiler for JavaScript is only supported on x32, x86 and x64 '
696+
'architectures.')
697697
else:
698698
o['variables']['node_enable_v8_vtunejit'] = 'false'
699699

0 commit comments

Comments
 (0)