编译swoole扩展出现

  1. fatal error: pcre.h: No such file or directory

原因是缺少pcre,需要安装libpcre

ubuntu/debian:

  1. apt-get install libpcre3 libpcre3-dev

centos/redhat:

  1. yum install pcre-devel

其他Linux:

PCRE官方网站下载源码包,编译安装pcre库。