-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.plzconfig
104 lines (86 loc) · 2.6 KB
/
.plzconfig
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
[please]
version = >=16.12.1
[parse]
preloadbuilddefs = build_defs/cc.build_defs
[PluginDefinition]
name = cc
[PluginConfig "coverage"]
ConfigKey = Coverage
DefaultValue = true
Type = bool
Inherit = true
Help = Whether to build with coverage
[PluginConfig "coverage_tool"]
ConfigKey = CoverageTool
DefaultValue = gcov
Inherit = true
Help = The path or build target for the C coverage analysis tool
[PluginConfig "cc_tool"]
ConfigKey = CCTool
DefaultValue = gcc
Inherit = true
Help = The path or build label for the C compiler
[PluginConfig "cpp_tool"]
ConfigKey = CPPTool
DefaultValue = g++
Inherit = true
Help = The path or build label for the C++ compiler
[PluginConfig "ld_tool"]
ConfigKey = LDTool
DefaultValue = ld
Inherit = true
Hel- = The path or build label for the linker
[PluginConfig "ar_tool"]
ConfigKey = ARTool
DefaultValue = ar
Inherit = true
Hel- = The path or build label for the archiver
[PluginConfig "default_opt_cflags"]
ConfigKey = DefaultOptCFlags
DefaultValue = --std=c99 -O3 -pipe -DNDEBUG -Wall -Werror
Inherit = true
Help = The default c compiler flags when compiling for release
[PluginConfig "default_dbg_cflags"]
ConfigKey = DefaultDbgCFlags
DefaultValue = --std=c99 -g3 -pipe -DDEBUG -Wall -Werror
Inherit = true
Help = The default c compiler flags when compiling for debug
[PluginConfig "default_opt_cppflags"]
ConfigKey = DefaultOptCppFlags
DefaultValue = --std=c++11 -O3 -pipe -DNDEBUG -Wall -Werror
Inherit = true
Help = The default c++ compiler flags when compiling for release
[PluginConfig "default_dbg_cppflags"]
ConfigKey = DefaultDbgCppFlags
DefaultValue = --std=c++11 -g3 -pipe -DDEBUG -Wall -Werror
Inherit = true
Help = The default c++ compiler flags when compiling for debug
[PluginConfig "default_ldflags"]
ConfigKey = DefaultLdFlags
DefaultValue = -lpthread -ldl
Inherit = true
Help = The default set of flags to apply when linking
[PluginConfig "pkg_config_path"]
ConfigKey = PkgConfigPath
DefaultValue =
Inherit = true
Help = A path to the systems package configs
[PluginConfig "test_main"]
ConfigKey = TestMain
Inherit = true
DefaultValue = //unittest-pp:main
Help = A build label with c/c++ source code to use run tests.
[PluginConfig "dsym_tool"]
ConfigKey = DsymTool
Inherit = true
DefaultValue =
Help = Set this to dsymutil or equivalent on MacOS to use this tool to generate xcode symbol information for debug builds.
[PluginConfig "asm_tool"]
ConfigKey = AsmTool
DefaultValue = nasm
Inherit = true
Help = The tool to use for assembling assembly code
[PluginConfig "default_namespace"]
ConfigKey = DefaultNamespace
DefaultValue =
Help = The default namespace to compile c++ code in