startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(.text) for Reset_Handler
startup_stm32f10x_hd.o(RESET) refers to bsp_systick.o(i.SysTick_Handler) for SysTick_Handler
startup_stm32f10x_hd.o(RESET) refers to main.o(i.EXTI0_IRQHandler) for EXTI0_IRQHandler
startup_stm32f10x_hd.o(RESET) refers to bsp_usart.o(i.USART1_IRQHandler) for USART1_IRQHandler
startup_stm32f10x_hd.o(.text) refers to system_stm32f10x.o(i.SystemInit) for SystemInit
startup_stm32f10x_hd.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main ....
疑问:
首先, 对于上面的交叉引用某一行的内容我的理解是它表达的为某个目标文件内的某一个段area对另一个目标文件内的某个段 通过某个符号进行了引用;
比如第1行表示的是启动文件里的RESET段引用了启动文件里的STACK段的 _iniital_sp符号;
问题:为何上内容有RESET段对.text段的Reset_handler符号的引用, 但却没有RESET段对 .text段的 PendSV_Handler 等中断函数符号的引用行记录呢, 这是何解;
麻烦解答.