GNU Gettext and windows localization

Hi all -

I've been using gettext library in my MSVC-compiled application (x86) using these instructions from the GNU site (https://www.gnu.org/software/gettext/FAQ.html#windows_woe32). It works fine.

Is there a 64 bit version of gettext for windows? - the one listed on the GNU site is 32bit.

Any help is appreciated.
Last edited on
rt
Compile gettext and all depedencies yourself from source code using MSYS and MinGW-w64.
Pass a line like this to configure script:
./configure --build=x86_64-w64-mingw32 --prefix=/mingw --enable-threads=win32 --enable-relocatable
Last edited on
Topic archived. No new replies allowed.