欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

libiconv 使用 emcc 编译

程序员文章站 2022-07-12 16:30:23
...

将目标工程编译为字节码,方便在c++移植时使用。

需要注意的:

不同版本的emscripten编译的字节码文件是不同的,不能通用。同一版本的可以通用

编译指令:

emconfigure ./configure --perfix=/home/libiconv/
emmake make

很简单,等待结束即可。

问题1:
libiconv 使用 emcc 编译

n file included from error.c:27:
./stdio.h:1011:66: error: token is not a valid binary operator in a preprocessor subexpression
#if defined(__GLIBC__) && !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16)
                                                  ~~~~~~~~~~~~~~~^

解决方法:
在libiconv/srclib文件中,找到stdio.in.h文件,大概在700行左右,注释

_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");

libiconv 使用 emcc 编译
重新执行以下指令:

emmake make

编译文件地址:
libiconv/preload/.libs/libiconv.so