解决cmake error Could not find rpcgen

背景:
在arm架构下的CentOS8系统服务器下,编译mysql5.7.32版本,遇到如下错误。

CMake Error at cmake/rpcgen.cmake:36 (MESSAGE):
  Could not find rpcgen

解决方法:

wget https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4.tar.gz
tar -zxvf rpcsvc-proto-1.4.tar.gz
cd rpcsvc-proto-1.4/
./configure && make -j4 && make install

你可能感兴趣的:(mysql)