]> mj.ucw.cz Git - eval.git/blobdiff - config
Changed compiler options.
[eval.git] / config
diff --git a/config b/config
index 74cfee52ecd7e59f3ccb9bf162451a349715a611..0f0bcf27dc4caacc7e7f0ef0aeb0e6256f503545 100644 (file)
--- a/config
+++ b/config
@@ -2,16 +2,29 @@
 # (c) 2001 Martin Mares <mj@ucw.cz>
 
 # Directories and users
-MO_ROOT=/aux/mo
+MO_ROOT=/home/mo
 EVAL_USER=mo-eval
 EVAL_GROUP=mo-eval
 TEST_USERS="mo-test1 mo-test2"
 
-# Compilation commands
-COMP_C='/usr/bin/gcc -o $EXE $SRC'
-COMP_CXX='/usr/bin/g++ -o $EXE $SRC'
-COMP_P='/usr/bin/fpc -o $EXE $SRC'
-COMP_SANDBOX_OPTS='-c$BOXDIR -m65536 -t60 -w -e'
+# Currently used test user
+TEST_USER=mo-test1
 
-# Testing commands
-TEST_SANDBOX_OPTS='-a2 -c$BOXDIR -f -m$MEM_LIMIT -t$TIME_LIMIT -w'
+### all of the following variables can be overriden in per-task config file
+
+# Known source file extensions
+EXTENSIONS="c C cpp p pas"
+
+# For each source extension, we must give compiler command
+COMP_c='/usr/bin/gcc -O2 -g -o $EXE $SRC'
+COMP_C='/usr/bin/g++ -O2 -g -o $EXE $SRC'
+COMP_cpp="$COMP_C"
+COMP_p='/usr/bin/fpc -Ci -Cr -g -O2 -So -Sg -o$EXE $SRC'
+COMP_pas="$COMP_p"
+
+# Sandbox options used when compiling
+COMP_SANDBOX_OPTS='-m65536 -t60 -w -e'
+
+# Sandbox options used when testing
+TEST_SANDBOX_OPTS='-a2 -f -m$MEM_LIMIT -t$TIME_LIMIT -w'
+# For stdio tasks append '-i$PROBLEM.in -o$PROBLEM.out'