Skip to content

Commit

Permalink
Fix missing DebugInformationFormat when symbols are set to full
Browse files Browse the repository at this point in the history
  • Loading branch information
rorydriscoll committed May 15, 2018
1 parent 2b0e3f1 commit a1f9874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/vstudio/vs2010_vcxproj.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1579,7 +1579,7 @@
function m.debugInformationFormat(cfg)
local value
local tool, toolVersion = p.config.toolset(cfg)
if (cfg.symbols == p.ON) or (cfg.symbols == "FastLink") then
if (cfg.symbols == p.ON) or (cfg.symbols == "FastLink") or (cfg.symbols == "Full") then
if cfg.debugformat == "c7" then
value = "OldStyle"
elseif (cfg.architecture == "x86_64" and _ACTION < "vs2015") or
Expand Down

0 comments on commit a1f9874

Please sign in to comment.