This repository has been archived by the owner on May 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
c2go.cfg
129 lines (128 loc) · 4.27 KB
/
c2go.cfg
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"libc": true,
"public": {
"from": [
"./include/stdio.h",
"./include/math.h",
"./include/stdlib.h",
"./include/string.h",
"./include/ctype.h",
"./c2go/include/unistd.h",
"./c2go/include/bits/alltypes.h"
]
},
"target": {
"name": "libc",
"dir": "."
},
"source": {
"ignore": {
"names": [
"abort", "getcwd",
"a_cas", "a_ll", "a_sc", "a_swap", "a_fetch_add",
"__syscall0", "__syscall0_r1",
"__syscall1", "__syscall2", "__syscall3",
"__syscall4", "__syscall5", "__syscall6",
"__syscall1_r1", "__syscall2_r1", "__syscall3_r1",
"__syscall4_r1", "__syscall5_r1", "__syscall6_r1",
"__syscall_ret", "__syscall_cp",
"__libc_malloc", "malloc", "realloc", "calloc", "free",
"__builtin_inff", "__builtin_nanf",
"__pthread_self"
],
"files": [
"./src/env/__init_tls.c",
"./src/env/__libc_start_main.c",
"./src/env/__reset_tls.c",
"./src/env/__stack_chk_fail.c",
"./src/crypt/crypt_blowfish.c",
"./src/unistd/dup3.c",
"./src/unistd/faccessat.c",
"./src/unistd/ftruncate.c",
"./src/unistd/pause.c",
"./src/unistd/pipe2.c",
"./src/unistd/pread.c",
"./src/unistd/pwrite.c",
"./src/unistd/setegid.c",
"./src/unistd/seteuid.c",
"./src/unistd/setpgrp.c",
"./src/unistd/setregid.c",
"./src/unistd/setresgid.c",
"./src/unistd/setresuid.c",
"./src/unistd/sleep.c",
"./src/unistd/truncate.c",
"./src/unistd/ttyname.c",
"./src/unistd/ttyname_r.c",
"./src/unistd/usleep.c",
"./src/misc/syscall.c",
"./src/misc/getresgid.c",
"./src/misc/getresuid.c",
"./src/misc/getrlimit.c",
"./src/misc/ioctl.c",
"./src/misc/getdomainname.c",
"./src/misc/setdomainname.c",
"./src/misc/setrlimit.c",
"./src/misc/syslog.c",
"./src/misc/uname.c",
"./src/misc/realpath.c",
"./src/stdio/puts.c",
"./src/stdio/vfscanf.c",
"./src/stdio/vfwscanf.c",
"./src/stdio/vfwprintf.c",
"./src/stdio/freopen.c",
"./src/stdio/ftrylockfile.c",
"./src/stdio/popen.c",
"./src/stdio/open_memstream.c",
"./src/stdio/open_wmemstream.c",
"./src/unistd/getcwd.c"
]
},
"dirs": [
"./src/unistd",
"./src/env",
"./src/crypt",
"./src/misc",
"./src/math",
"./src/stdio",
"./src/prng",
"./src/ctype",
"./src/string"
],
"files": [
"./src/thread/__lock.c",
"./c2go/floatscan.c",
"./c2go/shgetc.c",
"./c2go/c2go.c",
"./src/internal/libc.c",
"./src/errno/strerror.c",
"./src/errno/__errno_location.c",
"./src/fenv/fenv.c",
"./src/fenv/fesetround.c",
"./src/stdlib/strtod.c",
"./src/stdlib/qsort.c",
"./src/mman/mmap.c",
"./src/mman/munmap.c",
"./src/time/__map_file.c",
"./src/locale/__mo_lookup.c",
"./src/locale/__lctrans.c",
"./src/locale/c_locale.c",
"./src/locale/locale_map.c"
]
},
"include": [
"./c2go/include",
"./src/internal",
"./src/include",
"./include",
"./arch/arm",
"./arch/generic"
],
"flags": [
"-Wno-shift-op-parentheses",
"-Wno-unsupported-visibility",
"-Wno-void-pointer-to-int-cast",
"-Wno-pointer-to-int-cast",
"-Wno-absolute-value",
"-Wno-incompatible-library-redeclaration"
]
}