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
6161const DEFAULT_WARNINGS_LEVEL = "none"
6262const DEFAULT_SOFTWARE = "ARDUINO"
6363const DEFAULT_BUILD_CORE = "arduino"
64- const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 3
64+ const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 4
6565
6666type Builder struct {}
6767
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ type ContainerFindIncludes struct{}
3939
4040func (s * ContainerFindIncludes ) Run (context map [string ]interface {}) error {
4141 wheelSpins := context [constants .CTX_LIBRARY_DISCOVERY_RECURSION_DEPTH ].(int )
42- for i := 0 ; i < wheelSpins + 1 ; i ++ {
42+ for i := 0 ; i < wheelSpins ; i ++ {
4343 commands := []types.Command {
4444 & IncludesFinderWithGCC {},
4545 & GCCMinusMOutputParser {},
You can’t perform that action at this time.
0 commit comments