undefined reference to `__gxx_personality_v0'

今天使用makefile文件编译测是一个项目遇到下面的提示信息:
cc -o main test.o main.o
test.o:(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
main.o:(.eh_frame+0x12): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
make: *** [main.out] 错误 1

下面是我的makefile文件:
 main:test.o main.o
         cc -o main test.o main.o
 main.o test.o:first.h
 main.o:second.h
 clean:
         rm test.o main.o main

解决方法:C++项目使用g++编译而非gcc。。。。。(弱了一次)
 

你可能感兴趣的:(c,gcc,makefile,reference)