diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-17 18:26:24 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-17 18:26:24 +0100 |
commit | 0574c562f9b1152e1077323f1bd8e57c2afda544 (patch) | |
tree | 0c77f8ee773556f8d173a41e1cd515e4d0b51838 /pyGHDL | |
parent | 4514e2ed4abb166c932ac22b77968515e6fc3249 (diff) | |
download | ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.tar.gz ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.tar.bz2 ghdl-0574c562f9b1152e1077323f1bd8e57c2afda544.zip |
standalone pyGHDL: put libraries in lib (instead of bin)
Diffstat (limited to 'pyGHDL')
-rw-r--r-- | pyGHDL/libghdl/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/__init__.py b/pyGHDL/libghdl/__init__.py index 2be39d1d6..b6516abb8 100644 --- a/pyGHDL/libghdl/__init__.py +++ b/pyGHDL/libghdl/__init__.py @@ -164,7 +164,7 @@ def _initialize(): if sys_platform == "win32" and sys_version_info.major == 3 and sys_version_info.minor >= 8: from os import add_dll_directory as os_add_dll_directory - p1 = _libghdl_path.parent.parent / "bin" + p1 = _libghdl_path.parent.parent / "lib" os_add_dll_directory(str(p1)) # Load libghdl shared object |