From 76c5aa4438ab6974d319064040f6c4f2ef82d460 Mon Sep 17 00:00:00 2001 From: virusdefender Date: Sat, 7 Aug 2021 16:34:33 +0800 Subject: [PATCH] update compiler version --- judge/languages.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/judge/languages.py b/judge/languages.py index 8c590e51..0bf0038d 100644 --- a/judge/languages.py +++ b/judge/languages.py @@ -202,11 +202,11 @@ _go_lang_config = { languages = [ {"config": _c_lang_config, "spj": {"compile": _c_lang_spj_compile, "config": _c_lang_spj_config}, - "name": "C", "description": "GCC 5.4", "content_type": "text/x-csrc"}, + "name": "C", "description": "GCC 9.4", "content_type": "text/x-csrc"}, {"config": _cpp_lang_config, "spj": {"compile": _cpp_lang_spj_compile, "config": _cpp_lang_spj_config}, - "name": "C++", "description": "G++ 5.4", "content_type": "text/x-c++src"}, - {"config": _java_lang_config, "name": "Java", "description": "OpenJDK 1.8", "content_type": "text/x-java"}, + "name": "C++", "description": "G++ 9.4", "content_type": "text/x-c++src"}, + {"config": _java_lang_config, "name": "Java", "description": "OpenJDK 11", "content_type": "text/x-java"}, {"config": _py2_lang_config, "name": "Python2", "description": "Python 2.7", "content_type": "text/x-python"}, {"config": _py3_lang_config, "name": "Python3", "description": "Python 3.6", "content_type": "text/x-python"}, - {"config": _go_lang_config, "name": "Golang", "description": "Golang 1.14", "content_type": "text/x-go"}, + {"config": _go_lang_config, "name": "Golang", "description": "Golang 1.15", "content_type": "text/x-go"}, ]