From a041562e4dd1722998902bb63e77af599448d889 Mon Sep 17 00:00:00 2001 From: Mohammad Angkad Date: Thu, 24 Oct 2024 04:07:16 +0800 Subject: [PATCH 1/3] added support for c++23 --- package.json | 1 + src/config.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/package.json b/package.json index 33627aa..6c6fb4d 100644 --- a/package.json +++ b/package.json @@ -119,6 +119,7 @@ "GNU G++11 5.1.0", "GNU G++17 9.2.0 (64 bit, msys 2)", "GNU G++20 13.2 (64 bit, winlibs)", + "GNU G++23 14.2 (64 bit, msys2)", "Microsoft Visual C++ 2017", "Microsoft Visual C++ 2010", "Clang++17 Diagnostics" diff --git a/src/config.ts b/src/config.ts index 6cd223d..f7d3f77 100644 --- a/src/config.ts +++ b/src/config.ts @@ -38,6 +38,7 @@ export default { 'GNU G++11 5.1.0': 42, 'GNU G++17 9.2.0 (64 bit, msys 2)': 61, 'GNU G++20 13.2 (64 bit, winlibs)': 89, + 'GNU G++23 14.2 (64 bit, msys2)': 91, 'Microsoft Visual C++ 2017': 59, 'Microsoft Visual C++ 2010': 2, 'Clang++17 Diagnostics': 52, From 8ad1b56044077af67d0e0bfbe54707df53a6c876 Mon Sep 17 00:00:00 2001 From: Mohammad Angkad Date: Thu, 24 Oct 2024 22:13:56 +0800 Subject: [PATCH 2/3] made c++23 as default and updated pypy version to 3.10 --- package.json | 6 +++--- src/config.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 6c6fb4d..b235daa 100644 --- a/package.json +++ b/package.json @@ -112,7 +112,7 @@ "cph.language.cpp.SubmissionCompiler": { "type": "string", "title": "check12344566", - "default": "GNU G++17 7.3.0", + "default": "GNU G++23 14.2 (64 bit, msys2)", "enum": [ "GNU G++17 7.3.0", "GNU G++14 6.4.0", @@ -139,10 +139,10 @@ }, "cph.language.python.SubmissionCompiler": { "type": "string", - "default": "PyPy 3.9.10 (7.3.9, 64bit)", + "default": "PyPy 3.10 (7.3.15, 64bit)", "enum": [ "PyPy 3.6 (7.2.0)", - "PyPy 3.9.10 (7.3.9, 64bit)", + "PyPy 3.10 (7.3.15, 64bit)", "Python 3.7.2", "PyPy 2.7 (7.2.0)", "Python 2.7.15" diff --git a/src/config.ts b/src/config.ts index f7d3f77..7dcaff7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -46,7 +46,7 @@ export default { 'Java 1.8.0_241': 36, 'Node.js 15.8.0 (64bit)': 55, 'PyPy 3.6.9 (7.3.0)': 41, - 'PyPy 3.9.10 (7.3.9, 64bit)': 70, + 'PyPy 3.10 (7.3.15, 64bit)': 70, 'Python 3.8.10': 31, 'PyPy 2.7.13 (7.3.0)': 40, 'Python 2.7.18': 7, From 66e5550183190dff4408d4ee48c37ee7976bb0da Mon Sep 17 00:00:00 2001 From: Mohammad Angkad Date: Thu, 24 Oct 2024 22:21:27 +0800 Subject: [PATCH 3/3] made c++23 as default and updated pypy to pypy 3.10 --- package.json | 2 +- src/config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b235daa..9ecbcf5 100644 --- a/package.json +++ b/package.json @@ -141,10 +141,10 @@ "type": "string", "default": "PyPy 3.10 (7.3.15, 64bit)", "enum": [ + "PyPy 2.7 (7.2.0)", "PyPy 3.6 (7.2.0)", "PyPy 3.10 (7.3.15, 64bit)", "Python 3.7.2", - "PyPy 2.7 (7.2.0)", "Python 2.7.15" ], "description": "The compiler chosen in the drop down during Codeforces submission for python" diff --git a/src/config.ts b/src/config.ts index 7dcaff7..5c5034c 100644 --- a/src/config.ts +++ b/src/config.ts @@ -45,10 +45,10 @@ export default { 'Java 11.0.6': 60, 'Java 1.8.0_241': 36, 'Node.js 15.8.0 (64bit)': 55, + 'PyPy 2.7.13 (7.3.0)': 40, 'PyPy 3.6.9 (7.3.0)': 41, 'PyPy 3.10 (7.3.15, 64bit)': 70, 'Python 3.8.10': 31, - 'PyPy 2.7.13 (7.3.0)': 40, 'Python 2.7.18': 7, 'Ruby 3.2.2': 67, 'GNU GCC C11 5.1.0': 43,