gpt4 book ai didi

c++ - 使用共享动态库进行交叉编译

转载 作者:搜寻专家 更新时间:2023-10-31 02:20:23 26 4
gpt4 key购买 nike

在我的 C++ 项目中,我正在针对一个使用 OpenSSL 的库进行编译和链接。

我需要为默认安装了 openssl 的 BeagleBone 编译这个项目。我已经在我的开发机器上下载了 libssl-dev

因此,如果我在 x86_64 上为我的开发机器编译,我可以很好地编译项目,但我无法成功交叉编译:

/usr/lib/gcc-cross/arm-linux-gnueabihf/4.8/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lssl
/usr/lib/gcc-cross/arm-linux-gnueabihf/4.8/../../../../arm-linux-gnueabihf/bin/ld: cannot find -lcrypto

这表明我需要为 OpenSSL 使用 armhf 二进制文件,这似乎有点浪费,因为我将它们放在我的 BeagleBone 上,如果它可以耐心等待我部署它

我自己绕过这个交叉编译 OpenSSL 的唯一方法是什么?然后我需要在哪里安装 .so 文件(我猜 make install 是个坏主意?)

最佳答案

This indicates I need to have armhf binaries for OpenSSL

正确。

which seems a bit of a waste really since I have them on my BeagleBone if it can just be patient and wait until I deploy it.

您似乎认为共享库在运行时需要,但事实并非如此。

ELF 代表可执行和链接 格式。 .so 在静态链接时非常需要在主可执行文件中构建各种表,然后加载程序将在运行时使用这些表来解析从主可执行文件到 的引用。所以

如果您熟悉 Win32,您可以将 .so 视为 Win32 .LIB.DLL 的组合,打包成一个单个文件。

关于c++ - 使用共享动态库进行交叉编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32789598/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com