From 285f51407853bf0292b4b7107a8c15b46a975717 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Thu, 14 Nov 2024 18:01:10 -0600 Subject: [PATCH] try RTLD_GLOBAL --- python/libucx/libucx/load.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/libucx/libucx/load.py b/python/libucx/libucx/load.py index ca3d2cf..9155b2c 100644 --- a/python/libucx/libucx/load.py +++ b/python/libucx/libucx/load.py @@ -39,7 +39,7 @@ # a library to be loaded later and successfully satisfy that dependency # without polluting the global symbol table with symbols from # that library that could conflict with symbols from other DSOs. -PREFERRED_LOAD_FLAG = ctypes.RTLD_LOCAL +PREFERRED_LOAD_FLAG = ctypes.RTLD_GLOBAL def _load_system_installation(soname: str):