在 Linux 上将 php 模块与 .so 库链接

发布于 2024-10-31 06:32:51 字数 499 浏览 1 评论 0原文

我正在开发 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 技术交流群。

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

发布评论

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

评论(1

失退 2024-11-07 06:32:51

您可以看一下这个优秀的教程 配置 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 :)

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