diff options
author | Rongjian Zhang <pd4d10@gmail.com> | 2019-11-15 22:54:32 +0800 |
---|---|---|
committer | Ruben Bridgewater <ruben@bridgewater.de> | 2019-11-19 14:46:05 +0100 |
commit | 80b1717c0fa1b7c887bc614b610939153f50cbd8 (patch) | |
tree | 4dac5f93577909e1f816a1f6bebd69f580a7c387 /tools | |
parent | 4fe62c1620b7f32d311c9a423ff000181a6ff989 (diff) | |
download | node-new-80b1717c0fa1b7c887bc614b610939153f50cbd8.tar.gz |
tools: fix build at non-English windows
PR-URL: https://github.com/nodejs/node/pull/30492
Fixes: https://github.com/nodejs/node/issues/25885
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/v8_gypfiles/v8.gyp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp index 0ecfc7e945..b64df82fa3 100644 --- a/tools/v8_gypfiles/v8.gyp +++ b/tools/v8_gypfiles/v8.gyp @@ -104,6 +104,13 @@ ], }, 'includes': ['toolchain.gypi', 'features.gypi'], + 'target_defaults': { + 'msvs_settings': { + 'VCCLCompilerTool': { + 'AdditionalOptions': ['/utf-8'] + } + }, + }, 'targets': [ { 'target_name': 'run_torque', |