mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2024-11-21 21:32:58 +05:30
Merge branch 'python/abspath' of scuti/lib3ddevil1 into python/finalize
This commit is contained in:
commit
5b16a0eadc
@ -1,13 +1,18 @@
|
||||
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']
|
||||
# os.environ['PATH'] = os.path.abspath(
|
||||
# os.path.join(
|
||||
# os.path.dirname(__file__), "../")) \
|
||||
# + ';' \
|
||||
# + os.environ['PATH']
|
||||
# __file__ is this __init__.py
|
||||
# This assumes that the repo's directory has not been modified
|
||||
# and that
|
||||
so = '/lib3ddevil1.so'
|
||||
libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), "../"))
|
||||
sharedlib = libdir + so
|
||||
try:
|
||||
libc = ctypes.cdll.LoadLibrary(sharedlib)
|
||||
except OSError as e:
|
||||
|
Loading…
Reference in New Issue
Block a user