mac10.15安装php扩展swoole遇到的问题

最近项目需要用到websocket的功能,所以需要装一下swoole的扩展,安装过程真的是及其复杂、繁琐、费事,记录一下安装时出现的问题。

  1. Cannot find autoconf
    需要先安装Homebrew。国内安装地址:
 /bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

然后用brew安装autoconf和automake:

brew install autoconf
brew install automake
  1. grep: /usr/include/php/main/php.h: No such file or director

这个是因为没有/usr/include目录导致的,网上都是说需要安装xcode的CommandLineTools,安装之后会自动出现include目录,但是我反复安装卸载了几次也没有,其实是需要手动link一下。
首先要关闭mac的rootless,关闭的方式为重启进入恢复模式,之后在终端中输入:

csrutil disable

然后重新启动。

sudo mount -uw / # 根目录挂载为可读写,否则无法在/usr/下建立文件,本修改重启前有效。
sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.3/usr/include /usr/include #MacOSX10.15.3修改为自己系统的版本号

你可能感兴趣的:(mac10.15安装php扩展swoole遇到的问题)