在ARM上取消引用指向不完整类型但不是x86的指针

时间:2016-06-20 12:40:05

标签: c gcc arm beagleboneblack icmp

我在编译beaglebone时遇到了这个错误(我已经包括了netinet/ip_icmp.h):

src/network.c: In function 'ping':
src/network.c:74:3: warning: implicit declaration of function 'setuid' [-Wimplicit-function-declaration]
src/network.c:74:3: warning: implicit declaration of function 'getuid' [-Wimplicit-function-declaration]
src/network.c:88:6: error: dereferencing pointer to incomplete type
src/network.c:89:6: error: dereferencing pointer to incomplete type
src/network.c:118:14: error: dereferencing pointer to incomplete type

但它只发生在ARM平台(beaglebone)上。在我的x86上一切正常。 这里有一些有用的信息:

root@beaglebone:~/mips# gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/4.6/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: ../src/configure -v --with-pkgversion='Debian 4.6.3-14' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
gcc version 4.6.3 (Debian 4.6.3-14)

network.c代表84到89行:

struct icmp *pkt;
pkt = (struct icmp *) packet;
memset(pkt, 0, sizeof(packet));
pkt->icmp_type = ICMP_ECHO;
pkt->icmp_cksum = in_cksum((unsigned short *) pkt, sizeof(packet));

我发现答案告诉使用标记-D__USE_BSD,但它没有用。

有没有人知道:

  1. 如何使这个程序有效?
  2. 如何编写一个不使用<netinet/ip_icmp.h>的简单ping程序?

1 个答案:

答案 0 :(得分:2)

在包含标题之前添加GNU扩展的定义:

#define _GNU_SOURCE

或 - D_GNU_SOURCE标记到编译器。