Version bump
This commit is contained in:
parent
1d8955fea5
commit
04c0fc8aa7
20
Changes
20
Changes
|
|
@ -3,7 +3,7 @@ Revision history for Verilator
|
||||||
The contributors that suggested a given feature are shown in []. Thanks!
|
The contributors that suggested a given feature are shown in []. Thanks!
|
||||||
|
|
||||||
|
|
||||||
* Verilator 4.035 devel
|
* Verilator 4.036 2020-06-06
|
||||||
|
|
||||||
** OPT_FAST is now -Os by default. See the BENCHMARKING & OPTIMIZATION part
|
** OPT_FAST is now -Os by default. See the BENCHMARKING & OPTIMIZATION part
|
||||||
of the manual if you experience issues with compilation speed.
|
of the manual if you experience issues with compilation speed.
|
||||||
|
|
@ -17,6 +17,15 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
||||||
*** Support verilator_coverage --write-info for lcov HTML reports.
|
*** Support verilator_coverage --write-info for lcov HTML reports.
|
||||||
Line Coverage now tracks all statement lines, not just branch lines.
|
Line Coverage now tracks all statement lines, not just branch lines.
|
||||||
|
|
||||||
|
*** --output-split is now on by default. VM_PARALLEL_BUILDS is set by
|
||||||
|
default iff the --output-split caused an actual file split to occur.
|
||||||
|
--output-split-cfuncs and --output-split-ctrace now default to the
|
||||||
|
value of --output-split. These changes should improve build times of
|
||||||
|
medium and large designs with default options. User makefiles may
|
||||||
|
require changes.
|
||||||
|
|
||||||
|
*** The run-time library is now compiled with -Os by default. (#2369, #2373)
|
||||||
|
|
||||||
**** Support multi channel descriptor I/O (#2190) [Stephen Henry]
|
**** Support multi channel descriptor I/O (#2190) [Stephen Henry]
|
||||||
|
|
||||||
**** Support $countbits. (#2287) [Yossi Nivin]
|
**** Support $countbits. (#2287) [Yossi Nivin]
|
||||||
|
|
@ -35,15 +44,6 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
||||||
|
|
||||||
**** Fix queues and dynamic array wide ops. (#2352) [Vassilis Papaefstathiou]
|
**** Fix queues and dynamic array wide ops. (#2352) [Vassilis Papaefstathiou]
|
||||||
|
|
||||||
**** --output-split is now on by default. VM_PARALLEL_BUILDS is set by
|
|
||||||
default iff the --output-split caused an actual file split to occur.
|
|
||||||
--output-split-cfuncs and --output-split-ctrace now default to the
|
|
||||||
value of --output-split. These changes should improve build times of
|
|
||||||
medium and large designs with default options. User makefiles may
|
|
||||||
require changes.
|
|
||||||
|
|
||||||
**** The run-time library is now compiled with -Os by default. (#2369, #2373)
|
|
||||||
|
|
||||||
|
|
||||||
* Verilator 4.034 2020-05-03
|
* Verilator 4.034 2020-05-03
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
#AC_INIT([Verilator],[#.### YYYY-MM-DD])
|
#AC_INIT([Verilator],[#.### YYYY-MM-DD])
|
||||||
#AC_INIT([Verilator],[#.### devel])
|
#AC_INIT([Verilator],[#.### devel])
|
||||||
AC_INIT([Verilator],[4.035 devel],
|
AC_INIT([Verilator],[4.036 2020-06-06],
|
||||||
[https://verilator.org],
|
[https://verilator.org],
|
||||||
[verilator],[https://verilator.org])
|
[verilator],[https://verilator.org])
|
||||||
# When releasing, also update header of Changes file
|
# When releasing, also update header of Changes file
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue