Mount /proc inside chroot in ex/makevm to fix openjdk configuration
[gruntmaster-daemon.git] / gruntmaster-compile
index 5228bddf144709b0572b171e7752183f37808e8d..1641d35a92a095032f8b8537d9e4f6a7d2e9e203 100755 (executable)
@@ -24,10 +24,15 @@ if ($ret) {
                exec 'go', qw/build -compiler gc/, $name when 'GOLANG';
                exec 'go', qw/build -compiler gccgo/, $name, when 'GCCGO';
                exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL';
-               copy $name, $basename when ['PERL', 'PYTHON']
+
+               when ([qw/PERL PYTHON/]){
+                       copy $name, $basename;
+                       exit
+               }
        }
 }
 
+exit 1;
 __END__
 
 =encoding utf-8
@@ -55,7 +60,7 @@ Compile commands for each format:
 
 =item CPP
 
-  g++ -DONLINE_JUDGE -std=gnu11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input
+  g++ -DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input
 
 =item MONO
 
@@ -69,6 +74,18 @@ Compile commands for each format:
 
   fpc -dONLINE_JUDGE -O2 $input
 
+=item GOLANG
+
+  go build -compiler gc $input
+
+=item GCCGO
+
+  go build -compiler gccgo $input
+
+=item HASKELL
+
+  ghc -DONLINE_JUDGE -Wall -O2 -o $output $input
+
 =item PERL
 
   cp $input $output
This page took 0.010096 seconds and 4 git commands to generate.