-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdos.json
34 lines (34 loc) · 896 Bytes
/
dos.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
{
"arch": "x86",
"cpu": "i386",
"data-layout": "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128",
"dynamic-linking": false,
"executables": true,
"exe-suffix": ".com",
"linker-flavor": "gcc",
"linker-is-gnu": true,
"llvm-target": "i386-unknown-none-code16",
"max-atomic-width": 64,
"position-independent-executables": false,
"relocation-model": "static",
"disable-redzone": true,
"pre-link-args": {
"gcc": [
"-Wl,--as-needed",
"-Wl,-z,noexecstack",
"-Wl,--gc-sections",
"-m16",
"-nostdlib",
"-march=i386",
"-ffreestanding",
"-fno-pie",
"-Tcom.ld"
]
},
"relro-level": "full",
"target-c-int-width": "32",
"target-endian": "little",
"target-pointer-width": "32",
"os": "none",
"vendor": "unknown"
}