Skip to content
Snippets Groups Projects
Commit d92abacb authored by Simon McVittie's avatar Simon McVittie
Browse files

tests/manual/gl.pl: Make it clearer what a standalone GL stack is


If we mount the standalone GL stack at /run/host/$host_path and
make the library filenames be symlinks to there, then it's
immediately obvious from looking at the symlink which GL stack we're
using.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent d72a3f09
Branches
Tags
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -23,6 +23,7 @@ use warnings; ...@@ -23,6 +23,7 @@ use warnings;
use strict; use strict;
use autodie; use autodie;
use Cwd qw(realpath);
use File::Path qw(make_path); use File::Path qw(make_path);
use File::Spec qw(); use File::Spec qw();
use File::Temp qw(); use File::Temp qw();
...@@ -857,33 +858,42 @@ else { ...@@ -857,33 +858,42 @@ else {
} }
my @dri_path; my @dri_path;
my $gl_provider_gl = "$tmpdir/gl";
push @bwrap, '--ro-bind', $gl_provider_gl, '/gl';
foreach my $tuple (@multiarch_tuples) {
push @ld_path, "/gl/lib/$tuple";
make_path("$gl_provider_gl/lib/$tuple", verbose => 1);
}
if (defined $gl_stack) { if (defined $gl_stack) {
diag "Using standalone GL stack $gl_stack"; diag "Using standalone GL stack $gl_stack";
$gl_stack = realpath($gl_stack);
push @bwrap, '--ro-bind', $gl_stack, '/gl'; push @bwrap, '--ro-bind', $gl_stack, "/run/host$gl_stack";
foreach my $tuple (@multiarch_tuples) { foreach my $tuple (@multiarch_tuples) {
push @ld_path, "/gl/lib/$tuple"; next unless -d "$gl_stack/lib/$tuple";
opendir(my $dir, "$gl_stack/lib/$tuple");
while(defined(my $member = readdir $dir)) {
next if $member eq '.' || $member eq '..';
my $target = realpath("$gl_stack/lib/$tuple/$member");
symlink(
"/run/host$target",
"$gl_provider_gl/lib/$tuple/$member");
}
closedir($dir);
} }
} }
elsif ($nvidia_only) { elsif ($nvidia_only) {
my $gl_provider_gl = "$tmpdir/gl";
diag "Using NVIDIA-only GL stack from $gl_provider_tree"; diag "Using NVIDIA-only GL stack from $gl_provider_tree";
capture_libs($gl_provider_tree, $container_tree, capture_libs($gl_provider_tree, $container_tree,
\@multiarch_tuples, $gl_provider_gl, ['no-dependencies:nvidia:'], \@multiarch_tuples, $gl_provider_gl, ['no-dependencies:nvidia:'],
"$tmpdir/scratch", '/gl-provider'); "$tmpdir/scratch", '/gl-provider');
foreach my $tuple (@multiarch_tuples) {
push @ld_path, "/gl/lib/$tuple";
}
push @bwrap, '--ro-bind', $gl_provider_gl, '/gl';
} }
else { else {
my $gl_provider_gl = "$tmpdir/gl";
diag "Using GL stack from $gl_provider_tree"; diag "Using GL stack from $gl_provider_tree";
capture_libs($gl_provider_tree, $container_tree, capture_libs($gl_provider_tree, $container_tree,
\@multiarch_tuples, $gl_provider_gl, ['gl:'], \@multiarch_tuples, $gl_provider_gl, ['gl:'],
...@@ -923,12 +933,6 @@ else { ...@@ -923,12 +933,6 @@ else {
} }
} }
} }
foreach my $tuple (@multiarch_tuples) {
push @ld_path, "/gl/lib/$tuple";
}
push @bwrap, '--ro-bind', $gl_provider_gl, '/gl';
} }
# These are libraries that can't have more than one instance in use. # These are libraries that can't have more than one instance in use.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment