On Sat Nov 22 16:00:38 2025 +0000, Hans Leidekker wrote:
Here's a recipe that builds a PE version of upstream ICU using MinGW. It needs a separate host build: ``` git clone https://github.com/unicode-org/icu.git cp -a icu icu-host cd icu-host/icu4c/source ./runConfigureICU Linux/gcc --disable-extras --disable-samples --disable-tests make -j cd ../../../icu/icu4c/source ./runConfigureICU MinGW CC=x86_64-w64-mingw32-gcc CPP=x86_64-w64-mingw32-cpp CXX=x86_64-w64-mingw32-g++ AR=x86_64-w64-mingw32-ar RANLIB=x86_64-w64-mingw32-ranlib --host x86_64-mingw64 --with-cross-build=$PWD/../../../icu-host/icu4c/source --disable-extras --disable-samples --disable-tests --disable-tools make -j ``` Thanks, I will build wine-icu from the source instead of taking their binaries. I think the wine part can be merged independently though.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8817#note_123372