交叉编译php

前端之家收集整理的这篇文章主要介绍了交叉编译php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正试图交叉编译PHP for arm并取得了很好的进展,但我完全陷入了想要运行PHP本身的地方(不知道为什么).因为它是一个arm二进制而不是intel(我的构建平台)它不会运行:
/bin/sh: /path-to-build/sapi/cli/PHP: cannot execute binary file

我怎样才能解决这个问题?配置脚本理解我是交叉编译但没有做任何事情(来自配置日志):

checking whether the C compiler (/path-to-compiler/arm-none-linux-gnueabi-gcc) is a cross-compiler... yes

我正在使用configure命令行编译PHP-5.3.6:

export CC=/path-to-cc/arm-none-linux-gnueabi-gcc
../configure --prefix=/prefix-path/ --host=arm-none-linux-gnueabi
             --disable-libxml --disable-dom --disable-openssl
             --without-iconv --without-openssl --disable-simplexml
             --disable-xml --disable-xmlreader --disable-xmlwriter
             --without-pear --without-sqlite --without-sqlite3
             --disable-pdo --without-pdo-sqlite
我通过禁用phar来解决这个问题.我希望禁用这么多模块不会破坏内部的东西.
原文链接:https://www.f2er.com/php/240120.html

猜你在找的PHP相关文章