You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is such a cool project. I used it to build binaries, but got a report from centos 8 user with the following error launching:
/lib64/libm.so.6 version 'GLIBC_2.29' not found, required by /test/ffprobe.
Here is a test to reproduce using your binaries (which is supposed to print the ffmpeg -version message)
(put ffmpeg binary in same directory as dockerfile) :
Dockerfile
from centos:8
workdir /test
copy ffmpeg /test/
run ./ffmpeg -version
then build the above docker file, which should fail with the above error:
docker build .
I am working on a fix, but thought I'd give you a heads up.
It appears that the correct thing to do is download an earlier version of glibc and link against that.. but not sure, as I'm not a C guy.
Also, your donate page is 404 on your web page, which is linked on this github page under Sponsor this project.
And a feature request would be to build a fat binary mac aarch_64/arm64.
The text was updated successfully, but these errors were encountered:
For my use case, I used to build on Ubuntu 18.04, which has a very old glibc and I've not heard of any problems running fpcalc. I've upgraded to Ubuntu 20.04 last year, essentially removing support for CentOS 7/8, but that's OK for me.
This is such a cool project. I used it to build binaries, but got a report from centos 8 user with the following error launching:
Here is a test to reproduce using your binaries (which is supposed to print the ffmpeg -version message)
(put ffmpeg binary in same directory as dockerfile) :
Dockerfile
then build the above docker file, which should fail with the above error:
I am working on a fix, but thought I'd give you a heads up.
It appears that the correct thing to do is download an earlier version of glibc and link against that.. but not sure, as I'm not a C guy.
Also, your donate page is 404 on your web page, which is linked on this github page under Sponsor this project.
And a feature request would be to build a fat binary mac aarch_64/arm64.
The text was updated successfully, but these errors were encountered: