Description:
Merge branch 'master' into windows
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r116:5d4a79b51f8c - - 1 file changed: 1 inserted, 1 deleted
@@ -1,45 +1,45 | |||
|
1 | 1 | #!/usr/bin/ruby |
|
2 | 2 | |
|
3 | 3 | require 'fileutils' |
|
4 | 4 | |
|
5 | 5 | ############################## |
|
6 | 6 | # |
|
7 | 7 | # Standard Compile Script |
|
8 | 8 | # |
|
9 | 9 | # Supported compilers: |
|
10 | 10 | # gcc, g++, and fpc. |
|
11 | 11 | # |
|
12 | 12 | ############################## |
|
13 | 13 | |
|
14 | 14 | def talk(msg) |
|
15 | 15 | if ENV['TALKATIVE']!=nil |
|
16 | 16 | puts str |
|
17 | 17 | end |
|
18 | 18 | if ENV['GRADER_LOGGING']!=nil |
|
19 | 19 | log_fname = ENV['GRADER_LOGGING'] |
|
20 | 20 | fp = File.open(log_fname,"a") |
|
21 |
- fp.puts("run: #{Time.new.strftime("%H:%M")} #{ |
|
|
21 | + fp.puts("run: #{Time.new.strftime("%H:%M")} #{msg}") | |
|
22 | 22 | fp.close |
|
23 | 23 | end |
|
24 | 24 | end |
|
25 | 25 | |
|
26 | 26 | C_COMPILER = "gcc" |
|
27 | 27 | CPLUSPLUS_COMPILER = "g++" |
|
28 | 28 | PASCAL_COMPILER = "fpc" |
|
29 | 29 | |
|
30 | 30 | C_OPTIONS = "-O2 -s -static -std=c99 -DCONTEST -lm -Wall" |
|
31 | 31 | CPLUSPLUS_OPTIONS = "-O2 -s -static -DCONTEST -lm -Wall" |
|
32 | 32 | PASCAL_OPTIONS = "-O1 -XS -dCONTEST" |
|
33 | 33 | |
|
34 | 34 | # Check for the correct number of arguments. Otherwise, print usage. |
|
35 | 35 | if ARGV.length == 0 or ARGV.length > 4 |
|
36 | 36 | puts "Usage: compile <language> [<source-file>] [<output-file>] [<message-file>]" |
|
37 | 37 | puts |
|
38 | 38 | puts "<source-file> is defaulted to \"source\"." |
|
39 | 39 | puts "<output-file> is defaulted to \"a.out\"." |
|
40 | 40 | puts "<message-file> is defaulted to \"compiler_message\"." |
|
41 | 41 | puts |
|
42 | 42 | exit(127) |
|
43 | 43 | end |
|
44 | 44 | |
|
45 | 45 | PARAMS = { |
You need to be logged in to leave comments.
Login now