Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Martin Storsjö
On Mon, 17 Mar 2025, Gyan Doshi wrote: On 2025-03-17 05:29 pm, Zhao Zhili wrote: @file doesn’t supported by ar on macOS or BSD. Do we have any FATE clients on these platforms? I remember there were apple machines, but they are not there now. https://fate.ffmpeg.org/ Can we get a definite

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Gyan Doshi
On 2025-03-17 05:29 pm, Zhao Zhili wrote: On Mar 17, 2025, at 19:45, Gyan Doshi wrote: On 2025-03-17 05:02 pm, Zhao Zhili wrote: On Mar 13, 2025, at 21:02, Gyan Doshi wrote: The linker command can exceed the maximum argument limit on MinGW, especially for libavcodec. The objects list

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Zhao Zhili
> On Mar 17, 2025, at 19:45, Gyan Doshi wrote: > > > > On 2025-03-17 05:02 pm, Zhao Zhili wrote: >> >>> On Mar 13, 2025, at 21:02, Gyan Doshi wrote: >>> >>> The linker command can exceed the maximum argument limit on MinGW, >>> especially for libavcodec. >>> >>> The objects list is now st

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Gyan Doshi
On 2025-03-17 05:02 pm, Zhao Zhili wrote: On Mar 13, 2025, at 21:02, Gyan Doshi wrote: The linker command can exceed the maximum argument limit on MinGW, especially for libavcodec. The objects list is now stored in a file and passed to the linker. --- v3: for reasons unknown to me, stati

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Zhao Zhili
> On Mar 13, 2025, at 21:02, Gyan Doshi wrote: > > The linker command can exceed the maximum argument limit on MinGW, > especially for libavcodec. > > The objects list is now stored in a file and passed to the linker. > --- > v3: > for reasons unknown to me, static linking doesn't appear to >

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-17 Thread Gyan Doshi
On 2025-03-15 01:26 pm, Gyan Doshi wrote: On 2025-03-13 06:32 pm, Gyan Doshi wrote: The linker command can exceed the maximum argument limit on MinGW, especially for libavcodec. The objects list is now stored in a file and passed to the linker. --- v3:    for reasons unknown to me, static l

Re: [FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-15 Thread Gyan Doshi
On 2025-03-13 06:32 pm, Gyan Doshi wrote: The linker command can exceed the maximum argument limit on MinGW, especially for libavcodec. The objects list is now stored in a file and passed to the linker. --- v3: for reasons unknown to me, static linking doesn't appear to work on linux wi

[FFmpeg-devel] [PATCH v3] ffbuild: read library linker objects from a file

2025-03-13 Thread Gyan Doshi
The linker command can exceed the maximum argument limit on MinGW, especially for libavcodec. The objects list is now stored in a file and passed to the linker. --- v3: for reasons unknown to me, static linking doesn't appear to work on linux with escaped variables, so removed those. Someone