我正在尝试在Open Suse上安装GridDB,因为它在Fedora上不起作用。当我运行帮助文档(https://docs.griddb.net/gettingstarted/using-source-code/)中提到的命令$ ./bootstrap.sh时,它给出了以下错误。
error while running the command ./bootstrap.sh
请帮帮忙。
发布于 2021-02-16 16:35:08
在启动gridDB配置之前,您需要安装automake、autoconf和libtool。如果你使用zypper作为包管理器:
zypper install libtool automake autoconf另外,需要注意的是,您正在关注的文档已经在Centos 7上进行了测试和验证:
We have confirmed the operation on CentOS 7.6 (gcc 4.8.5).你可能会遇到一些类似这样的惊喜。很高兴在路上能帮上忙。
编辑1:
对于那些没有安装适当的C编译器的用户:
zypper install gcc48https://stackoverflow.com/questions/66220893
复制相似问题