Skip to content

Commit 24dd016

Browse files
committed
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: #2090 (comment) Map files are documented here: https://msdn.microsoft.com/en-us/library/k7xkk3e2.aspx PR-URL: #2243 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent bc733f7 commit 24dd016

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

common.gypi

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@
163163
}],
164164
],
165165
'GenerateDebugInformation': 'true',
166+
'GenerateMapFile': 'true', # /MAP
167+
'MapExports': 'true', # /MAPINFO:EXPORTS
166168
'RandomizedBaseAddress': 2, # enable ASLR
167169
'DataExecutionPrevention': 2, # enable DEP
168170
'AllowIsolation': 'true',

0 commit comments

Comments
 (0)