gpt4 book ai didi

C++ 第三方库 typedef 与标准 stdin.h 冲突

转载 作者:行者123 更新时间:2023-11-30 02:19:08 24 4
gpt4 key购买 nike

问题

我正在尝试编写一个程序来监听使用 JACK audio server 创建的音频流.该包在单独使用时工作正常,但是当我尝试在文件中使用它以及对标准 c++ 库(如 iostream)的引用时,在第 3 方库和 stdint.h 之间抛出 typedef 冲突错误。

对于文件,我使用的是 jack/jack.hjack/types.h,它们都来自 JACK 包。它们包括对 systemdeps.h 文件(在下面展开)的引用,这是错误的来源。

我试图在网上寻找解决方案,但似乎没有任何效果。对于可能导致此问题的任何见解,或指出解决问题的正确方向,我们将不胜感激。

错误信息

2>\Jack\includes\jack/systemdeps.h(69): error C2371: 'int8_t': redefinition; different basic types (compiling source file src\jack\jack_interface.cpp)

2>stdint.h(17): note: see declaration of 'int8_t' (compiling source file src\jack\jack_interface.cpp)

2>\Jack\includes\jack/systemdeps.h(73): error C2371: 'int32_t': redefinition; different basic types (compiling source file src\jack\jack_interface.cpp)

2>stdint.h(19): note: see declaration of 'int32_t' (compiling source file src\jack\jack_interface.cpp)

2>\Jack\includes\jack/systemdeps.h(74): error C2371: 'uint32_t': redefinition; different basic types (compiling source file src\jack\jack_interface.cpp)

2>stdint.h(23): note: see declaration of 'uint32_t' (compiling source file src\jack\jack_interface.cpp)

我的实现

// jack_interface.cpp
#include <iostream>
#include "jack/jack.h" // Core library .h
#include "jack/types.h" // library types .h
#include "jack/jack_interface.h" // My .h extending the lib

namespace jack
{
}

这是我能写的导致抛出错误的最低限度。

jack_interface.h 是空的。

jack.h 和 types.h 都包含对 systemdeps.h 的引用,冲突就是在这里产生的。

错误在库和引用 stdint.h 的任何标准 C++ 文件都包含时抛出,例如iostream。如果我删除 iostream,库功能 100%。

我使用的第 3 方包中的库适用于 32 位 Windows。我正在使用 Visual Studio 2017 为 32 位编译。

systemdeps.h

引发冲突的库头文件。抛出错误的行已在下面标记。 See file on github here.

#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(GNU_WIN32)

#include <windows.h>

#ifdef _MSC_VER /* Microsoft compiler */
#define __inline__ inline
#if (!defined(int8_t) && !defined(_STDINT_H))
#define __int8_t_defined
typedef char int8_t; <-- ERROR
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef long int32_t; <-- ERROR
typedef unsigned long uint32_t; <-- ERROR
typedef LONGLONG int64_t;
typedef ULONGLONG uint64_t;
#endif

最佳答案

那个”systemdeps.h”在提供这些 typedef 方面做得相当糟糕。根据您的评论,它正在检查错误的 include guard。即使它是正确的,如果包含 <stdint.h> 也会遇到问题在那个标题之后。所以你必须做两件事。首先,无论你在哪里使用这些 jack标题,添加 #include <stdint.h> 之前您包括 jack标题。其次,紧接在 #include <stdint.h> 之后添加 #define _STDINT_H .这样你就可以从编译器的头文件中获取 typedef 并告诉 ”systemdeps.h”不提供自己的定义。这既乏味又容易出错,因此您可以考虑创建自己的 header ,在一个地方完成所有这些工作。

关于C++ 第三方库 typedef 与标准 stdin.h 冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51181008/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com