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
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
@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
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
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
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