We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
I installed the headless x64 package for debian (.deb ) v2.2.1 and it complains about missing libEGL.so.1
.deb is supposed to have dependency information inside it on libegl-mesa0 but it does not.
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libbsd0, libxdmcp6, libglvnd0, libxcb1, libc6, libgcc1, libstdc++6, libopengl0, libglx0, libx11-6")
To Reproduce Steps to reproduce the behavior:
Expected behavior F3D is installed and run normally showing the version
Actual behaviour Error is thrown when running the program:
/usr/bin/f3d: error while loading shared libraries: libEGL.so.1: cannot open shared object file: No such file or directory
Dockerfile:
USER root RUN apt-get update && apt-get -y full-upgrade && apt-get install -y --no-install-recommends \ git \ procps \ curl \ unzip \ xvfb RUN curl https://github.com/f3d-app/f3d/releases/download/v2.2.1/F3D-2.2.1-Linux-x86_64-headless.deb -L -v -o /tmp/f3d.deb RUN apt-get install -y /tmp/f3d.deb \ && rm /tmp/f3d.deb \ && which f3d \ && f3d --version \ && rm -rf /var/lib/apt/lists/* USER $USER_ID
The text was updated successfully, but these errors were encountered:
The package may be libegl1 after all
libegl1
Sorry, something went wrong.
Reproduced. I confirm installing libegl1 fixes the issue.
Here's my reproducible steps:
docker pull linuxcontainers/debian-slim
docker run -it linuxcontainers/debian-slim
apt-get update && apt-get -y full-upgrade && apt-get install -y --no-install-recommends curl ca-certificates
curl https://github.com/f3d-app/f3d/releases/download/v2.2.1/F3D-2.2.1-Linux-x86_64-headless.deb -L -v -o /tmp/f3d.deb
apt-get install -y /tmp/f3d.deb
f3d --version
Lets reopen to check if we can avoid needing Xorg deps
Xorg is required, @mwestphal checked
mwestphal
Successfully merging a pull request may close this issue.
Describe the bug
I installed the headless x64 package for debian (.deb ) v2.2.1 and it complains about missing libEGL.so.1
.deb is supposed to have dependency information inside it on libegl-mesa0 but it does not.
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libbsd0, libxdmcp6, libglvnd0, libxcb1, libc6, libgcc1, libstdc++6, libopengl0, libglx0, libx11-6")
To Reproduce
Steps to reproduce the behavior:
Expected behavior
F3D is installed and run normally showing the version
Actual behaviour
Error is thrown when running the program:
/usr/bin/f3d: error while loading shared libraries: libEGL.so.1: cannot open shared object file: No such file or directory
Dockerfile:
The text was updated successfully, but these errors were encountered: