标签: c++ linux gcc assembly gas
例如,我使用 asm 在c ++程序中编写一个简单的asm函数。但即使我使用-g编译程序,我仍然无法找到asm函数的.debug_frame。
__asm__ ( ".text\n\t" ".align 2\n\t" ".globl " SYMBOL_UNDERSCORE "do_some_test\n\t" // do some thing )
我使用readelf -wf找不到函数do_some_test的调试帧。那我该怎么办呢?