Added library to path to search for .so

This commit is contained in:
_ 2018-05-17 15:28:28 -07:00
parent 9b9f0bd6ee
commit e63ddfb838

View File

@ -1,8 +1,13 @@
import ctypes
import ctypes, os, sys
def loadlibc():
sharedlib = './lib3ddevil1.so'
libc = None
os.environ['PATH'] = os.path.abspath(
os.path.join(
os.path.dirname(__file__), "../")) \
+ ';' \
+ os.environ['PATH']
try:
libc = ctypes.cdll.LoadLibrary(sharedlib)
except OSError as e:
@ -10,4 +15,4 @@ def loadlibc():
raise SystemExit("Couldn't load %s" % sharedlib)
return libc
libc = loadlibc()
libc = loadlibc()