You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Brand new way of discovering libraries and related -I gcc parameters
For each source file found, gcc -E is continuously run until it doesn't report
any error. When it reports an error, it is in the form of
Ethernet.h: No such file or directory
#include <Ethernet.h>
Ethernet.h is searched from known libraries, its -I param added to gcc -E and
gcc -E is rerun
If Ethernet.h is not found, preprocessing fails and reports an error
If found, the collected list of -I params is used to preprocess another (sketch
or library) source file, until all dependendent libraries are resolved
Fixes#33
Signed-off-by: Federico Fissore <[email protected]>
0 commit comments