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
The IN_CI define is supposed to let me modify my code example if I'm compiling in the CI.
However, I get this error message:
/home/ryantm/.arduino15/packages/Intel/hardware/arc32/2.0.4/cores/arduino/error.h:24:19: fatal error: os/os.h: No such file or directory #include "os/os.h"
resolvesarduino#599
By leaving extra_flags empty, we leave a hook for the end-user to use
without having to duplicate a bunch of flags. This matches how the AVR
core leaves the extra_flags blank.
In my continuous integration pipeline, I was using the arduino-cli to compile an Arduino library example for the Intel:arc32:arduino_101 like:
The
IN_CI
define is supposed to let me modify my code example if I'm compiling in the CI.However, I get this error message:
If I add in the cpp.extra_flags, it compiles fine:
I also noticed that the avr core does not populate these extra_flags.
I haven't found documentation on it, but I believe that the extra_flags should be empty so that the local build system can use them.
The text was updated successfully, but these errors were encountered: