Fix uninitialized VCLinkerTool::DebugInfoOption
Due to that uninitialized variable /DEBUG:FASTLINK ended up in vcxproj files for VS < 2015. However, that option is supported by VS >= 2015 only. Task-number: QTBUG-59630 Change-Id: I34d9eef1a3bf2262bac48962938afe84eb7de934 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
parent
b1a7a7b250
commit
02d9225db5
@ -1216,6 +1216,7 @@ VCLinkerTool::VCLinkerTool()
|
|||||||
: DataExecutionPrevention(unset),
|
: DataExecutionPrevention(unset),
|
||||||
EnableCOMDATFolding(optFoldingDefault),
|
EnableCOMDATFolding(optFoldingDefault),
|
||||||
GenerateDebugInformation(unset),
|
GenerateDebugInformation(unset),
|
||||||
|
DebugInfoOption(linkerDebugOptionNone),
|
||||||
GenerateMapFile(unset),
|
GenerateMapFile(unset),
|
||||||
HeapCommitSize(-1),
|
HeapCommitSize(-1),
|
||||||
HeapReserveSize(-1),
|
HeapReserveSize(-1),
|
||||||
|
Loading…
Reference in New Issue
Block a user