X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=gruntmaster-compile;h=b4c2ab12e78a8d440cc3ace415e80eba25c496f5;hp=4e600966c5799cb83b11c1ace435d4c3f5067bb9;hb=1b82f62be869ce3b61ab5e3b1f060546b75953c2;hpb=0005d3ad0aba39600e7dbb70c040c416f34985ac diff --git a/gruntmaster-compile b/gruntmaster-compile index 4e60096..b4c2ab1 100755 --- a/gruntmaster-compile +++ b/gruntmaster-compile @@ -21,6 +21,9 @@ if ($ret) { exec 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO'; exec 'javac', $name when 'JAVA'; 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'; copy $name, $basename when ['PERL', 'PYTHON'] } } @@ -52,7 +55,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 @@ -66,6 +69,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