Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enable debug information in MSVC release build #3873

Merged
merged 2 commits into from Jun 8, 2021

Commits on May 4, 2021

  1. enabled debug information in MSVC release build

    No effect on runtime speed/size. Slightly slower link time, but debugging experience improves by a million times.
    
    - /Zi – Store debug information in a .pdb file, not directly in the DLL/EXE
    - /DEBUG:FULL – generate debug information during link
    - /PDBALTPATH:%_PDB% – do not store the file system path of the .pdb, just the filename and hash (no disclose paths on distribution)
    - /OPT:REF /OPT:ICF – remove unreferenced functions and fold identical functions (this was enabled before, but requires explicit enabling if /DEBUG:FULL is specified)
    Krishty committed May 4, 2021
    Copy the full SHA
    8ad9c93 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2021

  1. Copy the full SHA
    790203e View commit details
    Browse the repository at this point in the history