一、前言

lighttpd交叉编译并移植到iTop4412平台

二、编译环境

  • ubuntu 18.04
  • pcre
  • lighttpd
  • 交叉编译链:arm-none-linux-gnueabi

三、编译过程

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的时候出现如下错误:

移植lighttpd笔记-LMLPHP

解决方式:安装libpcre3-dev

sudo apt install libpcre3-dev

2.lighttpd交叉编译

下载并解压软件包

tar -xvf lighttp
12-09 15:23