Browse Source

build: produce symbol map files on windows

This produces map files as part of the build on windows. The existence of
these files enable profiling and tick-processing using the --prof command
line.
See: https://github.com/nodejs/io.js/pull/2090#issuecomment-124746673

Map files are documented here:
https://msdn.microsoft.com/en-us/library/k7xkk3e2.aspx

PR-URL: https://github.com/nodejs/io.js/pull/2243
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
v4.0.0-rc
Ali Ijaz Sheikh 10 years ago
parent
commit
24dd016deb
  1. 2
      common.gypi

2
common.gypi

@ -163,6 +163,8 @@
}], }],
], ],
'GenerateDebugInformation': 'true', 'GenerateDebugInformation': 'true',
'GenerateMapFile': 'true', # /MAP
'MapExports': 'true', # /MAPINFO:EXPORTS
'RandomizedBaseAddress': 2, # enable ASLR 'RandomizedBaseAddress': 2, # enable ASLR
'DataExecutionPrevention': 2, # enable DEP 'DataExecutionPrevention': 2, # enable DEP
'AllowIsolation': 'true', 'AllowIsolation': 'true',

Loading…
Cancel
Save