2024-05-22 06:01 AM
Is there a way to configure the STM32CubeIDE to, when trying to run, silently not "launch" when the build fails?
It's nice to have an edit/build/run cycle where, if the build succeeds, it runs and if it fails, it just shows me errors without requiring me to click anything. However, the STM Cube presents the below dialog when trying to run and the build fails. I'm looking for opposite choice: "Never launch without asking on build failures"...
Thanks!
2024-05-23 06:06 AM
I avoid CMake unless I'm target multiple build systems (MSBuild, MSVSPro, XCode, make, ninja, etc.) because it's a whole 'nuther layer of complexity with a terrible DSL and is poorly documented once you get off the "most common denominator" path.
However, when I am (rarely) in that context, it's a godsend. For me, that's always / only when maintaining or extending projects that already use it.
I'm really glad STM32CubeIDE uses make under the hood. Though I do wish for a modern make DSL, lol (I mean... no spaces in filenames? Only "text" functions and no data structures? In 2024?). At least it's very well documented.
- Barrie