Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows

2025-05-27 Thread Martin Storsjö
On Mon, 26 May 2025, Coia Prant wrote: Can u backport it to released branch? Please don't top-post here. Sure, that can probably be reasonable; I can try to backport it to a few release branches within a day or two. // Martin ___ ffmpeg-devel ma

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows

2025-05-26 Thread Coia Prant
Can u backport it to released branch? Martin Storsjö 于 2025年5月26日周一 19:48写道: > On Sun, 25 May 2025, Martin Storsjö wrote: > > > On Fri, 23 May 2025, Coia Prant wrote: > > > >> On Windows Arm64 > >> `uname -m` returned `x86_64` instead of `aarch64` > >> Link: https://github.com/msys2/msys2-runtim

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows

2025-05-26 Thread Martin Storsjö
On Sun, 25 May 2025, Martin Storsjö wrote: On Fri, 23 May 2025, Coia Prant wrote: On Windows Arm64 `uname -m` returned `x86_64` instead of `aarch64` Link: https://github.com/msys2/msys2-runtime/issues/171 On x86 32-bit toolchain msys2 environment `uname -m` returned `x86_64` instead of `i686`

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows

2025-05-25 Thread Coia Prant
Thank you! Can you merge it in x264? I also send a merge request. Martin Storsjö 于 2025年5月25日周日 22:50写道: > On Fri, 23 May 2025, Coia Prant wrote: > > > On Windows Arm64 > > `uname -m` returned `x86_64` instead of `aarch64` > > Link: https://github.com/msys2/msys2-runtime/issues/171 > > > > On x8

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows

2025-05-25 Thread Martin Storsjö
On Fri, 23 May 2025, Coia Prant wrote: On Windows Arm64 `uname -m` returned `x86_64` instead of `aarch64` Link: https://github.com/msys2/msys2-runtime/issues/171 On x86 32-bit toolchain msys2 environment `uname -m` returned `x86_64` instead of `i686` or `x86` So check MSYSTEM_CARCH on windows

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows arm64

2025-05-14 Thread Coia Prant
Or do we detect the MSYSTEM environment variable? Martin Storsjö 于 2025年5月14日周三 03:31写道: > On Mon, 12 May 2025, Coia Prant wrote: > > > On Windows Arm64 > > `uname -m` returned `x86_64` instead of `aarch64` > > Link: https://github.com/msys2/msys2-runtime/issues/171 > > > > But `uname -s` contai

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows arm64

2025-05-13 Thread Martin Storsjö
On Mon, 12 May 2025, Coia Prant wrote: On Windows Arm64 `uname -m` returned `x86_64` instead of `aarch64` Link: https://github.com/msys2/msys2-runtime/issues/171 But `uname -s` contains `ARM64` suffix So check suffix on windows arm64 (for clangarm64) This problem also in VideoLAN/x264 Link: ht

Re: [FFmpeg-devel] [PATCH] fix(configure): fix detection on windows arm64

2025-05-13 Thread Michael Niedermayer
On Mon, May 12, 2025 at 02:02:41PM +0800, Coia Prant wrote: > On Windows Arm64 > `uname -m` returned `x86_64` instead of `aarch64` > Link: https://github.com/msys2/msys2-runtime/issues/171 > > But `uname -s` contains `ARM64` suffix > So check suffix on windows arm64 (for clangarm64) > > This prob