-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.plzconfig
56 lines (43 loc) · 2.1 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
[please]
version = >=17.1.0
[Plugin "cc"]
Target = //plugins:cc
DefaultOptCppflags = -Wall -Werror=suggest-override -Werror=return-type -Werror=non-virtual-dtor -Werror=catch-value -Wno-unused-variable -Wno-reorder -Wno-sign-compare \
-DSTM32F730xx -DUSE_HAL_DRIVER \
-Os -fdata-sections -ffunction-sections --specs=nano.specs -Wl,--gc-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics \
-mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
DefaultDbgCppflags = -Wall -Werror=suggest-override -Werror=return-type -Werror=non-virtual-dtor -Werror=catch-value -Wno-unused-variable -Wno-reorder -Wno-sign-compare \
-DSTM32F730xx -DUSE_HAL_DRIVER -DDEBUG \
-g3 -fdata-sections -ffunction-sections --specs=nano.specs -Wl,--gc-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics \
-mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
DefaultOptCFlags = -DSTM32F730xx -DUSE_HAL_DRIVER \
-Os -fdata-sections -ffunction-sections --specs=nano.specs -Wl,--gc-sections \
-mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
DefaultDbgCFlags = -DSTM32F730xx -DUSE_HAL_DRIVER -DDEBUG \
-g3 -fdata-sections -ffunction-sections --specs=nano.specs -Wl,--gc-sections \
-mcpu=cortex-m7 -mfpu=fpv4-sp-d16 -mfloat-abi=hard
DefaultLdFlags =
CPPTool = "arm-none-eabi-g++"
CCTool = "arm-none-eabi-gcc"
ARTool = "arm-none-eabi-ar"
LDTool = "arm-none-eabi-ld"
[PluginDefinition]
name = stm32
[PluginConfig "cubeMX_tool"]
ConfigKey = CubeMXTool
DefaultValue = ~/STM32CubeMX/STM32CubeMX
Inherit = true
Type = str
Help = The path to STM32CubeMX to use.
[PluginConfig "xvfb_tool"]
ConfigKey = xvfbTool
DefaultValue = xvfb-run
Inherit = true
Type = str
Help = The x11 dummy provider command to hide the STM32CubeMX GUI with.
[PluginConfig "hideGUI"]
ConfigKey = hideGUI
DefaultValue = true
Inherit = true
Type = bool
Help = Sets if the STM32CubeMX should be hidden or shown. Useful to debug if the auto generation gets stuck because a user prompt was shown.