summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/DynamicLoader.hxx.in
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-10-27 15:21:46 (GMT)
committerBrad King <brad.king@kitware.com>2021-10-27 15:21:46 (GMT)
commit848eeba483bef0cfeeef78ae77dc3c9a7327b8ea (patch)
tree3f8066f2905e9c1deb97f3f48db165edf8017289 /Source/kwsys/DynamicLoader.hxx.in
parenta956be484783a991dbda3b14f676538d5f0b17bd (diff)
parent6015a898d463fc321187ae346155654d55393a4c (diff)
downloadCMake-848eeba483bef0cfeeef78ae77dc3c9a7327b8ea.zip
CMake-848eeba483bef0cfeeef78ae77dc3c9a7327b8ea.tar.gz
CMake-848eeba483bef0cfeeef78ae77dc3c9a7327b8ea.tar.bz2
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream * upstream-KWSys: KWSys 2021-10-27 (e19a5668)
Diffstat (limited to 'Source/kwsys/DynamicLoader.hxx.in')
-rw-r--r--Source/kwsys/DynamicLoader.hxx.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/kwsys/DynamicLoader.hxx.in b/Source/kwsys/DynamicLoader.hxx.in
index 539c742..4edd31c 100644
--- a/Source/kwsys/DynamicLoader.hxx.in
+++ b/Source/kwsys/DynamicLoader.hxx.in
@@ -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.