Prevent extraneous empty lines in compiler output
[gruntmaster-daemon.git] / gruntmaster-compile
index 35a34244c4122f63bd1fc4fce266b817d777e1d0..40336515102fcad52396a40ea8b59f32c4f70507 100755 (executable)
@@ -18,13 +18,38 @@ if ($ret) {
        given ($format){
                exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o/, $basename, $name when 'C';
                exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
+               when ('MONO') {
+                       system 'gmcs', '-d:ONLINE_JUDGE', $name and die "gmcs failed: errno=$! return=$?";
+                       rename "$basename.exe", $basename;
+                       chmod 0755, $basename;
+               }
                exec 'gmcs', '-d:ONLINE_JUDGE', $name when  'MONO';
-               exec 'javac', $name when 'JAVA';
-               exec 'fpc', qw/-dONLINE_JUDGE -O2 -n/, $name when 'PASCAL';
-               copy $name, $basename when ['PERL', 'PYTHON']
+               when ('JAVA') {
+                       system 'javac', $name and die "javac failed: errno=$! return=$?";
+                       system 'jar', 'cfe', $basename, $basename, "$basename.class" and die "jar failed: errno=$! return=$?";
+                       chmod 0755, $basename;
+                       exit
+               }
+               exec 'fpc', qw/-dONLINE_JUDGE -O2/, $name when 'PASCAL';
+               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';
+
+               when ([qw/PERL PYTHON/]){
+                       open IN, '<', $name;
+                       open OUT, '>', $basename;
+                       print OUT "#!/usr/bin/perl\n"   if $_ eq 'PERL';
+                       print OUT "#!/usr/bin/python\n" if $_ eq 'PYTHON';
+                       print OUT while <IN>;
+                       close OUT;
+                       close IN;
+                       chmod 0755, $basename;
+                       exit
+               }
        }
 }
 
+exit 1;
 __END__
 
 =encoding utf-8
@@ -52,7 +77,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
 
@@ -64,7 +89,19 @@ Compile commands for each format:
 
 =item PASCAL
 
-  fpc -dONLINE_JUDGE -O2 -n $input
+  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
 
This page took 0.011302 seconds and 4 git commands to generate.