1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/docker/win64-static/build_iconv.sh

14 lines
385 B
Bash
Raw Permalink Normal View History

cd
wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.17.tar.gz
rm -rf libiconv-1.17
tar xf libiconv-1.17.tar.gz
cd libiconv-1.17
./configure --host=x86_64-w64-mingw32 --prefix=$HOME \
--enable-static=yes \
--enable-shared=no \
CC=x86_64-w64-mingw32-gcc \
CPPFLAGS="-I$HOME/include -Wall" \
LDFLAGS="-L$HOME/lib"
make -j $(nproc)
make install