我用GCC-fdump-rtl-expand
和-finstrument-functions
做函數調用跟蹤,確實器armcc有這種類似的功能呢?如何使用'armcc'編譯器來跟蹤函數調用?
對於GCC,我使用:
CFLAGS += -finstrument-functions -fdump-rtl-expand
器armcc是否有類似的編譯器選項?我嘗試同樣的,但似乎他們不工作:
$ armcc -finstrument-functions test.c
Fatal error: C3900U: Unrecognized option '-finstrument-functions'.
$ armcc -fdump-rtl-expand test.c
Fatal error: C3900U: Unrecognized option '-fdump-rtl-expand'.
你試過了嗎? –
是的,我試過了,沒有這兩個選項 –