未定义的符号___gxx_personality_v0链路 [英] Undefined Symbol ___gxx_personality_v0 on link

查看:93
本文介绍了未定义的符号___gxx_personality_v0链路的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经得到这个错误的符号使用此命令行建:

I've been getting this undefined symbol building with this command line:

$ gcc test.cpp
Undefined symbols:
  "___gxx_personality_v0", referenced from:
  etc...

TEST.CPP简单,应该建立罚款。什么是交易?

test.cpp is simple and should build fine. What is the deal?

推荐答案

使用

g++ test.cpp

来代替,因为这是C ++ code。

instead, since this is c++ code.

或者,如果你的真正的要使用 GCC 添加 -lstdc ++ 来在命令行,像这样:

Or, if you really want to use gcc, add -lstdc++ to the command line, like so:

gcc test.cpp -lstdc++

运行 MD5 的a.out 每种情况下产生的显示,这是相同的输出。

Running md5 against the a.out produced under each scenario shows that it's the same output.

不过,是的, G ++ 可能使你的世界更简单的地方。

But, yeah, g++ probably makes your world a simpler place.

这篇关于未定义的符号___gxx_personality_v0链路的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆