diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-12-24 11:06:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 11:06:07 +0100 |
commit | 5bca94f83b0d44297f943ff0d0237ec216fc29e9 (patch) | |
tree | 1b045b05c55baeb2676cdbb0dcb00393c24557db /pyGHDL/libghdl/__init__.py | |
parent | 26bb3c572eaffafafd8de8ef09b8acc34f91656f (diff) | |
parent | 08a338e9568c333929c6863be60580619e3e77ff (diff) | |
download | ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.gz ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.tar.bz2 ghdl-5bca94f83b0d44297f943ff0d0237ec216fc29e9.zip |
Merge pull request #2281 from Paebbels/paebbels/encoding
Configurable encoding for pyGHDL
Diffstat (limited to 'pyGHDL/libghdl/__init__.py')
-rw-r--r-- | pyGHDL/libghdl/__init__.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pyGHDL/libghdl/__init__.py b/pyGHDL/libghdl/__init__.py index 372f5968b..2cf9cff70 100644 --- a/pyGHDL/libghdl/__init__.py +++ b/pyGHDL/libghdl/__init__.py @@ -48,6 +48,8 @@ from pyGHDL import __version__ as ghdlVersion Nullable = Optional +ENCODING = "latin-1" + class LibGHDLException(GHDLBaseException): _internalErrors: Nullable[List[str]] @@ -164,7 +166,7 @@ def _initialize(): libghdl.libghdl__set_hooks_for_analysis() # Set the prefix in order to locate the VHDL libraries. - prefix = str(_libghdl_path.parent.parent).encode("utf-8") + prefix = str(_libghdl_path.parent.parent).encode(ENCODING) libghdl.libghdl__set_exec_prefix(c_char_p(prefix), len(prefix)) return libghdl @@ -197,7 +199,7 @@ def set_option(Opt: str) -> bool: :param Opt: Option to set. :return: Return ``True``, if the option is known and handled. """ - Opt = Opt.encode("utf-8") + Opt = Opt.encode(ENCODING) return libghdl.libghdl__set_option(c_char_p(Opt), len(Opt)) == 0 @@ -233,7 +235,7 @@ def analyze_file(fname: str) -> Iir: :param fname: File name :return: Internal Intermediate Representation (IIR) """ - fname = fname.encode("utf-8") + fname = fname.encode(ENCODING) return libghdl.libghdl__analyze_file(c_char_p(fname), len(fname)) |