在 mac yosemite 上安装 thrift 时出错
Error installing thrift on mac yosemite
我按照这些步骤在 MAC Yosemite 上安装了 thrift :
- 从以下位置下载并解压缩包:http://archive.apache.org/dist/thrift/0.9.0/
- 按照此页面上的步骤操作:
https://thrift.apache.org/docs/install/os_x
但是在我 运行 ./configure 命令之后,我遇到了以下错误:
./configure:第 17810 行:意外标记附近的语法错误 QT,'
./configure: line 17810:
PKG_CHECK_MODULES(QT,QtCore >= 4.3,QtNetwork >= 4.3,have_qt =是,have_qt=否)'
有人可以帮忙吗?
好的。看来我机器上安装的 pkg-config 不是 brew 安装的 pkg-config。因此,使用 brew 卸载并安装了 pkg-config。这解决了上述问题。之后,我还发现我机器上安装的automake是1.15,我需要automake 1.12来安装thrift 0.9.0。
我按照这些步骤在 MAC Yosemite 上安装了 thrift :
- 从以下位置下载并解压缩包:http://archive.apache.org/dist/thrift/0.9.0/
- 按照此页面上的步骤操作: https://thrift.apache.org/docs/install/os_x
但是在我 运行 ./configure 命令之后,我遇到了以下错误:
./configure:第 17810 行:意外标记附近的语法错误 QT,'
./configure: line 17810:
PKG_CHECK_MODULES(QT,QtCore >= 4.3,QtNetwork >= 4.3,have_qt =是,have_qt=否)'
有人可以帮忙吗?
好的。看来我机器上安装的 pkg-config 不是 brew 安装的 pkg-config。因此,使用 brew 卸载并安装了 pkg-config。这解决了上述问题。之后,我还发现我机器上安装的automake是1.15,我需要automake 1.12来安装thrift 0.9.0。