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

2025-05-11 Thread Coia Prant
/-/merge_requests/177 Signed-off-by: Coia Prant --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 2e69b3c..d8c1e09 100755 --- a/configure +++ b/configure @@ -4157,6 +4157,8 @@ if test "$target_os_default" = aix; then arch_default=

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/1

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

2025-05-23 Thread Coia Prant
Also we can check $MSYSTEM_CARCH if it exists How about your idea? Coia Prant 于 2025年5月23日周五 17:11写道: > 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 >

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

2025-05-23 Thread Coia Prant
in VideoLAN/x264 Link: https://code.videolan.org/videolan/x264/-/merge_requests/177 Signed-off-by: Coia Prant --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index 2e69b3c..ed30b6b 100755 --- a/configure +++ b/configure @@ -4157,6 +4157,8 @@ if test

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

2025-05-23 Thread Coia Prant
/-/merge_requests/177 Signed-off-by: Coia Prant --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 2e69b3c..1901da3 100755 --- a/configure +++ b/configure @@ -4151,12 +4151,15 @@ response_files_default="auto" # OS target_os_default=$(tolower

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

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