From b2276823d4d04f63abb330908df635cba5010ebf Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 20 May 2019 18:16:42 +0200 Subject: python: add Flag_Force_Analysis in flags.py --- src/vhdl/python/libghdl/thin/flags.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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") -- cgit v1.2.3