how to create assembly files from .c files using nordic make file for freertos case?
how to create assembly files from .c files using nordic make file for freertos case?
Hi,
You can generate assembly from the object files created by the compilation, using objdump:
arm-none-eabi-objdump --disassemble helloworld.c.o > helloworld.c.s
Or a source/assembly mixed dump:
arm-none-eabi-objdump -S --disassemble helloworld.c.o > helloworld.c.dump
You can add this to the makefile if you want it to be created for every object file.
Best regards,
Jørgen