g++编译器内存限制放宽到256M

This commit is contained in:
virusdefender 2016-05-10 21:02:43 +08:00
parent 40573615ec
commit 3aa9b9b319
No known key found for this signature in database
GPG Key ID: 1686FB5677979E61

View File

@ -18,7 +18,7 @@ languages = {
"src_name": "main.cpp",
"code": 2,
"compile_max_cpu_time": 3000,
"compile_max_memory": 128 * 1024 * 1024,
"compile_max_memory": 256 * 1024 * 1024,
"compile_command": "/usr/bin/g++ -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c++11 {src_path} -lm -o {exe_path}/main",
"spj_compile_command": "/usr/bin/g++ -DONLINE_JUDGE -O2 -Werror -fmax-errors=3 -std=c++11 {src_path} -lm -o {exe_path}",
"execute_command": "{exe_path}/main",