Skip to content
Snippets Groups Projects
Commit 9d6e4e32 authored by Fernando K's avatar Fernando K
Browse files

Add C++20

parent 9c8019f6
No related branches found
No related tags found
No related merge requests found
......@@ -88,6 +88,10 @@ pub fn get_supported_languages() -> HashMap<String, LanguageParams> {
}
let mut languages = HashMap::new();
languages.insert(
"cpp.20.g++".into(),
build_gcc_params(2, "GNU G++20 {}", "/usr/bin/g++".into(), "c++", "c++20"),
);
languages.insert(
"cpp.17.g++".into(),
build_gcc_params(2, "GNU G++17 {}", "/usr/bin/g++".into(), "c++", "c++17"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment