Chinaunix首页 | 论坛 | 博客
  • 博客访问: 139100
  • 博文数量: 94
  • 博客积分: 1572
  • 博客等级: 上尉
  • 技术积分: 925
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-04 00:03
文章分类

全部博文(94)

文章存档

2011年(94)

我的朋友

分类: LINUX

2011-04-06 21:26:47

这个错误发生在 执行 ./configure 文件时。
  1. checking for a BSD-compatible install... /usr/bin/install -c
  2. checking whether build environment is sane... yes
  3. checking for gawk... gawk
  4. checking whether make sets $(MAKE)... yes
  5. checking for gcc... gcc
  6. checking for C compiler default output file name... a.out
  7. checking whether the C compiler works... yes
  8. checking whether we are cross compiling... no
  9. checking for suffix of executables...
  10. checking for suffix of object files... o
  11. checking whether we are using the GNU C compiler... yes
  12. checking whether gcc accepts -g... yes
  13. checking for gcc option to accept ANSI C... none needed
  14. checking for style of include used by make... GNU
  15. checking dependency style of gcc... gcc3
  16. checking for g++... g++
  17. checking whether we are using the GNU C++ compiler... yes
  18. checking whether g++ accepts -g... yes
  19. checking dependency style of g++... gcc3
  20. checking for ranlib... ranlib
  21. checking for main in -lpthread... yes
  22. checking whether GLib supports loadable modules... no
  23. configure: creating ./config.status
  24. config.status: creating Makefile
  25. config.status: creating src/Makefile
  26. config.status: creating \
  27. .infig.status: error: cannot find input file: \
这是因为configure.in的文件格式不对(是dos格式),用编辑器打开configure.in文件,将其重新保存为 unix格式。
  1. > vi configure.in
  2. vi > set fileformat=unix
  3. vi > wq
  4. > aclocal
  5. > autoconf
  6. > automake -a
  7. > ./configure
阅读(820) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:如何分辨主板的USB3.0接口是不是真的

给主人留下些什么吧!~~