This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/python/swig/__init__.py

27 lines
568 B
Python
Raw Normal View History

2017-05-02 07:38:23 +01:00
import imp
import os
import ctypes
import glob
import os.path
import sys
2017-06-13 13:34:17 +01:00
import platform
2017-05-02 07:38:23 +01:00
global yap_lib_path
yap_lib_path = os.path.dirname(__file__)
2017-06-13 13:34:17 +01:00
if platform.system() == 'Windows':
def load( dll ):
dll = glob.glob(os.path.join(yap_lib_path,dll))[0]
dll = os.path.abspath(dll)
ctypes.WinDLL(dll)
else:
def load( dll ):
dll = glob.glob(os.path.join(yap_lib_path,dll))[0]
dll = os.path.abspath(dll)
ctypes.CDLL(dll, mode=ctypes.RTLD_GLOBAL)
2017-05-02 07:38:23 +01:00
2017-06-13 13:34:17 +01:00
load('libgcc*')
load('libstdc*')
load('libsinpt*')
load('libgmp*')