diff options
Diffstat (limited to 'build/internal')
-rw-r--r-- | build/internal/release_impl_official.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/internal/release_impl_official.gypi b/build/internal/release_impl_official.gypi index 18f7928..dd899c2 100644 --- a/build/internal/release_impl_official.gypi +++ b/build/internal/release_impl_official.gypi @@ -16,6 +16,12 @@ }, 'VCLinkerTool': { 'LinkTimeCodeGeneration': '1', + # The /PROFILE flag causes the linker to add a "FIXUP" debug stream to + # the generated PDB. According to MSDN documentation, this flag is only + # available (or perhaps supported) in the Enterprise (team development) + # version of Visual Studio. If this blocks your official build, simply + # comment out this line, then re-run "gclient runhooks". + 'Profile': 'true', }, }, } |