Firebase iOS sdk错误找不到__gxx_personality_v0

时间:2017-02-11 21:22:57

标签: ios firebase firebase-authentication

我手动安装Firebase Auth SDK,而不是使用cocoapods,我收到了这个奇怪的错误:

Undefined symbols for architecture x86_64:
  "___gxx_personality_v0", referenced from:
  +[FIRHash calculatedFingerprintForString:] in FirebaseCore(FIRHash_11b6df6535f55516149376a0824d22ab.o)
  ld: symbol(s) not found for architecture x86_64

我安装了Auth框架所依赖的所有资源,因此我不确定为什么会发生这种情况。文档没有提到安装任何其他内容。知道如何实现这一目标吗?

1 个答案:

答案 0 :(得分:0)

xcode构建没有链接C ++库。

添加" -lc ++"到其他链接器标志

enter image description here