File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ const DEFAULT_DEBUG_LEVEL = 5
61
61
const DEFAULT_WARNINGS_LEVEL = "none"
62
62
const DEFAULT_SOFTWARE = "ARDUINO"
63
63
const DEFAULT_BUILD_CORE = "arduino"
64
- const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 3
64
+ const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 4
65
65
66
66
type Builder struct {}
67
67
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ type ContainerFindIncludes struct{}
39
39
40
40
func (s * ContainerFindIncludes ) Run (context map [string ]interface {}) error {
41
41
wheelSpins := context [constants .CTX_LIBRARY_DISCOVERY_RECURSION_DEPTH ].(int )
42
- for i := 0 ; i < wheelSpins + 1 ; i ++ {
42
+ for i := 0 ; i < wheelSpins ; i ++ {
43
43
commands := []types.Command {
44
44
& IncludesFinderWithGCC {},
45
45
& GCCMinusMOutputParser {},
You can’t perform that action at this time.
0 commit comments