3

我尝试编译使用来自 node.js 的 http_parser 的简单 c/c++ 应用程序,我也使用 libuv,并且基本上尝试在 Windows 中编译示例。使用视觉工作室 2008

但我得到这个编译错误:

>d:\dev\cpp\servers\libuv\libuv_http_server\http_parser.h(35) : error C2371: 'int8_t' : redefinition; different basic types
1>        d:\dev\cpp\servers\libuv\libuv-master\libuv-master\include\uv-private\stdint-msvc2008.h(82) : see declaration of 'int8_t'

http_parser.h 文件中的代码如下所示:

#include <sys/types.h>
#if defined(_WIN32) && !defined(__MINGW32__) && (!defined(_MSC_VER) || _MSC_VER<1600)
#include <BaseTsd.h>
#include <stddef.h>
//#undef __int8
typedef __int8 int8_t;
typedef unsigned __int8 uint8_t;
typedef __int16 int16_t;
typedef unsigned __int16 uint16_t;
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif

如您所见,我尝试取消定义它,但没有用。我该怎么做才能通过编译。如果我只是删除它,我会收到此错误:

http_parser.c(180) : error C2061: syntax error : identifier 'unhex'

在此代码部分:

static const int8_t unhex[256] =
  {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  , 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,-1,-1,-1,-1,-1,-1
  ,-1,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1
  ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  ,-1,10,11,12,13,14,15,-1,-1,-1,-1,-1,-1,-1,-1,-1
  ,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
  };

以及使用 int8_t 的许多其他部分

4

2 回答 2

5

因为它是 a typedef,所以您不能使用#ifdefor#undef等​​,因为这些仅适用于已被#define'ed 的符号。

你能做的最好的就是确保两者typedef一致,应该没有问题。

查看stdint-msvc2008.h,可能更容易修改http_parser.h为:

typedef signed __int8 int8_t;

有什么好处吗?

于 2013-05-07T12:02:44.487 回答
1

尝试 #define HAVE_STDINT_H 1在代码顶部避免重新定义 int8_t。

于 2020-09-16T11:07:31.200 回答