undefined reference to `__gxx_personality_v0' collect2: ld returned 1 exit status

来源:互联网 发布:java date 24小时制 编辑:程序博客网 时间:2024/06/06 03:46

[root@localhost dss]# gcc -o abc abc.cpp
/tmp/ccY3hmyr.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status
[root@localhost dss]# gcc -o abc abc.cpp -lstdc++

有两种讲法:

1. Linux Develop Notes

    * 编译 c++ 程序需要添加 -lstdc++ option. sample: gcc -lstdc++ -o test test
.c,否则会报 "undefined reference to '__gxx_personality_v0' " 错误

2. 唉,用gcc命令编译C程序,用g++命令编译C++程序。

原创粉丝点击