Hi everyone, For specific needs, I would like to build RIOT applications on windows. I followed this tutorial : Build RIOT on Windows OS · RIOT-OS/RIOT Wiki · GitHub All goes smoothly until I try to build. I use Eclipse IDE, and when I build with de command make BOARD=${RIOT_BOARD} I have Error: Program “make BOARD=nucleo-f411re” not found in PATH When I try to build through command line, I get : $ make BOARD=${RIOT_BOARD} /c/Users/bousq/Documents/git_repos/RIOT/examples/hello-world/…/…/Makefile.include:6: *** GNU Make 3.81 is not supported by RIOT since release 2020.01. Please upgrade your system to use GNU Make 4.% or later… Stop.
So I assume make is not found in PATH because even if make actually is in PATH, it is not the right version, so Eclipse consider make isn’t in PATH.
I managed to get gnumake-4.3-x64.exe, and when I try with this, I get: C:/Users/bousq/Documents/git_repos/RIOT/Makefile.features:16: *** CPU must be defined by board / board_common Makefile.features. Stop. I don’t have this issue on Ubuntu. What are the other ways to have make v4.3 on windows ? Additional question : could we force RIOT to use make v3.8? What are the v4.% features that RIOT require? Thank you for you help Regards