[Kicad-developers] grammar.c not found,

2018-12-21 Thread Lachlan Audas
Hi, just pull the lest-est developer build from git-hub for KiCad and tried compiling it. But but get this Error, missing file "grammar.c" >kicad-source-mirror/common/libeval/numeric_evaluator.cpp:36:21: fatal error: grammar.c: No such file or directory #include "grammar.c" the 5.0.2 version h

Re: [Kicad-developers] grammar.c not found,

2018-12-22 Thread Nick Østergaard
Hi Lachlan, Are you sure that your workspace is clean? I don't see any issues on any platform. Nick On Sat, 22 Dec 2018 at 06:53, Lachlan Audas wrote: > > Hi, just pull the lest-est developer build from git-hub for KiCad > and tried compiling it. But but get this Error, missing file "grammar

Re: [Kicad-developers] grammar.c not found,

2018-12-23 Thread John Beard
Hi, It seems "make clean" might be the trigger here. The target for the libeval grammar is done with CMake add_custom_command with an OUTPUT. This means the output file will be cleaned on "make clean", but as the grammar.c is not then regenerated by default, it will be missing until checked out fr

Re: [Kicad-developers] grammar.c not found,

2019-01-03 Thread John Beard
Note, this bug can only be triggered if you do have Lemon installed. Otherwise the grammar.c file is just another file. So make clean is safe unless you have lemon installed! Cheers, John On 23 December 2018 21:32:50 GMT, John Beard wrote: >Hi, > >It seems "make clean" might be the trigger h

Re: [Kicad-developers] grammar.c not found,

2019-01-05 Thread Seth Hillbrand
I've pushed your patch. Thanks for tracking this down John! Best- Seth Am 2018-12-23 16:32, schrieb John Beard: Hi, It seems "make clean" might be the trigger here. The target for the libeval grammar is done with CMake add_custom_command with an OUTPUT. This means the output file will be clea