2024-01-23 08:25 AM
When I build a project I noticed that the command `make -j9 all` is run, which suggests me that there is Makefile somewhere, but it is not in my project folder.
Does anybody know where I can find it?
I am working with a Nucleo-F446RE.
Solved! Go to Solution.
2024-01-23 08:33 AM
Ok. I found them in ./Debug and ./Release, depending on how you build your project.
2024-01-23 08:27 AM
Found!
2024-01-23 08:32 AM
For the benefit of others who may come along with the same question, please describe where you found it.
And mark that as the Solution.
2024-01-23 08:33 AM
Ok. I found them in ./Debug and ./Release, depending on how you build your project.
2024-01-23 08:36 AM
... however, when going into any of these two folders and running make all you get errors like
arm-none-eabi-gcc: command not found
2024-01-23 08:40 AM
Probably because the IDE runs the makefile from its own internal "shell" - so you'd have to replicate that to make it work.
2024-01-23 08:41 AM
Any idea on how to do that?
2024-01-23 08:54 AM
None at all!
Are you on Windows or Linux?
I think the IDE uses a Linux-like "shell"...
2024-01-23 08:55 AM
I found this :
and setting in project :
seems not lying here:
2024-01-23 08:56 AM
I am on macos. Yes, I also think so. Is there any way to open an interactive "cube shell" on CubeIDE?