Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 MinGW 将 Bonjour 与我的 Windows 应用程序集成。我已经下载了适用于 Windows 2.0.4 的最新 Bonjour SDK 并链接了 dnssd.lib。编译,链接正常,但我得到一个没有堆栈跟踪的奇怪 SIGSEGV。提前感谢您的任何帮助或建议。
您是否尝试静态链接?您不能混合使用 MinGW 和 MSVC 静态库,但可以动态链接。
使用 dll 解决了这个问题,并通过 Qt 类 QLibrary 根据需要加载它。