Re: Strange new error in make

2021-10-15 Thread Knut Schwichtenberg
Royce, there is another good way to create a problem: If you use -MD to create dependencies make can also crash with a strange message. This happens mostly at the second run. Also here the "\" is the problem. The way to get around this is use -MMD, remove the dependency files (mostly with .d

Re: Strange new error in make

2021-10-14 Thread Knut Schwichtenberg
Royce, please remember were MAKE is coming from. "\" is an escape character in UNIX so if you change your path delimiter to "/" it will work as expected. BTW Windows can handle "/" instead of "\" except the the command line IF does not accept "/". It's not a bug it is M$. Cheers, Knut Am

Re: Strange new error in make

2021-10-14 Thread Royce Pereira
Yes, I found the bug - a recently installed (I wanted to give it a try) toolchain from here: Fast Cross-Platform App Development Software - Embarcadero It had written its own path variables with the path to its own make. I had uninstalled it later, but it did not

Re: Strange new error in make

2021-10-14 Thread dvalin
On 13.10.21 17:31, Royce Pereira wrote:    > Today I started getting this error when i run make:    >    > make: *** No rule to make target `c:avr-gccavrincludeavrio.h', needed    > by `Timer-5D-DD-0715.o'.  Stop. While I'm rusty on make these days, ISTM that there is something wrong with the

Strange new error in make

2021-10-13 Thread Royce Pereira
Hi, Today I started getting this error when i run make: make: *** No rule to make target `c\:\avr-gcc\avr\include\avr\io.h', needed by `Timer-5D-DD-0715.o'. Stop. The offending part is the slash after c (C\:\) I checked for typos in my makefile, but it's happening with all my projects. Note: