编译器使用绝对路径,否则报找不到文件的异常。

This commit is contained in:
virusdefender
2016-02-01 22:45:13 +08:00
parent 65c2033120
commit ee35981fcb
2 changed files with 5 additions and 6 deletions

View File

@@ -2,7 +2,6 @@
import time
import os
import judger
import commands
from judge_exceptions import CompileError, JudgeClientError
from logger import logger
from settings import judger_workspace
@@ -14,11 +13,11 @@ def compile_(language_item, src_path, exe_path):
compile_args = compile_command[1:]
compiler_output_file = os.path.join(judger_workspace, str(time.time()) + ".out")
compile_result = judger.run(exe_path=compiler,
compile_result = judger.run(path=compiler,
in_file="/dev/null",
out_file=compiler_output_file,
max_cpu_time=2000,
max_memory=200000000,
max_memory=2000000000,
args=compile_args,
env=["PATH=" + os.environ["PATH"]],
use_sandbox=False)