1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/docker/win64-static/build_iconv.sh
2023-11-10 16:29:13 +01:00

14 lines
385 B
Bash

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