1

在尝试编译 lynx 时,我使用了“with-dmalloc”配置选项。但编译中止,产生此错误:

/usr/include/dmalloc.h:460: 错误:预期标识符或 '(' 在 '__extension__' 之前
> /usr/include/dmalloc.h:484: 错误:预期标识符或 '(' 在 '__extension__' 之前
> make[1]: *** [HTParse.o] 错误 1
> make[1]: 离开目录`/tmp/lynx2-8-8/WWW/Library/Implementation'
> make: *** [全部] 错误 2

这就是 dmalloc.h 中的错误行:


> Line 460: char *strdup(const char *string);
> Linu 484: char *strndup(const char *string, const DMALLOC_SIZE len);

该文件也可以在http://www.filewatcher.com/p/dmalloc-5.5.2.tbz.467309/include/dmalloc.h.html查看

dmalloc 的开发几乎已经停止,所以并不期待上游的修复。有什么帮助吗?

4

2 回答 2

3

我在 Fedora 21 x86_64 上安装 dmalloc 时遇到了类似的问题:

dmalloc-5.5.2]$ make
rm -f dmalloc.h dmalloc.h.t
cat ./dmalloc.h.1 dmalloc.h.2 ./dmalloc.h.3 > dmalloc.h.t
mv dmalloc.h.t dmalloc.h
rm -f arg_check.o
gcc -g -O2  -DHAVE_STDARG_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -    DHAVE_UNISTD_H=1 -DHAVE_SYS_MMAN_H=1 -DHAVE_SYS_TYPES_H=1 -    DHAVE_W32API_WINBASE_H=0 -DHAVE_W32API_WINDEF_H=0 -DHAVE_SYS_CYGWIN_H=0 -    DHAVE_SIGNAL_H=1  -I. -I.  -c arg_check.c -o ./arg_check.o
In file included from /usr/include/string.h:634:0,
             from arg_check.c:33:
dmalloc.h:484:7: error: expected identifier or ‘(’ before ‘__extension__’
 char *strndup(const char *string, const DMALLOC_SIZE len);
   ^
Makefile:362: recipe for target 'arg_check.o' failed
make: *** [arg_check.o] Error 1

通过修改 dmalloc-5.5.2/dmalloc.h.3 解决了这个问题:

 - 432 | extern
 - 433 | char    *strndup(const char *string, const DMALLOC_SIZE len);

 + 432 | #undef strndup
 + 433 | extern
 + 434 | char    *strndup(const char *string, const DMALLOC_SIZE len);

智慧之源:https ://dev.openwrt.org/browser/packages/devel/dmalloc/patches/400-undef-strndup.patch?rev=31253

于 2016-01-12T23:59:57.813 回答
0

我遇到了这样的事情,发现这是由于 dmalloc.h 被包含在例如 <unistd.h> 等之前引起的。al 以便 dmalloc.h 中的宏标识符破坏了真实 valloc/realloc/memdup 等的声明。

这可能是你所看到的吗?

于 2010-09-05T15:06:15.157 回答