gcc链接.cpp和.c文件生成的.o库文件的时候,Linking error "undefined reference to `__gxx_personality_v0'"

时间:2021-08-31 02:03:47

Q:用gcc链接.cpp文件可能出现"undefined reference to `__gxx_personality_v0'" 比如:gcc test.o fun.o

其中test.o来自test.cpp文件,fun.o来自fun.c文件

 

A:用g++ test.o fun.o命令来进行链接动作即可。