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

Reflect VS 17.9 release #204

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Code/max/Compiling/Configuration/Compiler/VC.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@

#define MAX_COMPILER_MESSAGE( Message ) __pragma( message( Message ) )

#if _MSC_VER > 1938
#if _MSC_VER > 1939
MAX_COMPILER_MESSAGE( "Compiling with a newer version of MSVC than max recognizes. Using last known version." );
#elif _MSC_VER >= 1939
// MSVC++ (Visual Studio 2022 / version 17.9)
#define MAX_COMPILER_VERSION_MAJOR 17
#define MAX_COMPILER_VERSION_MINOR 9
#elif _MSC_VER >= 1938
// MCVC++ (Visual Studio 2022 / version 17.8)
// MSVC++ (Visual Studio 2022 / version 17.8)
#define MAX_COMPILER_VERSION_MAJOR 17
#define MAX_COMPILER_VERSION_MINOR 8
#elif _MSC_VER >= 1937
Expand Down
3 changes: 2 additions & 1 deletion Docs/DeprecationSchedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@

|MSVC version |Release date|max deprecation date|Adds support for |
|------------------|-----------:|-------------------:|----------------------------------------------------|
|MSVC 17.8.x |Nov 14, 2023| Current| |
|MSVC 17.9.x |Feb 13, 2024| Current| |
|MSVC 17.8.x |Nov 14, 2023| Feb 13, 2029| |
|MSVC 17.7.x |Aug 8, 2023| Nov 14, 2028| |
|MSVC 17.6.x |May 16, 2023| Aug 8, 2028| |
|MSVC 17.5.x |Feb 21, 2023| May 16, 2028| |
Expand Down
Loading