library resolution is wrong when a core is installed both manually and via boards manager (which is common and recommended) #1880
Labels
conclusion: duplicate
Has already been submitted
type: imperfection
Perceived defect in any part of project
Describe the problem
Some cores recommend doing a board-manager install to install toolchains and then manually installing the core into ~/Arduino/hardware/.
After doing this, the board selection correctly says megaTinyCore (in sketchbook)
However, I was chasing down a bug I previously fixed in head of tree that re-appeared and discovered that Arduino was loading libraries from the board-manager version while claiming to be using the SketchBook version.
https://arduino.github.io/arduino-cli/0.21/sketch-build-process/#dependency-resolution documents the dependency resolution order and the behavior is not consistent with the documentation.
To reproduce
launch IDE 2.0

Install megaTinyCore via board-manager
close IDE 2.0
Insert a bug a library. For example #error("This file should not be in use") in Comparator.h (see below for a full path). Or in this case, leverage one that was already there but fixed in head of tree. (the version that I used is blocked from installs so use the #errror path. 2.5.11 or 2.6.1 depending on whether 2.6.1 is available when you go to reproduce.)
Install megaTinyCore in sketchbook (git clone https://github.com/SpenceKonde/megaTinyCore.git)
launch IDE 2.0
select a board from the core labeled (in sketchbook)
Attempt to compile a sketch that includes < Comparator.h >
get an error indicating a path that should not be used caused an error. Copy paste the error into something with a readable color:
Expected behavior
the library installed under the sketchbook version of the core to be used in preference to the one installed by boards manager. The #error to not be brought into the compilation.
This was tested both against a vanilla 2.0.0 install and with the current nightly dropped in.
Arduino CLI version
arduino-cli Version: 0.27.1 Commit: a900cfb Date: 2022-09-06T16:44:27Z. and arduino-cli Version: nightly-20220917 Commit: 7d1916d Date: 2022-09-17T01:35:38Z
Operating system
macOS
Operating system version
12.5.1
Additional context
No response
Issue checklist
The text was updated successfully, but these errors were encountered: