Leo Huang
Leo Huang

Reputation: 1

scylla compile Problems encountered in the process

I'm compiling scylladb for execution/ configure.py "Could not find c-are: found unsuitable version" 1.10.0 ", but required isat least" 1.13 "(found / usr / lib64)/ libcares.so )”, but I have already installed version 1.13 of c-ares

CMake Error at /usr/share/cmake3/Modules/FindPackageHandleStandardArgs.cmake:137 (message):

Could NOT find c-ares: Found unsuitable version "1.10.0", but required is at least "1.13" (found /usr/lib64/libcares.so)

Upvotes: 0

Views: 163

Answers (1)

Avi Kivity
Avi Kivity

Reputation: 1410

CentOS 7 lacks packages that Scylla needs to build. If you have Docker installed, you can run

./tools/toolchain/dbuild

this will drop you into an environment where you can ./configure.py and build scylla.

Upvotes: 1

Related Questions