-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
57 lines (57 loc) · 1.17 KB
/
config.json
File metadata and controls
57 lines (57 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"compiler": {
"gcc": {
"file_extension": ".c",
"flags": "-o %out%.o -c %in%",
"post_compile": "gcc %out%.o -o %out%",
"cleanup": "rm %out%.o %out%",
"is_interpreted": false
},
"g++": {
"file_extension": ".cpp",
"flags": "-o %out%.o -c %in%",
"post_compile": "g++ %out%.o -o %out%",
"cleanup": "rm %out%.o %out%",
"is_interpreted": false
},
"as": {
"file_extension": ".S",
"flags": "%in% -o %out%.o",
"post_compile": "ld %out%.o -o %out%",
"cleanup": "rm %out%.o %out%",
"is_interpreted": false
},
"rustc": {
"file_extension": ".rs",
"flags": "%in% -o %out%",
"post_compile": "exit #we don't need this",
"cleanup": "rm %out%",
"is_interpreted": false
},
"node": {
"file_extension": ".js",
"flags": "%in%",
"is_interpreted": true
},
"python3": {
"file_extension": ".py",
"flags": "%in%",
"is_interpreted": true
},
"go": {
"file_extension": ".go",
"flags": "run %in%",
"is_interpreted": true
},
"bash": {
"file_extension": ".sh",
"flags": "%in%",
"is_interpreted": true
},
"java": {
"file_extension": ".java",
"flags":"%in%",
"is_interpreted": true
}
}
}