X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=gruntmaster-compile;h=1641d35a92a095032f8b8537d9e4f6a7d2e9e203;hp=aebbffc1f4376ecebf074537a068d01b0057f4cf;hb=0e7e545ae02086908e8bb29710fd47823489a3bb;hpb=4e02269fbd70d2f598c46a27d3c239a27cf83b0b diff --git a/gruntmaster-compile b/gruntmaster-compile index aebbffc..1641d35 100755 --- a/gruntmaster-compile +++ b/gruntmaster-compile @@ -21,10 +21,18 @@ if ($ret) { exec 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO'; exec 'javac', $name when 'JAVA'; exec 'fpc', qw/-dONLINE_JUDGE -O2/, $name when 'PASCAL'; - copy $name, $basename when ['PERL', 'PYTHON'] + 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 @@ -52,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 @@ -64,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