File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# Espressif IoT Development Framework Configuration
3
3
#
4
+ # Compiler options
5
+ #
6
+ CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS=y
7
+ # end of Compiler options
4
8
#
5
9
# Component config
6
10
#
Original file line number Diff line number Diff line change 1
1
#
2
2
# Espressif IoT Development Framework Configuration
3
3
#
4
+ # Compiler options
5
+ #
6
+ CONFIG_COMPILER_SAVE_RESTORE_LIBCALLS=y
7
+ # end of Compiler options
4
8
#
5
9
# Component config
6
10
#
Original file line number Diff line number Diff line change @@ -139,10 +139,9 @@ def sym_default(sym):
139
139
# to n or the symbol to m in those cases).
140
140
if (
141
141
sym .choice
142
- and not sym .choice .is_optional
143
142
and sym .choice ._selection_from_defaults () is sym
144
- and sym .orig_type is kconfiglib .core .BOOL
145
- and sym .tri_value == 2
143
+ and sym .orig_type == kconfiglib .core .BOOL
144
+ and sym .bool_value == 2
146
145
):
147
146
return True
148
147
You can’t perform that action at this time.
0 commit comments