X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=config;h=9c20211948148257475eec0a3756f8c24720eab4;hb=0d98c7537d17fd4b615a92fb20dd76cb4c30f09b;hp=daf2f7450757fba72351c2c89e525cef2bbe8f0b;hpb=9c62968bc71f78badc6022016a76743664fb48b4;p=moe.git diff --git a/config b/config index daf2f74..9c20211 100644 --- a/config +++ b/config @@ -2,33 +2,47 @@ # (c) 2001 Martin Mares # Directories and users -MO_ROOT=/home/mo +MO_ROOT=/aux/mo EVAL_USER=mo-eval EVAL_GROUP=mo-eval TEST_USERS="mo-test1 mo-test2" +# UID range assigned to contestants +CT_UID_MIN=65100 +CT_UID_MAX=65199 + # Test user for sandboxing TEST_USER=${TEST_USER:mo-test1} ### all of the following variables can be overriden in per-task config file +# Default task type (file or interactive) +TASK_TYPE=file + # Known source file extensions EXTENSIONS="c C cpp p pas" -# Extra compiler flags (null, but can be overriden) +# Extra compiler flags for C (null, but can be overriden) EXTRA_CFLAGS= +# Extra compiler flags for Pascal +EXTRA_PFLAGS= + # For each source extension, we must give compiler command COMP_c='/usr/bin/gcc -O2 -g -o $EXE $EXTRA_CFLAGS $SRC' COMP_C='/usr/bin/g++ -O2 -g -o $EXE $EXTRA_CFLAGS $SRC' COMP_cpp="$COMP_C" -COMP_p='/usr/bin/fpc -Ci -Cr -g -O2 -So -Sg -o$EXE $EXTRA_CFLAGS $SRC' +COMP_p='/usr/bin/fpc -Ci -Cr -g -O2 -So -Sg -o$EXE $EXTRA_PFLAGS $SRC' COMP_pas="$COMP_p" # Sandbox options used when compiling COMP_SANDBOX_OPTS='-m65536 -t60 -w -e' +# Sandbox initializaton commands for compilation +COMP_SANDBOX_INIT= + # Sandbox options used when testing TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT' # -w for wall clock measuring # For stdio tasks append '-i$PROBLEM.in -o$PROBLEM.out' +SANDBOX_INIT=