繁体   English   中英

在 Windows 10 上使用 mingw 的 CMake:检测 CXX 编译器 ABI 信息 - 失败

[英]CMake with mingw on Windows 10: Detecting CXX compiler ABI info - failed

我想使用 cmake 在 Windows 10 上创建 MinGW Makefile。我已经安装了 mingw,我可以毫无问题地使用 mingw32-make 和 g++ 命令。

测试项目是一个超级简单的 CMakeLists.txt 文件:

cmake_minimum_required(VERSION 3.10)
project(hello-world)
add_executable(hello-world main.cpp)

和一个简单的 main.cpp 文件:

#include <iostream>
int main() {
    std::cout << "hello Visual Studio Code! :)" << '\n'; 
    return 0;
}

这些是我用来创建 makefile 的命令:

>> mkdir build
>> cd build
>> cmake -G "MinGW Makefiles" ..

这是我收到错误的地方:

CMake Error at C:/Program Files (x86)/CMake/share/cmake-3.10/Modules/CMakeDetermineCompilerId.cmake:495 (file):
file STRINGS file
"C:/Projects/test/build/CMakeFiles/3.10.1/CompilerIdCXX/a.exe" cannot be read.

... some more errors in the test files

-- The CXX compiler identification is GNU 6.3.0
-- Check for working C compiler: C:/MinGW/bin/gcc.exe
-- Check for working C compiler: C:/MinGW/bin/gcc.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: C:/MinGW/bin/g++.exe
-- Check for working CXX compiler: C:/MinGW/bin/g++.exe -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - failed
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring incomplete, errors occurred!

这是来自错误日志:

The CXX compiler identification could not be found in "C:/Projects/test/build/CMakeFiles/3.10.1/CompilerIdCXX/a.exe"

什么是 CXX 编译器 ABI 信息,怎么可能检测到正在运行的 CXX 编译器但失败了?

如果您需要有关设置的更多信息,请告诉我!

原来是我的罪魁祸首是 Windows Defender! 关闭它,CXX 编译器 ABI 信息 - 失败的问题就消失了。

我使用 CMake-GUI 工具找出缺少的工具依赖项。 例如:CMAKE_ADDR2LINE 没有设置,一旦我将它指向 addr2line.exe 的正确位置,错误就解决了。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM