1. 配置

  • VSCode CMake 安装与配置详解

  • 安装cmake

  • 安装MinGW-w64

    • 在pre-build toolchains and packages里找到MingW-W64-builds
    • 安装时architecture选择x86_64
    • 将”C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin”加入系统环境变量
    • “mingw32-make.exe”复制一份,重命名为”make.exe”(不一定需要这一步)
  • 安装VS code

    • 插件: C/C++,CMake,CMake Tools,
  • 安装VS code(不是Visual studio)

  • 配置GCC

  • Get started with CMake Tools on Linux

2. 使用cmake

3. 错误解决

  • cmake-file-api 的代码模型版本(2.1)不是预期版本。应为 (2.0)。IntelliSense 配置可能不正确。

    After running the CMake configuration, I opened this file -> “build.cmake\api\v1\reply\codemodel-v2-ab6f9cacd31dc7acf0c6.json”, scrolled all the way down, and changed the value of “minor” from 1 to 0. When I clicked Build again, the warnings were gone. FYI, I don’t know if this breaks something else or not, I just figured it out by trail and error.

    "version" :
    {
        "major" : 2,
        "minor" : 0
    }
    自动成成.cmake的配置时始终会出现这个问题,忽略不考虑
  • 无法定位程序输入点 __cxa_throw_bad_array_new_length于动态链接库xxxx.exe上。
    • 可能定义了动态数组,如:
    float *temp_search = new float[(N * x_cnt) * u_cnt];
      后面的初始化是导致错误的原因
    
    • 临时解决方案: 在CMakeLists.txt中添加了
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -v -static-libstdc++")
      强制指定了libstdc++,解决了问题