Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Utils
KWSys
Commits
e28d7282
Commit
e28d7282
authored
3 years ago
by
Mathieu Westphal (Kitware)
Browse files
Options
Downloads
Patches
Plain Diff
DynamicLoader: Add RTLD_GLOBAL as a supported flag on linux
parent
b8c734ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!233
DynamicLoader: Add RTLD_GLOBAL as a supported flag on linux
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DynamicLoader.cxx
+7
-2
7 additions, 2 deletions
DynamicLoader.cxx
DynamicLoader.hxx.in
+6
-1
6 additions, 1 deletion
DynamicLoader.hxx.in
with
13 additions
and
3 deletions
DynamicLoader.cxx
+
7
−
2
View file @
e28d7282
...
...
@@ -436,9 +436,14 @@ namespace KWSYS_NAMESPACE {
DynamicLoader
::
LibraryHandle
DynamicLoader
::
OpenLibrary
(
const
std
::
string
&
libname
,
int
flags
)
{
CHECK_OPEN_FLAGS
(
flags
,
0
,
nullptr
);
CHECK_OPEN_FLAGS
(
flags
,
RTLDGlobal
,
nullptr
);
int
llFlags
=
RTLD_LAZY
;
if
(
flags
&
RTLDGlobal
)
{
llFlags
|=
RTLD_GLOBAL
;
}
return
dlopen
(
libname
.
c_str
(),
RTLD_LAZY
);
return
dlopen
(
libname
.
c_str
(),
llFlags
);
}
int
DynamicLoader
::
CloseLibrary
(
DynamicLoader
::
LibraryHandle
lib
)
...
...
This diff is collapsed.
Click to expand it.
DynamicLoader.hxx.in
+
6
−
1
View file @
e28d7282
...
...
@@ -73,7 +73,12 @@ public:
// This is currently only supported on Windows.
SearchBesideLibrary = 0x00000001,
AllOpenFlags = SearchBesideLibrary
// Make loaded symbols visible globally
//
// This is currently only supported on *nix systems.
RTLDGlobal = 0x00000002,
AllOpenFlags = SearchBesideLibrary | RTLDGlobal
};
/** Load a dynamic library into the current process.
...
...
This diff is collapsed.
Click to expand it.
Brad King
@brad.king
mentioned in commit
292392f0
·
3 years ago
mentioned in commit
292392f0
mentioned in commit 292392f019bef7a3c80e4e017f14a78e7529194d
Toggle commit list
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