8

我正在grep为 Windows 7 x64 SUA/Interix 编译 64 位 GCC 编译器。

它在标记线上窒息stddef.h

#ifndef _SIZE_T_DEFINED
#if defined (lp64) || defined(_WIN64)
#ifdef lp64
typedef unsigned long   size_t;                    //    <------ error
#else /* lp64 */
typedef unsigned __int64        size_t;
#endif /* lp64 */
#else /* (defined(lp64) || defined(_WIN64)) */
typedef unsigned int  size_t;
#endif /* (defined(lp64) || defined(_WIN64)) */
#define _SIZE_T_DEFINED
#define _SIZE_T
#endif /* _SIZE_T_DEFINED */

的输出make是:

make  all-recursive
Making all in intl
gcc -c -DLOCALEDIR=\"/usr/local/share/locale\" -DLOCALE_ALIAS_PATH=\"/usr/local/share/locale\"  -DLIBDIR=\"/usr/local/lib\" -DIN_LIBINTL -DHAVE_CONFIG_H -I.. -I. -I../../intl -D_ALL_SOURCE -D_REENTRANT -I/usr/local/include -I/usr/local/include -D_ALL_SOURCE -D_REENTRANT  ../../intl/intl-compat.c

In file included from ../../intl/gettextP.h:23:0,
                 from ../../intl/intl-compat.c:25:
/usr/include/stddef.h:50:23: error: duplicate 'unsigned'
*** Error code 1

Stop in /tmp/grep-2.5.4-src/build/intl.
*** Error code 1

Stop in /tmp/grep-2.5.4-src/build (line 329 of Makefile).
*** Error code 1

Stop in /tmp/grep-2.5.4-src/build (line 244 of Makefile).

我不明白原因是什么......long在GCC中使用它已经令人困惑,就好像它是64位一样,但错误更加令人困惑!想法?

4

1 回答 1

12

在您的代码中的某处,somone 可能做了:

#define size_t unsigned long

或者类似的东西,没有定义_SIZE_T_DEFINED他们什么时候做的。然后他们的代码通过您的错误消息中列出的路径#includestddef.h这使您的错误行看起来像:

typedef unsigned long unsigned long;

到编译器,这是行不通的!

于 2012-01-11T21:50:47.563 回答