在 Linux 上将 php 模块与 .so 库链接
我正在开发 PHP 模块,但在 Linux 下链接共享库时遇到问题。
我需要在 config.m4 中放入什么命令来链接 .so? 如果我的 .so 文件位于 /usr/lib/ 或 /usr/lib64/ 下,编译器应该能够找到它,对吧?
我当前的 config.m4 文件如下所示
PHP_ARG_ENABLE(my_module, whether to enable my_module support,
[ --enable-my_module Enable my_module support])
if test "$PHP_MY_MODULE" = "yes"; then
AC_DEFINE(HAVE_TERR_MY_MODULELIB,1,[ ])
PHP_NEW_EXTENSION(my_module, my_module.c libSomething.so, $ext_shared)
fi
提前致谢
Alex
I am working on a PHP module and I am having trouble linking with shared libraries under Linux.
What is the command I need to put in my config.m4 to link against a .so?
If I have my .so file under /usr/lib/ or /usr/lib64/ the compiler should be able to find it right?
my current config.m4 file is shown below
PHP_ARG_ENABLE(my_module, whether to enable my_module support,
[ --enable-my_module Enable my_module support])
if test "$PHP_MY_MODULE" = "yes"; then
AC_DEFINE(HAVE_TERR_MY_MODULELIB,1,[ ])
PHP_NEW_EXTENSION(my_module, my_module.c libSomething.so, $ext_shared)
fi
Thanks in advance
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以看一下这个优秀的教程 配置 php 构建系统
您也可以查看此配置。供参考的 m4 文件 示例 config.m4 来自php-logger
如果您还有疑问,请将其作为评论发布,我会回复:)
You can take a look at this excellent tutorial Configuring php build system
Also you can check out this config.m4 file for reference Example config.m4 from php-logger
If you still have questions, post them as comments and I will reply :)