Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import ctypes
  2. libFile = 'a.so'
  3. lib = ctypes.CDLL(libFile, mode=ctypes.RTLD_LOCAL)
  4.  
  5. a.so: undefined_symbol __symbol
  6.  
  7. lib = ctypes.CDLL(libFile, mode=ctypes.RTLD_GLOBAL)
  8. lib = ctypes.cdll.LoadLibrary(libFile)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement