diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2019-06-17 03:38:27 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-06-17 03:38:27 +0200 |
commit | 159e0bfdbb135e74aac10e54c7a499e9e34aa5a2 (patch) | |
tree | a1ed3fbd98ddd464041a25f5e389fdd029e55528 /python/libghdl/thin/vhdl/elocations.py | |
parent | d71489efc74c55ee09f242ae5d87dbee694a8b5e (diff) | |
download | ghdl-159e0bfdbb135e74aac10e54c7a499e9e34aa5a2.tar.gz ghdl-159e0bfdbb135e74aac10e54c7a499e9e34aa5a2.tar.bz2 ghdl-159e0bfdbb135e74aac10e54c7a499e9e34aa5a2.zip |
Rework libghdl build/install procedure (#840)
* feat(libghdl): add libghdl_pkg.py, add option to generate libghdl-py.tgz with dist/travis/build.sh
* libghdl*.so is now part of GHDL
* move python sources to python/libghdl and python/pnodes
* rename src/vhdl/python to src/vhdl/libghdl
* add generation of tarball for libghdl-py to the makefile
* deprecate --enable-python and --disable-python
* add configuration option --disable-libghdl
* feat(python/libghdl): add support for LIBGHDL_PREFIX (#844)
* fix(travis): disable libghdl on mac
* feat(python/libghdl): add support for GHDL_BIN_PATH and VUNIT_GHDL_PATH
Diffstat (limited to 'python/libghdl/thin/vhdl/elocations.py')
-rw-r--r-- | python/libghdl/thin/vhdl/elocations.py | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/python/libghdl/thin/vhdl/elocations.py b/python/libghdl/thin/vhdl/elocations.py new file mode 100644 index 000000000..642598650 --- /dev/null +++ b/python/libghdl/thin/vhdl/elocations.py @@ -0,0 +1,62 @@ +from libghdl import libghdl + + +Get_Start_Location = libghdl.vhdl__elocations__get_start_location + +Set_Start_Location = libghdl.vhdl__elocations__set_start_location + +Get_Right_Paren_Location = libghdl.vhdl__elocations__get_right_paren_location + +Set_Right_Paren_Location = libghdl.vhdl__elocations__set_right_paren_location + +Get_End_Location = libghdl.vhdl__elocations__get_end_location + +Set_End_Location = libghdl.vhdl__elocations__set_end_location + +Get_Is_Location = libghdl.vhdl__elocations__get_is_location + +Set_Is_Location = libghdl.vhdl__elocations__set_is_location + +Get_Begin_Location = libghdl.vhdl__elocations__get_begin_location + +Set_Begin_Location = libghdl.vhdl__elocations__set_begin_location + +Get_Then_Location = libghdl.vhdl__elocations__get_then_location + +Set_Then_Location = libghdl.vhdl__elocations__set_then_location + +Get_Loop_Location = libghdl.vhdl__elocations__get_loop_location + +Set_Loop_Location = libghdl.vhdl__elocations__set_loop_location + +Get_Generate_Location = libghdl.vhdl__elocations__get_generate_location + +Set_Generate_Location = libghdl.vhdl__elocations__set_generate_location + +Get_Generic_Location = libghdl.vhdl__elocations__get_generic_location + +Set_Generic_Location = libghdl.vhdl__elocations__set_generic_location + +Get_Port_Location = libghdl.vhdl__elocations__get_port_location + +Set_Port_Location = libghdl.vhdl__elocations__set_port_location + +Get_Generic_Map_Location = libghdl.vhdl__elocations__get_generic_map_location + +Set_Generic_Map_Location = libghdl.vhdl__elocations__set_generic_map_location + +Get_Port_Map_Location = libghdl.vhdl__elocations__get_port_map_location + +Set_Port_Map_Location = libghdl.vhdl__elocations__set_port_map_location + +Get_Arrow_Location = libghdl.vhdl__elocations__get_arrow_location + +Set_Arrow_Location = libghdl.vhdl__elocations__set_arrow_location + +Get_Colon_Location = libghdl.vhdl__elocations__get_colon_location + +Set_Colon_Location = libghdl.vhdl__elocations__set_colon_location + +Get_Assign_Location = libghdl.vhdl__elocations__get_assign_location + +Set_Assign_Location = libghdl.vhdl__elocations__set_assign_location |