libiconv编译出错解决

使用iconv命令将文档的编码进行转换即可。

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

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

然后进入解压后的文件中

$cd libiconv-1.14_2
查看其中的README文件,我们可以看到安装步骤:(当然,如果您熟悉 源码 的安装,这步完全可以省略^-^)
$ ./configure --prefix=/usr/local
$ make
$ make install
3. 命令学习
该工具安装完成后,肯定要先了解下这个命令的用法吧,这个没什么可说的:
$iconv --help
我们会看到下面的内容:
Usage: iconv [OPTION...] [FILE...]
Convert encoding of given files from one encoding to another.

 Input/Output format specification:
  -f, --from-code=NAME       encoding of original text
  -t, --to-code=NAME         encoding for output

 Information:
  -l, --list                 list all known coded character sets

 Output control:
  -c                         omit invalid characters from output
  -o, --output=FILE          output file
  -s, --silent               suppress warnings
      --verbose              print progress information

  -?, --help                 Give this help list
      --usage                Give a short usage message
  -V, --version              Print program version

Mandatory or optional arguments to long options are also mandatory or optional
for any corresponding short options.
说的很明白,就是按照下面的格式进行转换:
iconv -f 原编码 -t 目标编码 要转换的文件

4. 编码转换:
学会了编码的转化,我们就举了例子示范一下:
$iconv -f gbk -t utf8 test.txt
执行下面的命令:
$iconv -f gbk -t utf8 test.txt > test.convert.txt
此时我们打开这个test.convert.txt文件就会发现,原来的中文显示正常了^-^

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

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

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

$gedit stdio.in.h
通过搜索,定位到_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");这一行,然后在这一行的前后加上条件编译即可,修改后的内容如下:
#if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16)
        _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
#endif
3. 保存退出,然后再进行make, make install便可顺利安装^-^
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
为了在 Android 平台上使用 libiconv 库,我们需要进行交叉编译。下面是一个简单的步骤: 1. 下载 libiconv 源代码 你可以从 GNU 的官方网站上下载最新版本的 libiconv 源代码。 2. 安装交叉编译工具链 在你的开发机器上安装适合 Android 平台交叉编译的工具链。 3. 配置交叉编译环境变量 在你的 shell 配置文件中,添加以下环境变量: ``` export PATH=$PATH:/path/to/android/toolchain/bin export SYSROOT=/path/to/android/sysroot export CC=arm-linux-androideabi-gcc export CXX=arm-linux-androideabi-g++ export AR=arm-linux-androideabi-ar export RANLIB=arm-linux-androideabi-ranlib export LDFLAGS="-L/path/to/android/sysroot/usr/lib -L/path/to/android/sysroot/lib" export CPPFLAGS="-I/path/to/android/sysroot/usr/include -I/path/to/android/sysroot/include" ``` 其中,`/path/to/android/toolchain` 是你安装的交叉编译工具链的根目录;`/path/to/android/sysroot` 是你安装的 Android 平台的 sysroot 目录。 4. 配置 libiconv 进入到 libiconv 的源代码目录中,执行以下命令: ``` ./configure --host=arm-linux-androideabi --prefix=/path/to/android/sysroot/usr --enable-static --disable-shared ``` 其中,`/path/to/android/sysroot/usr` 是你希望安装 libiconv 的目录。 5. 编译和安装 libiconvlibiconv 的源代码目录中,执行以下命令: ``` make make install ``` 这将会编译和安装 libiconv 库到指定的目录中。 现在你已经成功地在 Android 平台上交叉编译libiconv 库。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值