我是否必须在 Windows 上编译 PHP 扩展才能在 Windows 上使用它?
我正在尝试在 Windows 7 上编译“hello world”类型扩展,但遇到了各种问题。我的最终目标是使用 PHP 编译的扩展(使用 wampserver2)。
是否可以在 Linux 上编译扩展并在 Windows 上仍然工作?
我注意到 WAMP/PHP 中 ext 文件夹中的所有扩展都是 .dll
。有没有办法在 Linux 机器上生成适用于 Windows 的 DLL,还是我也必须在 Windows 上编译?
I'm trying to compile a "hello world" type extension on Windows 7, but I'm running into all kinds of problems. My end goal is to use the compiled extension with PHP (using wampserver2).
It it possible to compile the extension on Linux and still have it work on Windows?
I noticed all extensions in the ext folder in WAMP/PHP are .dll
. Is there a way to produce a DLL for Windows on a linux machine, or do I have to compile on Windows too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
交叉编译是可能的,但是你需要在Linux系统上有一个基本的Windows开发环境(例如Wine)来供编译器使用。为了让生成的 .dll 在真正的 Windows 系统上工作而付出的努力很可能是不值得的。
It'd be possible to cross-compile, but then you'd need to have basically a windows development environment on the linux system (e.g. Wine) for the compiler to work with. The effort involved in getting that working to the point where the resulting .dlls work on a REAL windows system is most likely not worth it.