diff options
-rw-r--r-- | src/vhdl/python/libghdl/thin/flags.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vhdl/python/libghdl/thin/flags.py b/src/vhdl/python/libghdl/thin/flags.py index b50480442..cc49c1651 100644 --- a/src/vhdl/python/libghdl/thin/flags.py +++ b/src/vhdl/python/libghdl/thin/flags.py @@ -1,5 +1,7 @@ from libghdl import libghdl -from ctypes import c_bool +from ctypes import c_bool, sizeof + +assert sizeof(c_bool) == 1 Flag_Elocations = c_bool.in_dll(libghdl, "flags__flag_elocations") @@ -7,3 +9,6 @@ Verbose = c_bool.in_dll(libghdl, "flags__verbose") Flag_Elaborate_With_Outdated = c_bool.in_dll( libghdl, "flags__flag_elaborate_with_outdated") + +Flag_Force_Analysis = c_bool.in_dll( + libghdl, "flags__flag_force_analysis") |