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