bug#78410: Patch for tiny improve cl wrapper script

2025-05-15 Thread Kirill Makurin
follow `$dir/$lib.lib`. I am not sure if this name is widely used, however, Microsoft documentation uses such names in examples related to creation of static libraries. I hope this information helps. - Kirill Makurin From: bug-automake-bounces+maiddaisuki=outlo

bug#75939: setting $MSYS2_ARG_CONV_EXCL in compile script?

2025-02-03 Thread Kirill Makurin
Sent: Monday, February 3, 2025 7:56 PM To: bug-gnu...@gnu.org ; Kirill Makurin Cc: 75...@debbugs.gnu.org <75...@debbugs.gnu.org>; Karl Berry Subject: bug#75939: setting $MSYS2_ARG_CONV_EXCL in compile script? Kirill Makurin wrote: > I applied patches and they work for Msys2. > > I

bug#75939: setting $MSYS2_ARG_CONV_EXCL in compile script?

2025-02-03 Thread Kirill Makurin
@gnu.org on behalf of Bruno Haible via Bug reports for Automake Sent: Monday, February 3, 2025 7:56 PM To: bug-gnu...@gnu.org ; Kirill Makurin Cc: 75...@debbugs.gnu.org <75...@debbugs.gnu.org>; Karl Berry Subject: bug#75939: setting $MSYS2_ARG_CONV_EXCL in compile script? Kirill Makurin wrot

bug#75939: setting $MSYS2_ARG_CONV_EXCL in compile script?

2025-02-03 Thread Kirill Makurin
ioned in the attached file seems outdated. Current Msys2's `uname-r` has `x86_64` suffix instead of `msys` in its output (regardless of environment). --- I explicitly set `file_conv` to `mingw` in compile just for testing with this MinGW and there are no issues with double conversion. - Kiril

bug#75939: bug in compile wrapper when using MSVC from Msys2

2025-01-31 Thread Kirill Makurin
Keep in mind that if this variable is appended to, each item must be separated by a semicolon. Something like this: ``` if test -n "${MSYS2_ARG_CONV_EXCL}" then   MSYS2_ARG_CONV_EXCL="${MSYS2_ARG_CONV_EXCL};-Tp" else   MSYS2_ARG_CONV_EXCL='-Tp' fi export MSY

bug#75939: bug in compile wrapper when using MSVC from Msys2

2025-01-29 Thread Kirill Makurin
lows to pass argument to `-Tp` as a separate argument and this seems to work correctly. However, I don't know whether older versions of `cl.exe` allow it. - Kirill Makurin