Switch to YAML::Tiny in tests
[gruntmaster-daemon.git] / gruntmaster-compile
index bc9c4f5d252ea4f88b8ef26d33b6ce1d99efae49..1641d35a92a095032f8b8537d9e4f6a7d2e9e203 100755 (executable)
@@ -3,8 +3,11 @@ use v5.14;
 no if $] > 5.017011, warnings => 'experimental::smartmatch';
 
 use File::Copy qw/copy/;
+use File::Basename qw/fileparse/;
+
+my ($format, $name) = @ARGV;
+my $basename = fileparse $name, qr/\..*/;
 
-my ($format, $basename, $name) = @ARGV;
 my $ret = fork // die $!;
 if ($ret) {
        $SIG{ALRM} = sub {kill KILL => $ret};
@@ -17,11 +20,19 @@ if ($ret) {
                exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
                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']
+               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/]){
+                       copy $name, $basename;
+                       exit
+               }
        }
 }
 
+exit 1;
 __END__
 
 =encoding utf-8
@@ -49,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
 
@@ -61,7 +72,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.010198 seconds and 4 git commands to generate.