-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathocc.project
59 lines (59 loc) · 1.34 KB
/
occ.project
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
{
"preprocessor": "rcd-pp",
"compiler": "rcd-i2o",
"project-linker": "rcd-pl",
"pkg-config": [],
"installdir": "",
"library": "static",
"dependencies": [],
"general-flags": [
"-g",
"-Werror"
],
"pp-flags": [],
"o-flags": [],
"o-env": {},
"additional-src-dirs": [
"src/polarssl",
"src/compiler-rt"
],
"include": [],
"build-masks": {
"test": {
"library": "",
"output": "librcd.self-test",
"pp-flags": [
"-DRCD_SELF_TEST",
"-DDEBUG"
],
"include": ["src"],
"additional-src-dirs": ["tests"]
},
"otest": {
"library": "",
"output": "librcd.self-otest",
"pp-flags": [
"-DRCD_SELF_TEST"
],
"include": ["src"],
"additional-src-dirs": ["tests"],
"o-flags": ["-O1"],
"o-env": {
"LLC_ARGS": "-O1"
}
},
"debug": {
"output": "librcd.debug.a",
"pp-flags": [
"-DDEBUG"
]
},
"release": {
"output": "librcd.a",
"o-flags": ["-O1"],
"o-env": {
"LLC_ARGS": "-O1"
}
}
}
}