2020-04-30 09:10 PM
Request someone to suggest the build settings to output assembly code while compiling in STM32CubeIDE.
2020-05-01 01:28 AM
You are talking about gcc options, see gcc manual (and perhaps as/gas manual for the assembler options, see -Wa,-a below)
-S outputs asm only (i.e. won't assemble into object)
-save-temps outputs intermediate files
-Wa,-adlns=somefile.lst outputs assembler's listing (-a is the main flag, "dlns" are just modifiers detemining what goes into the listing)
JW
2020-05-01 05:36 AM
Have you looked in the .list file generated along the executanble?