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

bootloader Windows XP compatibility #2974

Merged
merged 1 commit into from
Dec 7, 2017
Merged

bootloader Windows XP compatibility #2974

merged 1 commit into from
Dec 7, 2017

Commits on Nov 25, 2017

  1. When using MSVC set the subsystem to force minimal XP target OS.

    Basically this makes the linker use the option /SUBSYSTEM, with its 4
    combinations:
    
    /SUBSYSTEM:WINDOWS,5.01
    /SUBSYSTEM:CONSOLE,5.01
    /SUBSYSTEM:WINDOWS,5.02
    /SUBSYSTEM:CONSOLE,5.02
    
    Where 5,01 is used for 32bit arch and 5,02 for 64bit this specifies XP as
    a minimal targeted OS version.
    
    https://blogs.msdn.microsoft.com/vcblog/2012/10/08/windows-xp-targeting-with-c-in-visual-studio-2012/
    tenuki committed Nov 25, 2017
    Configuration menu
    Copy the full SHA
    a344c85 View commit details
    Browse the repository at this point in the history