在linux上编译xdebug ->将 32 位选项传递给 ./configure

发布于 2024-08-07 05:50:40 字数 191 浏览 6 评论 0原文

问候!

当尝试编译 xdebug 时,有没有办法向它传递 32 位选项?

我现在拥有的是这样的:

./configure --with-php-config=/opt/lampp/bin/php-config

...或者有没有更好的方法来获取 32 位 xdebug bin?

他克斯

Greetings!

When trying to compile xdebug, is there a way to pass it a 32-bit option?

What I have right now is this:

./configure --with-php-config=/opt/lampp/bin/php-config

... or is there a better way to obtain a 32-bit bin of xdebug?

Thaks

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

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

发布评论

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

评论(2

小瓶盖 2024-08-14 05:50:40

老问题,但有同样的问题,我不想为此安装 32 位 Linux 发行版。

这就是我所做的:

sudo aptitude install g++-multilib
CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure --with-php-config=/opt/lampp/bin/php-config
sudo cp modules/xdebug.so /opt/lampp/lib/php/extensions/

来源:

Old question, but had the same issue and I didn't want to install a 32 bit Linux distribution just for this.

This is what I did:

sudo aptitude install g++-multilib
CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure --with-php-config=/opt/lampp/bin/php-config
sudo cp modules/xdebug.so /opt/lampp/lib/php/extensions/

Source: http://montenasoft.com/en/blog/how-install-pecl-php-extension-64bit-linux-while-you-are-using-32bit-xampp

若水微香 2024-08-14 05:50:40

... 没关系。在 VirtualBox 上安装了 Vector Linux Light,在其上安装了带有开发包的 xampp,并针对它编译了 xdebug。然后将 xdebug.so 转移到正确的 xampp 安装中,它的工作就像一个魅力。

... never mind. Installed Vector Linux Light on VirtualBox, installed xampp with dev package on that and compiled xdebug against that. Then transfered xdebug.so into the proper xampp install and it worked like a charm.

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