summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/addon.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/node-gyp/addon.gypi')
-rw-r--r--deps/npm/node_modules/node-gyp/addon.gypi23
1 files changed, 22 insertions, 1 deletions
diff --git a/deps/npm/node_modules/node-gyp/addon.gypi b/deps/npm/node_modules/node-gyp/addon.gypi
index 6462f539ff..9327b0d722 100644
--- a/deps/npm/node_modules/node-gyp/addon.gypi
+++ b/deps/npm/node_modules/node-gyp/addon.gypi
@@ -1,7 +1,8 @@
{
'variables' : {
'node_engine_include_dir%': 'deps/v8/include',
- 'node_host_binary%': 'node'
+ 'node_host_binary%': 'node',
+ 'node_with_ltcg%': 'true',
},
'target_defaults': {
'type': 'loadable_module',
@@ -126,6 +127,26 @@
'library_dirs': [ '<(node_root_dir)/$(ConfigurationName)' ],
'libraries': [ '<@(node_engine_libs)' ],
}],
+ ['node_with_ltcg=="true"', {
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'WholeProgramOptimization': 'true' # /GL, whole program optimization, needed for LTCG
+ },
+ 'VCLibrarianTool': {
+ 'AdditionalOptions': [
+ '/LTCG:INCREMENTAL', # incremental link-time code generation
+ ]
+ },
+ 'VCLinkerTool': {
+ 'OptimizeReferences': 2, # /OPT:REF
+ 'EnableCOMDATFolding': 2, # /OPT:ICF
+ 'LinkIncremental': 1, # disable incremental linking
+ 'AdditionalOptions': [
+ '/LTCG:INCREMENTAL', # incremental link-time code generation
+ ]
+ }
+ }
+ }]
],
'libraries': [
'-lkernel32.lib',