We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21d2a0f commit 2def251Copy full SHA for 2def251
src/arduino.cc/builder/builder.go
@@ -61,7 +61,7 @@ const DEFAULT_DEBUG_LEVEL = 5
61
const DEFAULT_WARNINGS_LEVEL = "none"
62
const DEFAULT_SOFTWARE = "ARDUINO"
63
const DEFAULT_BUILD_CORE = "arduino"
64
-const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 3
+const DEFAULT_LIBRARY_DISCOVERY_RECURSION_DEPTH = 4
65
66
type Builder struct{}
67
src/arduino.cc/builder/container_find_includes.go
@@ -39,7 +39,7 @@ type ContainerFindIncludes struct{}
39
40
func (s *ContainerFindIncludes) Run(context map[string]interface{}) error {
41
wheelSpins := context[constants.CTX_LIBRARY_DISCOVERY_RECURSION_DEPTH].(int)
42
- for i := 0; i < wheelSpins+1; i++ {
+ for i := 0; i < wheelSpins; i++ {
43
commands := []types.Command{
44
&IncludesFinderWithGCC{},
45
&GCCMinusMOutputParser{},
0 commit comments