尝试将我的 C 代码嵌入到 PHP 脚本中

发布于 2024-10-28 05:00:43 字数 160 浏览 4 评论 0原文

我正在学习如何使用 SWIG,并且正在为 C 库编写 php 包装器。扩展成功编译,但是当我尝试调用该函数时,出现此错误:

php:符号查找错误:/usr/lib/php5/20090626+lfs/fact.so:未定义符号:事实

I am learning how to use SWIG, and I am writing a php wrapper for a C library. The extension successfully compiles, but when I try to call the function I get this error:

php: symbol lookup error: /usr/lib/php5/20090626+lfs/fact.so: undefined symbol: fact

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

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

发布评论

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

评论(1

时光瘦了 2024-11-04 05:00:43

您的问题可能是由于模块名称不匹配造成的(请参阅 %module,或在命令行上传递)和您正在生成的 .so 文件的名称。

PHP 或任何接受可加载二进制模块的系统都会对其尝试加载的库的入口点名称做出某些假设。 PHP 似乎假设文件名(fact.so)将包含一个名为“fact”的函数。

当您运行 SWIG 时,将模块名称显式设置为“fact”可能会解决您的问题。如果没有,发布生成的 SWIG 源文件可以帮助我们调试您的问题。

Your problem is probably due to a mismatch in the name of the module (see %module, or passed on the command line) and the name of the .so file you are generating.

PHP, or any system that accepts loadable binary modules, is going to make certain assumptions about the name of the entry point into the library it is trying to load. PHP seems to be assuming that the file name (fact.so) is going to contain a function called "fact".

When you run SWIG, explicitly setting the module name to "fact" will probably solve your problem. If not, posting the generated SWIG source file could help us debug your problem.

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