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

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

2025-05-11 Thread Coia Prant
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: https://code.videolan.org/videolan/x264/-/me