-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrgen.json
88 lines (88 loc) · 2.06 KB
/
brgen.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
{
"src2json": "./tool/src2json",
"libs2j": "./tool/libs2j",
"input_dir": [
"./example/",
"./example/gen_step/",
"./example/brgen_help",
"./example/vm_test",
"./example/feature_test"
],
"suffix": ".bgn",
"warnings": {
"disable_untyped": true,
"disable_unused": true
},
"test_info_output": "./ignore/example/test_info.json",
"output": [
{
"generator": "./tool/json2cpp2",
"output_dir": "./ignore/example/cpp2/",
"args": ["--add-line-map", "--use-error", "--use-overflow-check"]
},
{
"generator": "./tool/json2go",
"output_dir": "./ignore/example/go/",
"args": [
"-map-word",
"Id=ID",
"-map-word",
"IDentifier=Identifier",
"-map-word",
"Tcpsegment=TCPSegment",
"-map-word",
"Udpdatagram=UDPDatagram",
"-map-word",
"Udpheader=UDPHeader",
"-map-word",
"icmp=ICMP",
"-test-info"
]
},
{
"generator": "./tool/json2kaitai",
"output_dir": "./ignore/example/kaitai/"
},
{
"generator": "./tool/src2json",
"output_dir": "/dev/stdout",
"args": ["--check-ast", "--stdin", "--force-ok"]
},
{
"generator": "./tool/json2mermaid",
"output_dir": "./ignore/example/mermaid/",
"args": ["-as-code-block", "-format"]
},
{
"generator": "./tool/json2rust",
"output_dir": "./ignore/example/rust/",
"args": ["--add-map"],
"ignore_missing": true
},
{
"generator": "./tool/json2c",
"output_dir": "./ignore/example/c/",
"args": [
"--add-line-map",
"--use-overflow-check",
"--single",
"--zero-copy",
"--use-memcpy"
]
},
{
"generator": "./tool/json2vm",
"output_dir": "./ignore/example/vm/"
},
{
"generator": "./tool/json2ts",
"output_dir": "./ignore/example/ts/",
"args": []
},
{
"generator": "./tool/json2ts",
"output_dir": "./ignore/example/ts/",
"args": ["--javascript"]
}
]
}