There are two issues when attempting to build with mingw: * `llama_cpp_sys/build.rs` adds MSVC compilation flags, which `gcc` doesn't understand, * and it should add `-DLLAMA_WIN_VER=0x602` (see https://github.com/ggerganov/llama.cpp/issues/5158#issuecomment-1916445496) This patch fixes both issues: [mingw.patch](https://github.com/edgenai/llama_cpp-rs/files/15303721/mingw.patch)