Extract detailed symbol information (struct members) from elf file compiled with ARM-GCC
问题 I’m using ARM-GCC 4.7.4 to compile Code for a Cortex-M4. For our Debug tool I need knowledge about names, types and addresses of all variables in human readable format (e.g. .txt). The map file provides most of the information, unfortunately not for structure contents like below: typedef struct { float32_t Ref; // Input: Reference Value float32_t Fdb; // Variable: Feedback Value float32_t Err; // Input: Control Error float32_t Kp; // Parameter: Gain of the Proportional Part float32_t Up; //