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 /src/vhdl/python/libghdl/thin/errorout.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 'src/vhdl/python/libghdl/thin/errorout.py')
-rw-r--r-- | src/vhdl/python/libghdl/thin/errorout.py | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/vhdl/python/libghdl/thin/errorout.py b/src/vhdl/python/libghdl/thin/errorout.py deleted file mode 100644 index 809cc919e..000000000 --- a/src/vhdl/python/libghdl/thin/errorout.py +++ /dev/null @@ -1,34 +0,0 @@ -from libghdl import libghdl - -Enable_Warning = libghdl.errorout__enable_warning - - - -class Msgid: - Msgid_Note = 0 - Warnid_Library = 1 - Warnid_Missing_Xref = 2 - Warnid_Default_Binding = 3 - Warnid_Binding = 4 - Warnid_Port = 5 - Warnid_Reserved_Word = 6 - Warnid_Nested_Comment = 7 - Warnid_Directive = 8 - Warnid_Parenthesis = 9 - Warnid_Vital_Generic = 10 - Warnid_Delayed_Checks = 11 - Warnid_Body = 12 - Warnid_Specs = 13 - Warnid_Universal = 14 - Warnid_Port_Bounds = 15 - Warnid_Runtime_Error = 16 - Warnid_Delta_Cycle = 17 - Warnid_Shared = 18 - Warnid_Hide = 19 - Warnid_Unused = 20 - Warnid_Others = 21 - Warnid_Pure = 22 - Warnid_Static = 23 - Msgid_Warning = 24 - Msgid_Error = 25 - Msgid_Fatal = 26 |