经过几天的努力终于在arm-linux平台上搭建了apache+sqlite+php平台.
apche与sqlite网上有不少资料,而php for arm-linux很少.为了在arm平台上安装php发了不少时间.所以将搭建过程发表在此,希望对大家有所帮助.
sqlite for arm linux安装
1、 下载sqlite3.3.8:请到http://www.sqlite.org/download.html,将下载的代码包解开,将生成sqlite3.3.8目录
2、 修改configure文件,将下面语句注释掉
#if test $cross_compiling = yes; then
# { { echo $as_me:$lineno:: error: unable to find a compiler for building build tools >&5#echo $as_me: error: unable to find a compiler for building build tools >&2;}
# { (exit 1); exit 1; }; }
#fi
. . .
#else
# test $cross_compiling = yes &&
# { { echo $as_me:$lineno:: error: cannot check for file existence when cross compiling >&5
#echo $as_me: error: cannot check for file existence when cross compiling >&2;}
# { (exit 1); exit 1; }; }
. . .
#else
# test $cross_compiling = yes &&
# { { echo $as_me:$lineno:: error: cannot check for file existence when cross compiling >&5
#echo $as_me: error: cannot check for file existence when cross compiling >&2;}
# { (exit 1); exit 1; }; }
3、