Skip to content
Snippets Groups Projects
Commit a71488d4 authored by Poncho's avatar Poncho
Browse files

bind mount /etc/ld.so.cache to the sandbox

without /etc/ld.so.cache available in the sandbox, tests fail on gentoo with:
/usr/bin/ffmpeg: error while loading shared libraries: libstdc++.so.6:
    cannot open shared object file: No such file or directory
parent 6ef6aaa2
No related branches found
No related tags found
1 merge request!30bind mount /etc/ld.so.cache to the sandbox
......@@ -47,6 +47,7 @@ def _get_bwrap_args(tempdir: str,
'--chdir', cwd,
'--unshare-all',
'--new-session',
'--ro-bind', '/etc/ld.so.cache', '/etc/ld.so.cache',
# XXX: enable --die-with-parent once all supported platforms have
# a bubblewrap recent enough to support it.
# '--die-with-parent',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment