You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I am trying to install mooncake using this code
echo "*** Download and installing [etcd-cpp-apiv3] ***"
cd ${REPO_ROOT}/thirdparties
git clone ${GITHUB_PROXY}/etcd-cpp-apiv3/etcd-cpp-apiv3.git
cd etcd-cpp-apiv3
mkdir -p build
cd build
cmake ..
make -j$(nproc) && sudo make install
The above error was encountered!!
How can i install protobuf with libutf8_validity.a?
The text was updated successfully, but these errors were encountered:
What version of protobuf do you have installed on your machine? This seems like a broken installation or something. The repo you're trying to build has the following setup:
find_package(Protobuf CONFIG QUIET)
if (NOT Protobuf_FOUND)
find_package(Protobuf REQUIRED)
endif()
This will try to find the system-installed protobuf using our correct cmake config. If this succeeds, you should have utf8_validity installed as well if we depend on it, because we install it. If it fails, it will call find_package(Protobuf REQUIRED), which uses a badly outdated config for protobuf that ships with cmake and will not hook up dependencies properly. In that case, you'd see an error like this where one of our dependencies is missing
When I am trying to install mooncake using this code
The above error was encountered!!
How can i install protobuf with libutf8_validity.a?
The text was updated successfully, but these errors were encountered: