Add Oberon
[gruntmaster-daemon.git] / gruntmaster-compile
index 0ab18fc693a86dc0a72f9779217b8c3ac7514639..adf2149705ee174356ed7d1912d5c6fbac64acd9 100755 (executable)
@@ -30,6 +30,9 @@ given ($format){
        exec 'go', qw/build -compiler gccgo/, $name, when 'GCCGO';
        exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL';
        exec 'rustc', qw/-O -o/, $basename, $name when 'RUST';
+       exec 'obc', qw/-x -o/, $basename, $name when 'OBERON';
+       exec 'ocamlc', qw/-o/, $basename, $name when 'OCAML';
+       exec 'dmd', qw/-version=ONLINE_JUDGE -O -release -inline -noboundscheck/, $name when 'D';
 
        when ('BRAINFUCK') {
                system 'bfc', $name and die "bfc failed: errno=$! return=$?";
@@ -45,7 +48,7 @@ given ($format){
                print OUT "#!/usr/bin/julia -O\n"                                                               if $_ eq 'JULIA';
                print OUT "#!/usr/bin/perl\n"                                                                   if $_ eq 'PERL';
                print OUT "#!/usr/bin/php -d ONLINE_JUDGE=true\n"                                               if $_ eq 'PHP';
-               print OUT "#!/usr/bin/python\n"                                                                 if $_ eq 'PYTHON';
+               print OUT "#!/usr/bin/python2.7\n"                                                              if $_ eq 'PYTHON';
                print OUT "#!/usr/bin/ruby\n"                                                                   if $_ eq 'RUBY';
                print OUT "#!/usr/bin/sbcl --script\n"                                                          if $_ eq 'SBCL';
                print OUT while <IN>;
@@ -118,6 +121,14 @@ Compile commands for each format:
 
   ghc -DONLINE_JUDGE -Wall -O2 -o $output $input
 
+=item OCAML
+
+  ocamlc -o $output $input
+
+=item OBERON
+
+  obc -x -o $output $input
+
 =item RUST
 
   rustc -O -o $output $input
This page took 0.010254 seconds and 4 git commands to generate.