c++ - 混合 C 和 C++ 导致异常终止

标签 c++ c cmake mingw

我正在将一个项目从 MSVC 移植到 mingw。该项目包含 C 和 C++。但是,无论何时抛出异常,std::terminate 都不会被捕获,而是会被调用并且应用程序崩溃。我不明白为什么会收到任何建议。

我的工具链是 Windows 安装的 MSYS2 环境中的 cmake/ninja/mingw32。

MCVE:

# CMakeLists.txt
cmake_minimum_required(VERSION 3.6)
project(FailedExceptions)
add_executable(FailedExceptions c_funcs.c main.cpp)

//main.cpp
#include <iostream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>

int main() {
    try  {
        boost::property_tree::ptree pt;
        std::printf("reading file\n");
        boost::property_tree::read_xml("nonexistant-file", pt);
        std::printf("provider file read\n");
    } catch (...) {
        std::printf("Exception caught\n");
    }
    return 0;
}

// c_funcs.c
int SomeCFunction()
{
    return 0;
}

输出

$ cmake .. -GNinja
-- The C compiler identification is GNU 7.2.0
-- The CXX compiler identification is GNU 7.2.0
-- Check for working C compiler: C:/msys64/mingw32/bin/cc.exe -- works
-- Check for working CXX compiler: C:/msys64/mingw32/bin/c++.exe -- works
-- Configuring done
-- Generating done
-- Build files have been written to: C:/msys64/home/sferguson/src/vis/build

$ ninja -v
[1/3] C:\msys64\mingw32\bin\cc.exe  -MD -MT c_funcs.c.obj -MF c_funcs.c.obj.d -o c_funcs.c.obj   -c ../c_funcs.c
[2/3] C:\msys64\mingw32\bin\c++.exe -MD -MT main.cpp.obj -MF main.cpp.obj.d -o main.cpp.obj -c ../main.cpp
[3/3] C:\msys64\mingw32\bin\c++.exe  c_funcs.c.obj main.cpp.obj  -o FailedExceptions.exe -Wl,--major-image-version,0,--minor-image-version,0  -lgcc_eh -lgcc_eh -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

$ ./FailedExceptions.exe
reading file

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
$

跟踪:

我可以从 Mingw 博士那里得到这条线索。看起来崩溃确实发生在异常的构造和实际抛出之间。

ntdll.dll!_NtTerminateProcess@8
ntdll.dll!_RtlExitUserProcess@4
kernel32.dll!_ExitProcessStub@4
msvcrt.dll!___crtExitProcess
msvcrt.dll!__cinit
msvcrt.dll!__exit
msvcrt.dll!_abort
FailedExceptions.exe!uw_init_context_1
FailedExceptions.exe!boost::property_tree::xml_parser::xml_parser_error::xml_parser_error
FailedExceptions.exe!boost::property_tree::xml_parser::read_xml<boost::property_tree::basic_ptree<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::less<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >
FailedExceptions.exe!main
FailedExceptions.exe!__tmainCRTStartup  [D:/develop/scripts/mingw-w64-crt-git/src/mingw-w64/mingw-w64-crt/crt/crtexe.c @ 334]
kernel32.dll!@BaseThreadInitThunk@12
ntdll.dll!___RtlUserThreadStart@8
ntdll.dll!__RtlUserThreadStart@8

故障排除:

  • 我发现 5-10 年前的一些帖子暗示这可能是 mingw 的 dw2 和 sjlj 库之间的冲突,但我只安装了 libgcc_s_dw2-1.dll 二进制文件,它随msys pacman 存储库中的 mingw-w64-i686-gcc-libs 包。
  • 我尝试更改我的 CMakeLists.txt 文件以使用 C++ 和 project(FailedExceptions LANGUAGES CXX) 编译所有内容。这会阻止 cmake 构建我的 C 文件。所以它确实适用于 MCVE,但我的整个项目缺少所有 C 内容。
  • 我添加了 set(CMAKE_C_FLAGS ${CMAKE_C_FLAGS} -fexceptions) 但似乎没有效果。我已通过 ninja -v 确认此标志已添加到 C 文件编译命令中。
  • 从构建中删除 C 文件后,一切正常。但是即使我没有在这个 MCVE 中使用 C 文件,我仍然在我的大项目中使用它。
  • 我找到了另一个更小的例子 here .我可以重现该问题 IFF 我还在同一个项目中编译了一个 C 文件。

最佳答案

这是一个feature(bug?) in cmake implicit library detection in cmake 3.1介绍. CMake 认为在 C 模式下 GCC 需要与 gcc_eh 链接,这会破坏 C++ 异常处理。

您可以通过将此添加到 CMakeLists.txt 来禁用隐式库检测:

set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")

(不知道如何从列表中排除 gcc_eh)

关于c++ - 混合 C 和 C++ 导致异常终止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46688200/

相关文章:

linux - CMake 设置环境变量

c++ - 将 GLEW 添加到项目 (CMake)

c++ - 从 C++ 异常的构造函数中抛出异常

c++ - OpenSSL CMS 在 C++ 和 Objective-c 中加密

c++ - 表示硬件设备的适当类结构

尽管终端回显工作,C 程序 getenv() 仍返回 null

c++ - 调用初始化列表中的函数有没有问题?

c - 如何在android中使用arm_acle C语言扩展

c - 如何在 C 中创建静态库?

linux - 使用 cmake 从整个项目创建一个静态库