Update some stuff

This commit is contained in:
2025-04-28 18:08:49 -03:00
parent 82d279e6d8
commit f39f45f415
8 changed files with 36 additions and 11 deletions

View File

@@ -21,8 +21,8 @@ return {
evaluate_template_modifiers = true,
received_problems_prompt_path = false,
compile_command = {
c = { exec = "gcc", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } },
cpp = { exec = "g++", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } },
c = { exec = "gcc", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c23", "$(FNAME)", "-o", "$(FNOEXT).out", "-lm" } },
cpp = { exec = "g++", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++20", "$(FNAME)", "-o", "$(FNOEXT).out" } },
},
run_command = {
c = { exec = "./$(FNOEXT).out" },