Martin Storsjö (@mstorsjo) commented about configure.ac:
target_strip=${target:-llvm}-strip if test "$wine_try_msvc" = yes -o -z "$target" then - llvm_target="$mingw_cpu-windows" + case $wine_arch in + arm) llvm_target="$mingw_cpu-windows-gnu" + llvm_cflags="-mconsole -Wl,--fatal-warnings" ;;
What's the reason for wanting to do this specifically only for 32 bit arm? Previously (up until a year ago), 32 bit arm builds in msvc mode didn't really work due to missing the compiler-rt libraries, but since those have been imported now, msvc mode builds should work equally fine there. Is there another reason involved here that I don't see? (It would be nice with motivation for changes like this in the commit messages.) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10273#note_131571