blj28

导航

Ubuntu cmake 安装以及问题解决(muduo库编译)

1、安装cmake sudo apt-get install cmake

 

2、安装之后查看是否安装成功: cmake --version

3、出现  No CMAKE_C_COMPILER could be found.如何解决

使用cmake命令时发现,cmake --version获取版本成功了

但是编译却找不到。

cmake ..
-- The C compiler identification is unknown
-- The CXX compiler identification is unknown
CMake Error at CMakeLists.txt:21 (project):
  No CMAKE_C_COMPILER could be found.

  Tell CMake where to find the compiler by setting either the environment
  variable "CC" or the CMake cache entry CMAKE_C_COMPILER to the full path to
  the compiler, or to the compiler name if it is in the PATH.


CMake Error at CMakeLists.txt:21 (project):
  No CMAKE_CXX_COMPILER could be found.

  Tell CMake where to find the compiler by setting either the environment
  variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path
  to the compiler, or to the compiler name if it is in the PATH.
 

解决办法:
执行
    sudo apt-get update
    sudo apt-get install -y build-essential

4、出现Could NOT find Boost (missing: Boost_INCLUDE_DIR) 问题——暂未解决

CMake Error at /usr/share/cmake-3.16/Modules/FindPackageHandleStandardArgs.cmake:146 (message):
  Could NOT find Boost (missing: Boost_INCLUDE_DIR)

posted on 2023-02-13 22:03  bailinjun  阅读(648)  评论(0编辑  收藏  举报