mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
build: add serial commas to messages in configure script
PR-URL: https://github.com/nodejs/node/pull/17464 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
9472d69d1d
commit
bfc59727c7
4
configure
vendored
4
configure
vendored
@ -146,7 +146,7 @@ parser.add_option("--enable-vtune-profiling",
|
||||
dest="enable_vtune_profiling",
|
||||
help="Enable profiling support for Intel VTune profiler to profile "
|
||||
"JavaScript code executed in nodejs. This feature is only available "
|
||||
"for x32, x86 and x64 architectures.")
|
||||
"for x32, x86, and x64 architectures.")
|
||||
|
||||
|
||||
parser.add_option("--link-module",
|
||||
@ -883,7 +883,7 @@ def configure_node(o):
|
||||
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
|
||||
elif options.enable_vtune_profiling:
|
||||
raise Exception(
|
||||
'The VTune profiler for JavaScript is only supported on x32, x86 and x64 '
|
||||
'The VTune profiler for JavaScript is only supported on x32, x86, and x64 '
|
||||
'architectures.')
|
||||
else:
|
||||
o['variables']['node_enable_v8_vtunejit'] = 'false'
|
||||
|
Loading…
Reference in New Issue
Block a user