• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

c++ - 库无法链接特定架构的可能原因?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 19:43:16 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我一直在努力将我的 iOS 应用与 arm64 库链接起来。

有问题的库是 Crypto++。我已经尝试了 wiki 中的预编译胖库:http://www.cryptopp.com/wiki/IOS_(Command_Line) .我尝试自己编译库,但我不断收到以下类型的链接错误:

  "std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__init(char const*, unsigned long, unsigned long)", referenced from:
      std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1:perator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(randpool.o)
      std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1:perator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(modes.o)

libcryptopp.a 似乎适用于 armv7,但出于某种原因不适用于 arm64。如果我从链接过程中排除 libcryptopp.a 的 64 位版本,它会给出更多错误。

它们都是使用 -stdlib=libstdc++ 编译的

发生了什么事?

(由于调整开发原因,我需要 arm64 支持)

更新 抱歉 - 原来它使用的是旧的 libcryptopp.a,但没有正确找到 libcryptopp.a。 .a 来自其他地方,已修复。



Best Answer-推荐答案


"std::__1::basic_string, std::__1::allocator >::__init(char const*, unsigned long, unsigned long)", referenced from: ... libcryptopp.a(randpool.o)

这个库已经构建好了,并且依赖于 LLVM 的 C++ 运行时 libc++不是 GNU 的 C++ 运行时 libstdc++

They both were compiled using -stdlib=libstdc++

您需要要么针对libstdc++重建libcryptopp.a链接-stdlib =libc++(以及针对 libc++ 构建其余代码)。


如果有兴趣,__1 是一个用于版本控制的内联命名空间。见 What are inline namespaces for?Where does the __1 symbol come from when using LLVM's libc++? .

关于c++ - 库无法链接特定架构的可能原因?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22110900/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap