-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBLADE_ROOT
125 lines (123 loc) · 3.16 KB
/
BLADE_ROOT
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
cc_config(
extra_incs= [
'/usr/include/libdwarf',
'thirdparty',
'thirdparty/boost',
'thirdparty/openssl/include',
'thirdparty/bzip2',
'thirdparty/double-conversion',
'thirdparty/googletest/googletest/include',
'thirdparty/googletest/googlemock/include',
'thirdparty/folly',
'thirdparty/glog/src',
'thirdparty/gflags/src',
'thirdparty/libevent/include',
'thirdparty/zstd/lib',
'thirdparty/zlib',
'thirdparty/snappy',
'thirdparty/lz4/lib',
'thirdparty/proxygen',
'thirdparty/wangle',
'thirdparty/rsocket-cpp',
'thirdparty/mstch/include',
'thirdparty/krb5/include/',
'thirdparty/fbthrift',
'blade-bin/thirdparty/fbthrift',
'thirdparty/hash/smhasher/src',
'thirdparty/rapidjson',
'thirdparty/librdkafka/src-cpp/',
'thirdparty/abseil-cpp/',
'thirdparty/eigen',
'thirdparty/catboost/include/',
],
cxxflags=[
'-std=gnu++17',
'-fomit-frame-pointer',
'-momit-leaf-frame-pointer',
'-D_GLIBCXX_USE_CXX11_ABI=0',
'-DBOOST_HASH_CXX17=0',
# refer D104
'-msse3',
'-msse4',
'-msse4.1',
'-msse4.2',
'-mpclmul',
'-fno-builtin-memcmp',
],
cpplint = "cpplint",
warnings = [
# enable C++17 over-aligned new support
'-faligned-new',
'-Wall',
'-Wextra',
# disable some warnings enabled by Wextra
'-Wno-unused-but-set-variable',
'-Wno-unused-parameter',
'-Wno-unused-local-typedefs',
'-Wno-missing-field-initializers',
# other useful warnings
'-Wendif-labels',
'-Wfloat-equal',
'-Wformat=2',
'-Wframe-larger-than=69632', # A 64k buffer and other small vars
'-Wmissing-include-dirs',
'-Wpointer-arith',
'-Wwrite-strings',
# error flags
'-Werror=char-subscripts',
'-Werror=comments',
'-Werror=conversion-null',
'-Werror=empty-body',
'-Werror=endif-labels',
'-Werror=format',
'-Werror=missing-include-dirs',
'-Werror=overflow',
'-Werror=parentheses',
'-Werror=reorder',
'-Werror=return-type',
'-Werror=sequence-point',
#'-Werror=sign-compare',
'-Werror=switch',
'-Werror=type-limits',
'-Werror=uninitialized',
# Masked it at first
# '-Werror=unused-function',
'-Werror=unused-label',
'-Werror=unused-result',
'-Werror=unused-value',
'-Werror=unused-variable',
'-Werror=write-strings',
],
# C++ only warning flags
cxx_warnings = [
'-Wno-invalid-offsetof',
'-Wnon-virtual-dtor',
'-Woverloaded-virtual',
'-Wvla',
'-Werror=non-virtual-dtor',
'-Werror=overloaded-virtual',
#'-Werror=vla',
],
# C only warning flags
c_warnings = ['-Werror-implicit-function-declaration'],
# optimize = '-O0',
)
cc_test_config(
gtest_libs=[
'//thirdparty/googletest:gtest'
],
gtest_main_libs=[
'//thirdparty/googletest:gtest_main'
]
)
fbthrift_library_config(
# The path to thrift compilers.
fbthrift='blade-bin/thirdparty/fbthrift/thrift1',
fbthrift_py='thirdparty/build/py_thrift_compiler.sh',
fbthrift_templates='thirdparty/fbthrift/thrift/compiler/generate/templates',
# The libraries depended by thrift.
fbthrift_libs=[
],
# The extra include paths to be passed to thrift compiler.
fbthrift_incs=[],
)