Home > Backend Development > PHP Tutorial > 自己编写了个PHP扩展模块,在扩展模块中需要调用另外一个动态库,也是自己写的。Linux下怎么

自己编写了个PHP扩展模块,在扩展模块中需要调用另外一个动态库,也是自己写的。Linux下怎么

WBOY
Release: 2016-06-23 14:01:45
Original
1209 people have browsed it

情况是这样的
做了两个动态库,一个是操作sqlite的,一个是操作postgresql的。这两个动态库接口是一样的。
再做一个PHP扩展模块,调用sqlite的动态库或者postgresql的动态库。
Windows下都正常,在链接的时候会找对应的lib,调用sqlite或者postgresql都行。
但Linux下,编译PHP扩展模块的时候,只找头文件,不找动态库。编译是通过了,但运行的时候就出错。怎么解决下。


回复讨论(解决方案)

先ldd看一下你的扩展是否有找到动态库。
如果可以在加一下ld.so.conf中的动态库搜索路径

找到方法了,
修改 config.m4
PHP_ADD_LIBRARY_WITH_PATH(dbsl, /lib64, ASSETSCTL_SHARED_LIBADD)

先ldd看一下你的扩展是否有找到动态库。
如果可以在加一下ld.so.conf中的动态库搜索路径
请问是如何修改的?我也碰到这也的错误!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template