Help cross compiling ffmpeg #43
-
Hello! I don't manage to cross compile ffmpeg on Alpine 3.14 (well I test on amd64 first).
But it fails at the end with:
What do you think? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
For If this is not it then post the full Dockerfile and command you are running so other people can reproduce. |
Beta Was this translation helpful? Give feedback.
-
ffmpeg seems to be using hand-written configure so you need to study the flags and pass manually like it expects them. I've not verified the rest of the options.
xx does not support gcc on alpine(unless set up manually) because gcc requires separate compiler packages for each target architecture that alpine does not ship. |
Beta Was this translation helpful? Give feedback.
--cc=xx-clang
seems to be enough.ffmpeg seems to be using hand-written configure so you need to study the flags and pass manually like it expects them. I've not verified the rest of the options.
xx does not support gcc on alpine(unless set up manually) because gcc requires separate compiler packages for each target architecture that alpine does not ship.