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,51519 gold badges27 silver badges29 bronze badges
1 Answer 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.
answered Mar 5, 2015 at 19:17
-
In that case, couldn't you just add a
#line 1
at the top of the ino file?Gerben– Gerben2015年03月05日 20:38:50 +00:00Commented Mar 5, 2015 at 20:38 -
Sure, but that shouldn't be the responsibility of the programmer.Ignacio Vazquez-Abrams– Ignacio Vazquez-Abrams2015年03月05日 20:39:17 +00:00Commented Mar 5, 2015 at 20:39
-
Thanks for the suggestions. I tried the #line 1 suggestion @Gerben however the errors are still showing on the wrong line.aburdi– aburdi2015年03月06日 16:03:39 +00:00Commented Mar 6, 2015 at 16:03
-
Also thanks @IgnacioVazquez-Abrams I've added this to the issues on the Stino github repository.aburdi– aburdi2015年03月06日 16:03:55 +00:00Commented Mar 6, 2015 at 16:03