X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=blobdiff_plain;f=gruntmaster-compile;h=794b514b63edb71c5cb5c13f1c52980bb21c67d5;hp=be900b9ac565fc4b2f2ac2b757b8f1710ae126c2;hb=6d1f2d942e383e6f5acb59511caccb425ea8db85;hpb=95379e40e45ab2cc445a81b32555a7da9e193bac diff --git a/gruntmaster-compile b/gruntmaster-compile index be900b9..794b514 100755 --- a/gruntmaster-compile +++ b/gruntmaster-compile @@ -9,14 +9,14 @@ my ($format, $name) = @ARGV; my $basename = fileparse $name, qr/\..*/; 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 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP'; + exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -lm -O2 -o/, $basename, $name when 'C'; + exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -Wall -Wextra -lm -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 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO'; when ('JAVA') { unlink $_ for <*.class>; system 'javac', $name and die "javac failed: errno=$! return=$?"; @@ -28,12 +28,17 @@ given ($format){ 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'; + exec 'rustc', qw/-O -o/, $basename, $name when 'RUST'; - when ([qw/PERL PYTHON/]){ + when ([qw/GOLFSCRIPT JULIA PERL PYTHON RUBY SBCL/]){ 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 "#!/usr/bin/golfscript\n" if $_ eq 'GOLFSCRIPT'; + print OUT "#!/usr/bin/julia -O\n" if $_ eq 'JULIA'; + print OUT "#!/usr/bin/perl\n" if $_ eq 'PERL'; + print OUT "#!/usr/bin/python\n" if $_ eq 'PYTHON'; + print OUT "#!/usr/bin/ruby\n" if $_ eq 'RUBY'; + print OUT "#!/usr/bin/sbcl --script\n" if $_ eq 'SBCL'; print OUT while ; close OUT; close IN; @@ -58,7 +63,7 @@ gruntmaster-compile - Gruntmaster 6000 compiler frontend =head1 DESCRIPTION -gruntmaster-compile is a very simple frontend to various comilers. It takes two arguments: the file format and the file name, and produces a compiled executable. The executable's name is the basename of the input file. +gruntmaster-compile is a very simple frontend to various compilers. It takes two arguments: the file format and the file name, and produces a compiled executable. The executable's name is the basename of the input file. Compile commands for each format: @@ -80,6 +85,10 @@ Compile commands for each format: javac $input +=item JULIA + + cp $input $output + =item PASCAL fpc -dONLINE_JUDGE -O2 $input @@ -96,6 +105,10 @@ Compile commands for each format: ghc -DONLINE_JUDGE -Wall -O2 -o $output $input +=item RUST + + rustc -O -o $output $input + =item PERL cp $input $output