VirtualBox

Changeset 91804 in vbox


Ignore:
Timestamp:
Oct 18, 2021 7:37:10 AM (3 years ago)
Author:
vboxsync
Message:

VMM: Make it possible to suppress the macOS 12+ check through an environment variable to make testing builds from the build box easier, bugref:10124

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/VM.cpp

    r91765 r91804  
    195195        char szDarwinVersion[512];
    196196        RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szDarwinVersion, sizeof(szDarwinVersion));
    197         if (RTStrVersionCompare(szDarwinVersion, "21.0.0") >= 0)
     197        if (   RTStrVersionCompare(szDarwinVersion, "21.0.0") >= 0
     198            && !RTEnvExist("VBOX_VMM_FORCE_MACOS_12"))
    198199            rc = vmR3SetErrorU(pUVM, VERR_NOT_SUPPORTED, RT_SRC_POS,
    199200                               "macOS 12 and later is not supported yet by this VirtualBox version - sorry");
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette