forked from facebookarchive/android-jsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.buckconfig
124 lines (124 loc) · 2.48 KB
/
.buckconfig
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
[buildfile]
includes = //BUILD_DEFS
[ndk]
ndk_version = r10c
cppflags = \
-std=gnu11 \
-Wall \
-Werror \
-g3 \
-DNEBUG \
-fstack-protector
cflags = \
-std=gnu11 \
-Wall \
-Werror \
-g3 \
-Wa,--noexecstack \
-fstack-protector \
-ffunction-sections \
-funwind-tables \
-fomit-frame-pointer \
-fno-strict-aliasing
cxxppflags = \
-std=gnu++11 \
-Wall \
-Werror \
-Wno-literal-suffix \
-g3 \
-DNEBUG \
-fstack-protector \
-fno-exceptions \
-fno-rtti
cxxflags = \
-std=gnu++11 \
-Wall \
-Werror \
-g3 \
-Wa,--noexecstack \
-fstack-protector \
-ffunction-sections \
-funwind-tables \
-fomit-frame-pointer \
-fno-strict-aliasing \
-fno-exceptions \
-fno-rtti
ldflags = \
-Wl,--build-id \
-Wl,-z,noexecstack \
-Wl,--gc-sections \
-Wl,-z,defs \
-Wl,-z,nocopyreloc \
-Wl,--as-needed
arm_cppflags = \
-mthumb \
-Os
arm_cflags = \
-mtune=xscale \
-msoft-float \
-mthumb \
-Os
arm_cxxppflags = \
-mthumb \
-Os
arm_cxxflags = \
-mtune=xscale \
-msoft-float \
-mthumb \
-Os
arm_ldflags = \
-Wl,--fix-cortex-a8
armv7_cppflags = \
-mfloat-abi=softfp \
-mthumb \
-Os
armv7_cflags = \
-finline-limit=64 \
-mfpu=vfpv3-d16 \
-mfloat-abi=softfp \
-mthumb \
-Os
armv7_cxxppflags = \
-mfloat-abi=softfp \
-mthumb \
-Os
armv7_cxxflags = \
-finline-limit=64 \
-mfpu=vfpv3-d16 \
-mfloat-abi=softfp \
-mthumb \
-Os
x86_cppflags = \
-O2
x86_cflags = \
-funswitch-loops \
-finline-limit=300 \
-O2
x86_cxxppflags = \
-O2
x86_cxxflags = \
-funswitch-loops \
-finline-limit=300 \
-O2
[cxx]
preprocess_mode = piped
cppflags = \
-std=gnu11 \
-pthread \
-O0 \
-g3
cflags = \
-std=gnu11 \
-pthread \
-O0 \
-g3
cxxppflags = \
-std=gnu++11 \
-pthread \
-O0 \
-g3
cxxflags = \
-std=gnu++11 \
-pthread \
-O0 \
-g3