一、前言
lighttpd交叉编译并移植到iTop4412平台
二、编译环境
三、编译过程
1.pcre交叉编译
tar -xvf pcre-8.38.tar.bz2
cd pcre-8.38/
./configure --host=arm-none-linux-gnueabi --prefix=/ --enable-utf8 --enable-unicode-properties
make
make DESTDIR=/test install
在执行make的时候出现如下错误:
解决方式:安装libpcre3-dev
sudo apt install libpcre3-dev
2.lighttpd交叉编译
下载并解压软件包
tar -xvf lighttp