0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00

win,build: add ARM64 sections to common.gypi

PR-URL: https://github.com/nodejs/node/pull/25995
Reviewed-By: João Reis <reis@janeasystems.com>
This commit is contained in:
Jon Kunkee 2018-12-12 12:57:30 -08:00 committed by João Reis
parent 0ff6ce3fa6
commit 3796a69e00

View File

@ -271,6 +271,14 @@
}],
],
}],
['target_arch=="arm64"', {
'TargetMachine' : 0, # /MACHINE:ARM64 is inferred from the input files.
'target_conditions': [
['_type=="executable"', {
'AdditionalOptions': [ '/SubSystem:Console' ],
}],
],
}],
],
'GenerateDebugInformation': 'true',
'SuppressStartupBanner': 'true',
@ -296,6 +304,9 @@
[ 'target_arch=="x64"', {
'msvs_configuration_platform': 'x64',
}],
[ 'target_arch=="arm64"', {
'msvs_configuration_platform': 'arm64',
}],
['asan == 1 and OS != "mac"', {
'cflags+': [
'-fno-omit-frame-pointer',