Hi there,
I cannot figure out where did the 'dl' module went when running
python on AMD64 (debian stable).
According to the documentation, I have :
python
....
setdlopenflags( ...)
<snip>
sys.setdlopenfl ags(dl.RTLD_NOW |dl.RTLD_GLOBAL )
....
But when -as suggested by the doc- to load dl, I am getting:
Traceback (most recent call last):
File "<stdin>", line 1, in ?
ImportError: No module named dl
dl module is extremely important since I need to load shared lib with
RTLD_GLOBAL (and not RTLD_LOCAL)
Ref:
& http://lists.apple.com/archives/xcod.../msg00234.html
Thanks
-Mathieu
I cannot figure out where did the 'dl' module went when running
python on AMD64 (debian stable).
According to the documentation, I have :
python
>>import sys
>>help(sys.setd lopenflags)
>>help(sys.setd lopenflags)
setdlopenflags( ...)
<snip>
sys.setdlopenfl ags(dl.RTLD_NOW |dl.RTLD_GLOBAL )
....
But when -as suggested by the doc- to load dl, I am getting:
>>import dl
File "<stdin>", line 1, in ?
ImportError: No module named dl
dl module is extremely important since I need to load shared lib with
RTLD_GLOBAL (and not RTLD_LOCAL)
Ref:
& http://lists.apple.com/archives/xcod.../msg00234.html
Thanks
-Mathieu