undefined reference to `__aeabi_unwind_cpp_pr0' 问题解决办法

arm-none-linux-gnueabi/bin/ld: section .ARM.extab loaded at [00201008,00201013] overlaps section .data loaded at [00201008,0020103f]
at91sam9260ek.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
main.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
gpio.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
pmc.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
sdramc.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
nandflash.o:(.ARM.exidx+0x0): more undefined references to `__aeabi_unwind_cpp_pr0' follow
nandflash.o:(.ARM.exidx+0x18): undefined reference to `__aeabi_unwind_cpp_pr1'
div0.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'
udiv.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'

string.o:(.ARM.exidx+0x0): undefined reference to `__aeabi_unwind_cpp_pr0'


问题解决:arm-none-linux-gnueabi-gcc加上-nostdlib选项即可

机理
-nostdlib
不连接系统标准启动文件和标准库文件,只把指定的文件传递给连接器。

这个选项常用于编译内核、bootloader等程序,它们不需要启动文件、标准库文件。


C语言程序执行的第一条指令。并不是main函数。生产一个C程序的可执行文件时编译器通常会在我们的代码上加几个被称为启动文件的代码--crt1.o、crti.o、

crtend.o等,他们是标准库文件。这些代码设置C程序的堆栈等,然后调用main函数。他么依赖于操作系统,在裸板上无法执行,所以我们自己写一个。

 

问题已经找到答案了,我们自己写的crt0.S就是一个启动文件,他设置好堆栈后调用main函数。因此,我们不需要系统自带的启动文件。



你可能感兴趣的:(undefined reference to `__aeabi_unwind_cpp_pr0' 问题解决办法)