Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
steam-runtime-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
steamrt
steam-runtime-tools
Commits
c191e68a
Commit
c191e68a
authored
7 years ago
by
Vivek Das Mohapatra
Browse files
Options
Downloads
Patches
Plain Diff
libGL.so specific dlopen wrapper with warnings about the dlopen hack
parent
3acb9337
No related branches found
No related tags found
1 merge request
!311
Build capsule-capture-libs from a bundled copy of libcapsule
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
shim/libGL.so.c.dlopen
+39
-0
39 additions, 0 deletions
shim/libGL.so.c.dlopen
with
39 additions
and
0 deletions
shim/libGL.so.c.dlopen
0 → 100644
+
39
−
0
View file @
c191e68a
// library-specific implementation of the dlmopen wrapper
// the symbol_ns, prefix and exclude variables are static
// globals that are declared and set by the standard stub
// library generated code.
#include <string.h>
static void *_dlopen (const char *filename, int flag)
{
void *handle;
static int libgl_self_dl_hack = 0;
if( flag & RTLD_GLOBAL )
{
// this is probably the weird libgl self-dlopen-rtld-global hack:
// flag it as we cannot support this in current glibc and this
// might cause a failure in a subsequent dlmopen() calls:
if( strstr( filename, "libGL.so" ) )
libgl_self_dl_hack = 1;
fprintf( stderr, "Warning: libcapsule dlopen wrapper cannot pass "
"RTLD_GLOBAL to underlying dlmopen(%s...) call\\n",
filename );
flag = (flag & ~RTLD_GLOBAL) & 0xfffff;
}
handle =
capsule_shim_dlopen( symbol_ns, prefix, exclude, filename, flag );
if( !handle && libgl_self_dl_hack )
{
fprintf( stderr, "dlmopen(\"%s\", %d) failed: %s",
filename, flag, dlerror() );
fprintf( stderr, " This can occur if your dri driver is not linked "
"with libglapi.so.\n This bug is known to exist in Mesa "
"versions before 17.x\n" );
}
return handle;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment