1

When compiling for Arduino via the Stino plugin line numbers are not represented correctly in the output. For example, I have an error on line 117 however the output is: sketch_name.ino.cpp:136:1: error:

VE7JRO
  • 2,515
  • 19
  • 27
  • 29
aburdi
  • 13
  • 2

1 Answers1

1

The #line preprocessor directive is used to tell GCC both what the next line should be numbered as and what filename should be reported, and the plugin is not generating them properly. This is therefore a Stino bug.

Ignacio Vazquez-Abrams
  • 17,733
  • 1
  • 28
  • 32