-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmanifest.json
104 lines (104 loc) · 3.29 KB
/
manifest.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"self-hosted-parser": {
"description": "Walk std lib, parse, iterate nodes",
"kind": "zig-bench",
"dir": "self-hosted-parser",
"mainPath": "main.zig"
},
"zig-fmt": {
"description": "Run zig fmt on the std lib",
"kind": "zig-bench",
"dir": "self-hosted-parser",
"mainPath": "zigfmt-main.zig"
},
"translate-c-windows-h": {
"description": "translate-c windows.h",
"kind": "zig-bench",
"dir": "translate-c",
"mainPath": "main.zig"
},
"arena-allocator": {
"description": "std.heap.ArenaAllocator - General-purpose usage",
"kind": "zig-bench",
"dir": "arena-allocator",
"mainPath": "main.zig"
},
"std-rand": {
"description": "Generate random numbers",
"kind": "zig-bench",
"dir": "rand",
"mainPath": "main.zig"
},
"std-hash-map": {
"description": "std.AutoHashMap - Project Euler 14",
"kind": "zig-bench",
"dir": "std-hash-map",
"mainPath": "project-euler-14-main.zig"
},
"insert-10M-int": {
"description": "std.AutoHashMap - Insert 10M integers",
"kind": "zig-bench",
"dir": "std-hash-map",
"mainPath": "insert-10M-int.zig"
},
"random-distinct": {
"description": "std.AutoHashMap - Random distinct",
"kind": "zig-bench",
"dir": "std-hash-map",
"mainPath": "random-distinct.zig"
},
"random-find": {
"description": "std.AutoHashMap - Random find",
"kind": "zig-bench",
"dir": "std-hash-map",
"mainPath": "random-find.zig"
},
"ast-check-os": {
"description": "Run ast-check on std.os",
"kind": "zig-bench",
"dir": "ast-check",
"mainPath": "astcheck-os.zig"
},
"ast-check-AstGen": {
"description": "Run ast-check on AstGen.zig",
"kind": "zig-bench",
"dir": "ast-check",
"mainPath": "astcheck-self.zig"
},
"ast-check-Sema": {
"description": "Run ast-check on Sema.zig",
"kind": "zig-bench",
"dir": "ast-check",
"mainPath": "astcheck-sema.zig"
},
"build-tetris-llvm-x86_64-linux-gnu": {
"description": "Compile a simple Tetris game with the LLVM backend in ReleaseFast mode for x86_64-linux-gnu",
"kind": "zig-bench",
"dir": "tetris",
"mainPath": "main.zig"
},
"comptime-guid-parse": {
"description": "Parse a GUID at comptime",
"kind": "zig-bench",
"dir": "guid",
"mainPath": "comptime-guid-parse-bench.zig"
},
"build-hello-world-aarch64-linux": {
"description": "Compile a simple Hello World program with the aarch64 backend in Debug mode for Linux",
"kind": "zig-bench",
"dir": "hello-world",
"mainPath": "main-aarch64-linux.zig"
},
"build-hello-world-x86_64-linux": {
"description": "Compile a simple Hello World program with the x86_64 backend in Debug mode for Linux",
"kind": "zig-bench",
"dir": "hello-world",
"mainPath": "main-x86_64-linux.zig"
},
"build-self-hosted": {
"description": "Use stage2 to build stage3",
"kind": "zig-bench",
"dir": "build-self-hosted",
"mainPath": "stage2.zig"
}
}