blob: 63a34b23c5baf143d3857f22908870f42fdc7f06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import ctypes
import sys
import os.path
_ext = {'linux': '.so',
'linux2': '.so',
'darwin': '.dylib',
'win32': '.dll',
'cygwin': '.dll'}
# Load the DLL.
_basedir = os.path.join(os.path.dirname(__file__), '..')
libghdl = ctypes.CDLL(os.path.join(
_basedir, 'libghdl' + _ext.get(sys.platform, '.so')))
# Low-level initialization (elaboration).
libghdl.libghdl_init()
# Set the default prefix.
_prefix = os.path.join(_basedir, "ghdl")
_prefix_opt = ("--PREFIX=" + _prefix).encode('utf-8')
libghdl.libghdl__set_option(
ctypes.c_char_p(_prefix_opt), len(_prefix_opt))
|