phpize编译php扩展时提示 Cannot find config.m4

利用phpize编译PHP扩展时,发现如下报错:

Cannot find config.m4. 
Make sure that you run '/usr/bin/phpize' in the top level source directory of the module

根据文档解释,在执行phpize时,一定要在需要扩展编译的PHP模块目录中执行,这样才不会报错

$ cd ........ #此处为需扩展的模块目录
$ /usr/local/php/bin/phpize

phpize 官方文档:phpize 官方文档