FFI 错误模块未找到

发布于 2024-11-04 05:37:03 字数 579 浏览 1 评论 0原文

我正在使用 Ubuntu 64 位和 Pharo 1.2.1

我编写了一些从 glibc 访问 crypt(3) 的 FFI 代码。我想将其更改为从使用 apt-get 安装的 libxcrypt 访问 crypt。当我将方法从:更改

ffiCrypt: aKey with: aSalt
<cdecl: char* 'crypt' (char* char*) module: 'crypt'>
^self externalCallFailed

为:时,

ffiCrypt: aKey with: aSalt
<cdecl: char* 'crypt' (char* char*) module: '/lib/libxcrypt.so.1'>
^self externalCallFailed

我收到“未找到外部模块”错误。我已从图像所在的目录链接到 libxcrypt.so.1 文件。

我怀疑它可能是 64 位与 32 位库的问题,或者我需要将该库链接到其他地方但不知道。

我可以检查哪些步骤或事项来尝试找出无法找到外部模块的原因?

I'm using Ubuntu 64bit and Pharo 1.2.1

I've written some FFI code that accesses crypt(3) from glibc. I'd like to change it to access crypt from libxcrypt that I install using apt-get. When I change the method from:

ffiCrypt: aKey with: aSalt
<cdecl: char* 'crypt' (char* char*) module: 'crypt'>
^self externalCallFailed

to:

ffiCrypt: aKey with: aSalt
<cdecl: char* 'crypt' (char* char*) module: '/lib/libxcrypt.so.1'>
^self externalCallFailed

I get External Module Not Found errors. I've linked to the libxcrypt.so.1 file from the directory my image is in.

I suspect it could be a 64 bit vs 32 bit library thing or that I need to link the library somewhere else but do not know.

What are some steps or things I could check to try to track down why the external module cannot be found?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玩心态 2024-11-11 05:37:03

这既是 64 位与 32 位库问题,也是链接问题。

阅读此内容:

http://forum.world.st/FFI- library-dependency-howto-td50461.html#a50462

帮助我了解 Pharo 在哪里寻找库,所以我只需要安装 32 位libxcrypt 并正确链接到它。

It was both a 64bit vs 32bit library issue and a linking issue.

Reading this:

http://forum.world.st/FFI-library-dependency-howto-td50461.html#a50462

helped me learn about where Pharo looks for libraries so I just had to install the 32 bit libxcrypt and link to it properly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文