aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/libghdl/flags.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-06-22 20:19:57 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-24 11:47:51 +0100
commit960e44185ac356cca07d9d2eb6386e0286e31270 (patch)
treefe5bf02df0c615c98fdb3823ef605237af49b795 /pyGHDL/libghdl/flags.py
parent53fbe284740a23af5457fe12abd4715eb2309abd (diff)
downloadghdl-960e44185ac356cca07d9d2eb6386e0286e31270.tar.gz
ghdl-960e44185ac356cca07d9d2eb6386e0286e31270.tar.bz2
ghdl-960e44185ac356cca07d9d2eb6386e0286e31270.zip
Added new flag variables to __all__.
(cherry picked from commit a51422a1fd1c11a7add7b3ee799b93b98d5f20f0)
Diffstat (limited to 'pyGHDL/libghdl/flags.py')
-rw-r--r--pyGHDL/libghdl/flags.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/pyGHDL/libghdl/flags.py b/pyGHDL/libghdl/flags.py
index 1eca1544f..4bf30ef50 100644
--- a/pyGHDL/libghdl/flags.py
+++ b/pyGHDL/libghdl/flags.py
@@ -39,6 +39,9 @@ from pyGHDL.libghdl import libghdl
__all__ = [
"Flag_Elocations",
"Verbose",
+ "MB_Comment",
+ "Explicit",
+ "Relaxed",
"Flag_Elaborate_With_Outdated",
"Flag_Force_Analysis",
"AMS_Vhdl",
@@ -49,10 +52,10 @@ assert sizeof(c_bool) == 1
Flag_Elocations = c_bool.in_dll(libghdl, "flags__flag_elocations")
-Verbose = c_bool.in_dll(libghdl, "flags__verbose") #: Internal boolean flag representing :option:`-v`.
-MB_Comment = c_bool.in_dll(libghdl, "flags__mb_comment") #: Internal boolean flag representing :option:`--mb-comments`.
-Explicit = c_bool.in_dll(libghdl, "flags__flag_explicit") #: Internal boolean flag representing :option:`-fexplicit`.
-Relaxed = c_bool.in_dll(libghdl, "flags__flag_relaxed_rules") #: Internal boolean flag representing :option:`-frelaxed`.
+Verbose = c_bool.in_dll(libghdl, "flags__verbose") #: Internal boolean flag representing :option:`-v`.
+MB_Comment = c_bool.in_dll(libghdl, "flags__mb_comment") #: Internal boolean flag representing :option:`--mb-comment`.
+Explicit = c_bool.in_dll(libghdl, "flags__flag_explicit") #: Internal boolean flag representing :option:`-fexplicit`.
+Relaxed = c_bool.in_dll(libghdl, "flags__flag_relaxed_rules") #: Internal boolean flag representing :option:`-frelaxed`.
Flag_Elaborate_With_Outdated = c_bool.in_dll(libghdl, "flags__flag_elaborate_with_outdated")