尝试将我的 C 代码嵌入到 PHP 脚本中
我正在学习如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题可能是由于模块名称不匹配造成的(请参阅 %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.