Assembly file generation
-
wrote on 5 Sept 2022, 10:39 last edited by
how do we generate a assembly file in qt while building,'
Usually in STMCUBE IDE it will generate the asm file, which will have the memory address of the specifiction instruciton line
This file will be help ful if any hardfault is occured, using the PC , PSR register we will be able to fine out the which program line is generated the hardfault.
in STMCUBE IDE, IAR, Keil will generate this asm file.
In QT how do we generate the complete asm for the source code.. -
how do we generate a assembly file in qt while building,'
Usually in STMCUBE IDE it will generate the asm file, which will have the memory address of the specifiction instruciton line
This file will be help ful if any hardfault is occured, using the PC , PSR register we will be able to fine out the which program line is generated the hardfault.
in STMCUBE IDE, IAR, Keil will generate this asm file.
In QT how do we generate the complete asm for the source code..@sathishgkg This has nothing to do with Qt. With GCC you pass -S parameter to the compiler, so it stops after generating Assembler files.
1/2