Skip to content

Commit

Permalink
VS: Map the link /debug flag for v142
Browse files Browse the repository at this point in the history
Apply the changes from commit a5d9aa5 (VS: Map the link `/debug` to
its IDE property, 2018-11-21) and commit f77320c (VS: Add v140 and
v141 flag table entries for /DEBUG:NONE and /DEBUG:FULL, 2018-11-21) to
the v142 flag table.

See commit ae44496 (VS: Fix GenerateDebugInformation values for v140
and v141 toolsets, 2017-06-27, v3.9.0-rc6~15^2~1) for explanation.
  • Loading branch information
bradking committed Jan 24, 2019
1 parent d2fcc67 commit 533f95c
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions Templates/MSBuild/FlagTables/v142_Link.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,33 +118,41 @@
"value": "RequireAdministrator",
"flags": []
},
{
"name": "GenerateDebugInformation",
"switch": "",
"comment": "No",
"value": "false",
"flags": []
},
{
"name": "GenerateDebugInformation",
"switch": "DEBUG",
"comment": "Generate Debug Information",
"value": "true",
"flags": []
"flags": [
"CaseInsensitive"
]
},
{
"name": "GenerateDebugInformation",
"switch": "DEBUG:FASTLINK",
"comment": "Generate Debug Information optimized for faster links",
"value": "DebugFastLink",
"flags": []
"flags": [
"CaseInsensitive"
]
},
{
"name": "GenerateDebugInformation",
"switch": "DEBUG:FULL",
"comment": "Generate Debug Information optimized for sharing and publishing",
"value": "DebugFull",
"flags": []
"flags": [
"CaseInsensitive"
]
},
{
"name": "GenerateDebugInformation",
"switch": "DEBUG:NONE",
"comment": "Produces no debugging information",
"value": "false",
"flags": [
"CaseInsensitive"
]
},
{
"name": "SubSystem",
Expand Down

0 comments on commit 533f95c

Please sign in to comment.