libiconv编译出错解决

来源:互联网 发布:刘亦菲是否整容知乎 编辑:程序博客网 时间:2024/05/20 00:16
使用iconv命令将文档的编码进行转换即可。

iconv默认情况下,是没有被安装的,下面简单介绍下iconv的安装过程:
1. 下载
http://www.gnu.org/software/libiconv/#TOCdownloading

2. 安装:
下载完成后,切换到下载目录先进行解压:
[java] view plain copy
  1. $tar -xzvf libiconv-1.14.tar.gz  

然后进入解压后的文件中

[java] view plain copy
  1. $cd libiconv-1.14_2  
查看其中的README文件,我们可以看到安装步骤:(当然,如果您熟悉源码的安装,这步完全可以省略^-^)
[java] view plain copy
  1. $ ./configure --prefix=/usr/local  
  2. $ make  
  3. $ make install  
3. 命令学习
该工具安装完成后,肯定要先了解下这个命令的用法吧,这个没什么可说的:
[java] view plain copy
  1. $iconv --help  
我们会看到下面的内容:
[java] view plain copy
  1. Usage: iconv [OPTION...] [FILE...]  
  2. Convert encoding of given files from one encoding to another.  
  3.   
  4.  Input/Output format specification:  
  5.   -f, --from-code=NAME       encoding of original text  
  6.   -t, --to-code=NAME         encoding for output  
  7.   
  8.  Information:  
  9.   -l, --list                 list all known coded character sets  
  10.   
  11.  Output control:  
  12.   -c                         omit invalid characters from output  
  13.   -o, --output=FILE          output file  
  14.   -s, --silent               suppress warnings  
  15.       --verbose              print progress information  
  16.   
  17.   -?, --help                 Give this help list  
  18.       --usage                Give a short usage message  
  19.   -V, --version              Print program version  
  20.   
  21. Mandatory or optional arguments to long options are also mandatory or optional  
  22. for any corresponding short options.  
说的很明白,就是按照下面的格式进行转换:
iconv -f 原编码 -t 目标编码 要转换的文件

4. 编码转换:
学会了编码的转化,我们就举了例子示范一下:
[java] view plain copy
  1. $iconv -f gbk -t utf8 test.txt  
[java] view plain copy
  1. <span style="font-family:宋体; font-size:14px">执行下面的命令:</span>  
[java] view plain copy
  1. $iconv -f gbk -t utf8 test.txt > test.convert.txt  
此时我们打开这个test.convert.txt文件就会发现,原来的中文显示正常了^-^

注意:
如果不出意外的话,上面的安装步骤可没有那么顺利,在make的时候,会提示下面的错误:
[java] view plain copy
  1. n file included from progname.c:26:0:  
  2. ./stdio.h:1010:1: error: ‘gets’ undeclared here (not in a function)  
  3.  _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");  
  4.  ^  
  5. make[2]: *** [progname.o] Error 1  
  6. make[2]: Leaving directory `/home/freeman/Downloads/libiconv-1.14_2/srclib'  
  7. make[1]: *** [all] Error 2  
  8. make[1]: Leaving directory `/home/freeman/Downloads/libiconv-1.14_2/srclib'  
  9. make: *** [all] Error 2  
这个这个软件本身存在的一个Bug,通过Google,发现一个解决该问题的补丁,内容如下:
[java] view plain copy
  1. --- srclib/stdio.in.h.orig      2011-08-07 16:42:06.000000000 +0300  
  2. +++ srclib/stdio.in.h   2013-01-10 15:53:03.000000000 +0200  
  3. @@ -695,7 +695,9 @@  
  4.  /* It is very rare that the developer ever has full control of stdin, 
  5.     so any use of gets warrants an unconditional warning.  Assume it is 
  6.     always declared, since it is required by C89.  */  
  7. -_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");  
  8. +#if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(216)  
  9. + _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");  
  10. +#endif  
  11.  #endif  
PS:内容中的"+"表示新增的内容,"-"表示删除的内容!

那我们只要进行如下操作即可解决这个问题:
1. 切换到srclib目录下:
[java] view plain copy
  1. $cd srclib  

2. 修改stdio.in.h文件:

[java] view plain copy
  1. $gedit stdio.in.h  
通过搜索,定位到_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");这一行,然后在这一行的前后加上条件编译即可,修改后的内容如下:
[java] view plain copy
  1. #if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(216)  
  2.         _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");  
  3. #endif  
3. 保存退出,然后再进行make, make install便可顺利安装^-^
0 0
原创粉丝点击