aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-06-22 09:03:55 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2022-12-24 11:47:51 +0100
commit53fbe284740a23af5457fe12abd4715eb2309abd (patch)
treecb4f6e66618d9cb7f744ac046b7c5c8847d3b8ca /pyGHDL
parentb5884712a4ce8980831d4b231d123688063ccbf2 (diff)
downloadghdl-53fbe284740a23af5457fe12abd4715eb2309abd.tar.gz
ghdl-53fbe284740a23af5457fe12abd4715eb2309abd.tar.bz2
ghdl-53fbe284740a23af5457fe12abd4715eb2309abd.zip
Exposed new flags from libghdl: mb_comment, fexplicit, frelaxed.
(cherry picked from commit 2a78cc687299c5bc0f4f65127957dbe4d7176027)
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/libghdl/flags.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pyGHDL/libghdl/flags.py b/pyGHDL/libghdl/flags.py
index 523b6c9cf..1eca1544f 100644
--- a/pyGHDL/libghdl/flags.py
+++ b/pyGHDL/libghdl/flags.py
@@ -49,7 +49,10 @@ assert sizeof(c_bool) == 1
Flag_Elocations = c_bool.in_dll(libghdl, "flags__flag_elocations")
-Verbose = c_bool.in_dll(libghdl, "flags__verbose")
+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`.
Flag_Elaborate_With_Outdated = c_bool.in_dll(libghdl, "flags__flag_elaborate_with_outdated")