Closed
Description
When compiling sketches from the command line it seems that the include file behavior is different. The sketch below compiles in the IDE but fails from the command line with the error: "itest:2:18: error: test.h: No such file or directory". This is a simple sketch to demonstrate the problem. I have itest.ino and test.h. One note is that removing the ESP8266WiFi.h include fixes it. It seems that there is some funky include path stuff happening.
The sketch is as follows:
#include <ESP8266WiFi.h>
#include "test.h"
void setup()
{
}
void loop()
{
}