mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-10 09:32:29 +01:00
Disable link-time code generation for MSVC Debug builds
Every time I do a debug build, I get a warning message from the linker telling me that /LTCG is doing nothing and that removing it from the options will speed up the linking process. (I believe this is due to LTCG being incompatible with incremental linking; and AFAIK incremental linking is enabled in debug builds by default.)
This commit is contained in:
committed by
Richard Jenkins
parent
1f5140ae94
commit
d93a07a58d
@@ -73,7 +73,6 @@
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<LinkTimeCodeGeneration>UseFastLinkTimeCodeGeneration</LinkTimeCodeGeneration>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
|
||||
|
||||
Reference in New Issue
Block a user