Change gruntmaster-exec setuid user/group in ex/makevm
[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 my $ret = fork // die $!;
12 if ($ret) {
13 $SIG{ALRM} = sub {kill KILL => $ret};
14 alarm 5;
15 wait;
16 exit $? >> 8
17 } else {
18 given ($format){
19 exec 'gcc', qw/-DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o/, $basename, $name when 'C';
20 exec 'g++', qw/-DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o/, $basename, $name when 'CPP';
21 exec 'gmcs', '-d:ONLINE_JUDGE', $name when 'MONO';
22 exec 'javac', $name when 'JAVA';
23 exec 'fpc', qw/-dONLINE_JUDGE -O2/, $name when 'PASCAL';
24 exec 'go', qw/build -compiler gc/, $name when 'GOLANG';
25 exec 'go', qw/build -compiler gccgo/, $name, when 'GCCGO';
26 exec 'ghc', qw/-DONLINE_JUDGE -Wall -O2 -o/, $basename, $name when 'HASKELL';
27 copy $name, $basename when ['PERL', 'PYTHON']
28 }
29 }
30
31 __END__
32
33 =encoding utf-8
34
35 =head1 NAME
36
37 gruntmaster-compile - Gruntmaster 6000 compiler frontend
38
39 =head1 SYNOPSIS
40
41 gruntmaster-compile CPP file.cpp
42 gruntmaster-compile JAVA file.java
43
44 =head1 DESCRIPTION
45
46 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.
47
48 Compile commands for each format:
49
50 =over
51
52 =item C
53
54 gcc -DONLINE_JUDGE -std=gnu11 -Wall -Wextra -O2 -o $output $input
55
56 =item CPP
57
58 g++ -DONLINE_JUDGE -std=gnu++11 -fabi-version=6 -Wall -Wextra -O2 -o $output $input
59
60 =item MONO
61
62 gmcs -d:ONLINE_JUDGE $input
63
64 =item JAVA
65
66 javac $input
67
68 =item PASCAL
69
70 fpc -dONLINE_JUDGE -O2 $input
71
72 =item GOLANG
73
74 go build -compiler gc $input
75
76 =item GCCGO
77
78 go build -compiler gccgo $input
79
80 =item HASKELL
81
82 ghc -DONLINE_JUDGE -Wall -O2 -o $output $input
83
84 =item PERL
85
86 cp $input $output
87
88 =item PYTHON
89
90 cp $input $output
91
92 =back
93
94 =head1 AUTHOR
95
96 Marius Gavrilescu E<lt>marius@ieval.roE<gt>
97
98 =head1 COPYRIGHT AND LICENSE
99
100 Copyright (C) 2014 by Marius Gavrilescu
101
102 This program is free software: you can redistribute it and/or modify
103 it under the terms of the GNU Affero General Public License as published by
104 the Free Software Foundation, either version 3 of the License, or
105 (at your option) any later version.
106
107
108 =cut
This page took 0.025323 seconds and 4 git commands to generate.