当前位置:  技术问答>linux和unix

编译的时候报错,大家帮我看看是什么问题

    来源: 互联网  发布时间:2015-10-27

    本文导语:  [root@xxweb chkrootkit]# make sense gcc -DHAVE_LASTLOG_H -o chklastlog chklastlog.c chklastlog.c:37:19: stdio.h: No such file or directory chklastlog.c:39:20: stdlib.h: No such file or directory chklastlog.c:41:22: sys/stat.h: No such file or directory chklast...

[root@xxweb chkrootkit]# make sense
gcc -DHAVE_LASTLOG_H -o chklastlog chklastlog.c
chklastlog.c:37:19: stdio.h: No such file or directory
chklastlog.c:39:20: stdlib.h: No such file or directory
chklastlog.c:41:22: sys/stat.h: No such file or directory
chklastlog.c:42:20: unistd.h: No such file or directory
chklastlog.c:43:20: string.h: No such file or directory
chklastlog.c:44:20: signal.h: No such file or directory
chklastlog.c:45:17: pwd.h: No such file or directory
chklastlog.c:46:23: sys/types.h: No such file or directory
chklastlog.c:47:18: utmp.h: No such file or directory
chklastlog.c:49:21: lastlog.h: No such file or directory
chklastlog.c:51:22: sys/file.h: No such file or directory
chklastlog.c:75: syntax error before "wtmp_file_size"
chklastlog.c:75: warning: data definition has no type or storage class
chklastlog.c:76: syntax error before '*' token
chklastlog.c:76: warning: data definition has no type or storage class
chklastlog.c:81: syntax error before "uid_t"
chklastlog.c:81: warning: no semicolon at end of struct or union
chklastlog.c:83: syntax error before '}' token
chklastlog.c:86: warning: `struct utmp' declared inside parameter list
chklastlog.c:86: warning: its scope is only this definition or declaration, which is probably not what you want
chklastlog.c:86: warning: parameter has incomplete type
chklastlog.c:90: syntax error before '*' token
chklastlog.c:90: warning: data definition has no type or storage class
chklastlog.c:91: syntax error before "uid_t"
chklastlog.c: In function `main':
chklastlog.c:98: storage size of `lastlog_ent' isn't known
chklastlog.c:99: storage size of `utmp_ent' isn't known
chklastlog.c:104: storage size of `wtmp_stat' isn't known
chklastlog.c:106: `uid_t' undeclared (first use in this function)
chklastlog.c:106: (Each undeclared identifier is reported only once
chklastlog.c:106: for each function it appears in.)
chklastlog.c:130: `SIGALRM' undeclared (first use in this function)
chklastlog.c:135: `O_RDONLY' undeclared (first use in this function)
chklastlog.c:136: `stderr' undeclared (first use in this function)
chklastlog.c:155: sizeof applied to an incomplete type
chklastlog.c:156: sizeof applied to an incomplete type
chklastlog.c:162: type of formal parameter 1 is incomplete
chklastlog.c:163: `NULL' undeclared (first use in this function)
chklastlog.c:173: sizeof applied to an incomplete type
chklastlog.c:174: sizeof applied to an incomplete type
chklastlog.c:176: sizeof applied to an incomplete type
chklastlog.c:185: dereferencing pointer to incomplete type
chklastlog.c:186: dereferencing pointer to incomplete type
chklastlog.c: At top level:
chklastlog.c:207: warning: `struct utmp' declared inside parameter list
chklastlog.c:208: parameter `utmp_ent' has incomplete type
chklastlog.c: In function `read_pwd':
chklastlog.c:237: warning: assignment makes pointer from integer without a cast
chklastlog.c:241: `size_t' undeclared (first use in this function)
chklastlog.c:241: syntax error before "sizeof"
chklastlog.c:242: dereferencing pointer to incomplete type
chklastlog.c:243: dereferencing pointer to incomplete type
chklastlog.c:243: `uid_t' undeclared (first use in this function)
chklastlog.c:243: syntax error before ')' token
chklastlog.c:244: dereferencing pointer to incomplete type
chklastlog.c:244: syntax error before "numentries"
chklastlog.c:246: dereferencing pointer to incomplete type
chklastlog.c:246: syntax error before numeric constant
chklastlog.c:250: warning: assignment makes pointer from integer without a cast
chklastlog.c:251: dereferencing pointer to incomplete type
chklastlog.c:251: dereferencing pointer to incomplete type
chklastlog.c:252: dereferencing pointer to incomplete type
chklastlog.c:252: dereferencing pointer to incomplete type
chklastlog.c:252: dereferencing pointer to incomplete type
chklastlog.c:252: dereferencing pointer to incomplete type
chklastlog.c: In function `free_results':
chklastlog.c:261: dereferencing pointer to incomplete type
chklastlog.c:262: dereferencing pointer to incomplete type
chklastlog.c:263: dereferencing pointer to incomplete type
chklastlog.c:265: dereferencing pointer to incomplete type
chklastlog.c: At top level:
chklastlog.c:269: syntax error before '*' token
chklastlog.c: In function `localgetpwnam':
chklastlog.c:271: `size_t' undeclared (first use in this function)
chklastlog.c:271: syntax error before "len"
chklastlog.c:273: dereferencing pointer to incomplete type
chklastlog.c:274: `len' undeclared (first use in this function)
chklastlog.c:275: dereferencing pointer to incomplete type
chklastlog.c:276: dereferencing pointer to incomplete type
chklastlog.c:279: `NULL' undeclared (first use in this function)
chklastlog.c: At top level:
chklastlog.c:282: syntax error before "uid_t"
chklastlog.c: In function `getslot':
chklastlog.c:286: `localpwd' undeclared (first use in this function)
make: *** [chklastlog] Error 1

|
看看有没有文件/usr/include/stdio.h

如果没有你需要安装glibc-headers包,在linux安装光盘里找

|
找不到头文件。
其他错误估计也是找不到头文件引起的。

    
 
 

您可能感兴趣的文章:

  • 编译qt-x11,最后编译生成可执行文件时候,make出错
  • 请问:我要链接哪些oci库才能成功编译.我在编译的时候老是报OCI函数找不到.
  • 编译JAVA程序的时候,如果需要的JAR不在CLASSPATH,有什么办法能成功编译吗???
  • 我用newwin()的时候编译通过了,可是运行的时候报告Segmentation fault
  • 我在RedHat中用gcc编译s.c,什么都没产生,也没报错,但是编译a.c的时候就生成可执行文件,这是怎么回事?
  • 共享库如何在编译的时候确定哪些函数没有实现?
  • 编译安装软件的时候,漏了参数如果补救?
  • 编译执行spserver时候遇到的错误,帮忙看看
  • 编译模块的时候出现的问题
  • 请教:编译的时候为什么说不认识WindowAdapter?
  • 交叉编译时候,怎么避开/usr/lib和/usr/include
  • 问个低级的问题,我编译的时候没问题,可运行时候出现如下提示:Exception in thread "main" java.lang.NoClassDefFoundError: NativeDem
  • 错误提示太多了 显示不下 如何在编译的时候分屏显示?
  • 编译内核时候出现的问题,求解
  • QT4编程 编译执行的时候一闪而过
  • JDK编译的时候居然会出现这样的现象?
  • linux下配置PHP 编译的时候出现错误
  • 编译连接时候的问题
  • 编译新的Autoconf以及Automake时候碰到的问题
  • 用Redhat7.3下的Emacs,请问调试编译程序的时候,有无象msdn那样的东西
  • [火急]编译时 -std=c99 编译报错 请高手帮忙看看
  • 请大家帮忙看看,编译内核后无法挂载root fs, 机器无法启动
  • 谁能帮我看看我的内核编译成功了吗?
  • 看看这个编译错误
  • 大家帮我看看uclinux编译错误吧
  • 编译报错,请大家看看
  • 请帮忙看看这个编译错误信息是什么意思,该怎么修改?谢谢
  • 在Linux下面编译出现以下错误,请帮忙看看是什么原因,多谢了
  • 不能运行编译出来的程序,请大家帮忙看看
  • 大家帮我看看,刚编译出来的内核的问题,谢谢!!
  • 编译环境搭建——新手小问题 近来看看
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • linux/centos源码安装nginx编译配置选项参数介绍
  • 请教:JSP编译器编译成字节码,跟别的编译器编译出来的有什么不同呢?
  • CentOS 6内核升级:下载编译启用新内核版本详细过程
  • 编译GCC时能不能只编译C/C++的编译器?
  • 高速的网络抓包库PF_ring介绍及编译安装
  • 用JCreator写了一个小程序,有十几个class,当修改某个文件重新编译,javac并没有编译修改的文件,请问要如何做javac才会重新编译所有的 iis7站长之家
  • JB下,我的程序编译得好慢!请问用什么方法编译才可以快一点?或编译顺序改变一下?
  • 请问gdb是不是只能调试gcc编译的程序,在unix下用其它编译器编译的程序是不是不一定能用gdb调试的?
  • 用JCreator写了一个小程序,有十几个class,当修改某个文件重新编译,javac并没有编译修改的文件,请问要如何做javac才会重新编译所有的
  • 问:关于gcc编译器和g++编译器
  • 嵌入式linux开发:一段代码在windows平台用VC编译运行正常,在linux平台用gcc编译运行正常,但是用arm-linux-gcc编译在嵌入式板子上运行就不正常.
  • 在cygwin编译驱动程序要不要交叉编译?
  • 关于如何把编译进内核的编译成模块
  • C编译器 c++编译器 wieldylcc
  • Linux下gcc编译时,如何以静态链接的形式编译?
  • PROC开发时 //注释编译不通过 如何设置使用cpp编译。
  • 编译失败后如何再继续编译
  • 如何查看已编译安装软件的编译命令行
  • 请问哪里有反编译.class文件的反编译器?
  • 用Jdk编译时出现提示要加 -deprecation 再编译,请教??
  • linux下有没有能编译出16bit代码的C语言编译器?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3