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命令来进行链接动作即可。
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命令来进行链接动作即可。