bodograumann / python-iconv

Python 3 wrapper for iconv and usage as codecs
GNU General Public License v3.0
7 stars 2 forks source link

Fix to build on windows #8

Open gotoh opened 2 months ago

gotoh commented 2 months ago

On Windows, pip install python-iconv fail because linker cannot resolve symbol libiconv_close() etc. This is because library to link is not specified in setup.py. And also type error on calling iconv(). We should use char *inbuf intead of const char * to call.