How to compile a project created with STM32CubeIDE from terminal on Linux?
After having created a project with STM32CubeIDE, I want to compile it from cmd line interface in Ubuntu.
After "cd <projectdir>/Debug", I do "make -j8 all" but get error message:
arm-none-eabi-size <projectname>.elf
make: arm-none-eabi-size: Command not found
makefile:71: recipe for target 'default.size.stdout' failed
make: *** [default.size.stdout] Error 127
How to compile (e.g.: inside a bash script) the project? What are the tasks STM32CubeIDE executes (e.g. set path of compiler or binutils) before calling make?
