Ok, here it is:
Loading a shared object from a library archive on AIX:
http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.basetechref/doc/basetrf1/dlopen.htm
Use the flag RTLD_MEMBER when calling dlopen().
This causes dlopen() to pass L_LOADMEMBER when calling on to load().
And then you can call dlopen() like this:
dlopen("<path>/libpython2.6.a(libpython2.6.so)", RTLD_MEMBER | ...);
:-) Martin
--
You received this message because you are subscribed to the Google Groups
"PyInstaller" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pyinstaller?hl=en.