This question already has answers here:
Closed 3 years ago.
warning: implicit declaration of function ‘getresuid’ (and ‘seteuid’)
(2个答案)
我在beaglebone上编译时遇到这个错误(我可能已经包括了
但它只发生在手臂平台(beaglebone)。在我的x86上一切正常。
以下是一些有用的信息:
84至89行格式:
我发现答案告诉我要使用flag
有人知道吗
如何使这个程序工作?
如何编写一个不使用
或编译器的-
(2个答案)
我在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
但它只发生在手臂平台(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)
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));
我发现答案告诉我要使用flag
network.c
,但它不起作用。有人知道吗
如何使这个程序工作?
如何编写一个不使用
-D__USE_BSD
的简单ping程序? 最佳答案
在包含头之前添加GNU扩展的定义:
#define _GNU_SOURCE
或编译器的-
D_GNU_SOURCE
标志。08-15 22:03