Absl related issues

Error:

CMake Error at cmake/abseil-cpp.cmake:38 (find_package):
  Could not find a package configuration file provided by "absl" with any of
  the following names:

    abslConfig.cmake
    absl-config.cmake

  Add the installation prefix of "absl" to CMAKE_PREFIX_PATH or set
  "absl_DIR" to a directory containing one of the above files.  If "absl"
  provides a separate development package or SDK, be sure it has been
  installed.
Call Stack (most recent call first):
  CMakeLists.txt:191 (include)


-- Configuring incomplete, errors occurred!
See also "/home/wg/grpc/cmake/build/CMakeFiles/CMakeOutput.log".
See also "/home/wg/grpc/cmake/build/CMakeFiles/CMakeError.log".

The reason is that absl is not installed

Solution:

git clone https://github.com/abseil/abseil-cpp.git

Add a sentence in CMakeLists.txt:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")

Compile

cmake -DBUILD_SHARED_LIBS=ON -L CMakeLists.txt && make

installation

sudo make install

 

Guess you like

Origin blog.csdn.net/zhuiyunzhugang/article/details/113102169