Add Brainfuck
[gruntmaster-daemon.git] / gruntmaster-compile
1 #!/usr/bin/perl -w
2 use v5.14;
3 no if $] > 5.017011, warnings => 'experimental::smartmatch';
4
5 use File::Copy qw/copy/;
6 use File::Basename qw/fileparse/;
7
8 my ($format, $name) = @ARGV;
9 my $basename = fileparse $name, qr/\..*/;
10
11 given ($format){
12 exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -lm -O2 -o/, $basename, $name when 'C';
13 exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -Wall -Wextra -lm -O2 -o/, $basename, $name when 'CPP';
14
15 when ('MONO') {
16 system 'gmcs', '-d:ONLINE_JUDGE', $name and die "gmcs failed: errno=$! return=$?";
17 rename "$basename.exe", $basename;
18 chmod 0755, $basename;
19 }
20 exec 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO';
21 when ('JAVA') {
22 unlink $_ for <*.class>;
23 system 'javac', $name and die "javac failed: errno=$! return=$?";
24 system 'jar', 'cfe', $basename, $basename, <*.class> and die "jar failed: errno=$! return=$?";
25 chmod 0755, $basename;
26 exit
27 }
28 exec 'fpc', qw/-dONLINE_JUDGE -O2/, $name when 'PASCAL';
29 exec 'go', qw/build -compiler gc/, $name when 'GOLANG';
30 exec 'go', qw/build -compiler gccgo/, $name, when 'GCCGO';
31 exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL';
32 exec 'rustc', qw/-O -o/, $basename, $name when 'RUST';
33
34 when ('BRAINFUCK') {
35 system 'bfc', $name and die "bfc failed: errno=$! return=$?";
36 rename "a.out", $basename;
37 chmod 0755, $basename;
38 exit
39 }
40
41 when ([qw/GOLFSCRIPT JULIA PERL PYTHON RUBY SBCL/]){
42 open IN, '<', $name;
43 open OUT, '>', $basename;
44 print OUT "#!/usr/bin/golfscript\n" if $_ eq 'GOLFSCRIPT';
45 print OUT "#!/usr/bin/julia -O\n" if $_ eq 'JULIA';
46 print OUT "#!/usr/bin/perl\n" if $_ eq 'PERL';
47 print OUT "#!/usr/bin/python\n" if $_ eq 'PYTHON';
48 print OUT "#!/usr/bin/ruby\n" if $_ eq 'RUBY';
49 print OUT "#!/usr/bin/sbcl --script\n" if $_ eq 'SBCL';
50 print OUT while <IN>;
51 close OUT;
52 close IN;
53 chmod 0755, $basename;
54 exit
55 }
56 }
57
58 exit 1;
59 __END__
60
61 =encoding utf-8
62
63 =head1 NAME
64
65 gruntmaster-compile - Gruntmaster 6000 compiler frontend
66
67 =head1 SYNOPSIS
68
69 gruntmaster-compile CPP file.cpp
70 gruntmaster-compile JAVA file.java
71
72 =head1 DESCRIPTION
73
74 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.
75
76 Compile commands for each format:
77
78 =over
79
80 =item BRAINFUCK
81
82 bfc $input
83
84 =item C
85
86 gcc -DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o $output $input
87
88 =item CPP
89
90 g++ -DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input
91
92 =item MONO
93
94 gmcs -d:ONLINE_JUDGE $input
95
96 =item JAVA
97
98 javac $input
99
100 =item JULIA
101
102 cp $input $output
103
104 =item PASCAL
105
106 fpc -dONLINE_JUDGE -O2 $input
107
108 =item GOLANG
109
110 go build -compiler gc $input
111
112 =item GCCGO
113
114 go build -compiler gccgo $input
115
116 =item HASKELL
117
118 ghc -DONLINE_JUDGE -Wall -O2 -o $output $input
119
120 =item RUST
121
122 rustc -O -o $output $input
123
124 =item PERL
125
126 cp $input $output
127
128 =item PYTHON
129
130 cp $input $output
131
132 =back
133
134 =head1 AUTHOR
135
136 Marius Gavrilescu E<lt>marius@ieval.roE<gt>
137
138 =head1 COPYRIGHT AND LICENSE
139
140 Copyright (C) 2014 by Marius Gavrilescu
141
142 This program is free software: you can redistribute it and/or modify
143 it under the terms of the GNU Affero General Public License as published by
144 the Free Software Foundation, either version 3 of the License, or
145 (at your option) any later version.
146
147
148 =cut
This page took 0.032014 seconds and 5 git commands to generate.