Skip to content

Commit

Permalink
build: produce symbol map files on windows
Browse files Browse the repository at this point in the history
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 <info@bnoordhuis.nl>
  • Loading branch information
ofrobots committed Jul 29, 2015
1 parent bc733f7 commit 24dd016
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@
}],
],
'GenerateDebugInformation': 'true',
'GenerateMapFile': 'true', # /MAP
'MapExports': 'true', # /MAPINFO:EXPORTS
'RandomizedBaseAddress': 2, # enable ASLR
'DataExecutionPrevention': 2, # enable DEP
'AllowIsolation': 'true',
Expand Down

0 comments on commit 24dd016

Please sign in to comment.