We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db2744 commit 2cd6b4eCopy full SHA for 2cd6b4e
1 file changed
vunit/builtins.py
@@ -10,6 +10,7 @@
10
11
from os.path import join, abspath, dirname, basename
12
from glob import glob
13
+from warnings import warn
14
from vunit.vhdl_standard import VHDL
15
from vunit.sim_if.common import simulator_check
16
@@ -128,6 +129,12 @@ def _add_array_util(self):
128
129
if not self._vhdl_standard >= VHDL.STD_2008:
130
raise RuntimeError("Array util only supports vhdl 2008 and later")
131
132
+ arr_deprecation_note = (
133
+ "'array_t' is deprecated and it will removed in future releases;"
134
+ "use 'integer_array_t' instead"
135
+ )
136
+ warn(arr_deprecation_note, Warning)
137
+
138
self._vunit_lib.add_source_files(join(VHDL_PATH, "array", "src", "*.vhd"))
139
140
def _add_random(self):
0 commit comments