Skip to content

Commit

Permalink
Merge pull request #1087 from rorydriscoll/master
Browse files Browse the repository at this point in the history
Fix missing DebugInformationFormat when symbols are set to full
  • Loading branch information
samsinsane committed May 15, 2018
2 parents 2b0e3f1 + a1f9874 commit 4e14522
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 4e14522

Please sign in to comment.