mirror of https://github.com/YosysHQ/yosys.git
Release version 0.43
This commit is contained in:
parent
dac5bd1983
commit
c6e5e0b26b
11
CHANGELOG
11
CHANGELOG
|
@ -2,8 +2,17 @@
|
||||||
List of major changes and improvements between releases
|
List of major changes and improvements between releases
|
||||||
=======================================================
|
=======================================================
|
||||||
|
|
||||||
Yosys 0.42 .. Yosys 0.43-dev
|
Yosys 0.42 .. Yosys 0.43
|
||||||
--------------------------
|
--------------------------
|
||||||
|
* Various
|
||||||
|
- C++ compiler with C++17 support is required.
|
||||||
|
- Support for IO liberty files for verification.
|
||||||
|
- Limit padding from shiftadd for "peepopt" pass.
|
||||||
|
|
||||||
|
* Verific support
|
||||||
|
- Support building Yosys with various Verific library
|
||||||
|
configurations. Can be built now without YosysHQ
|
||||||
|
specific patch and extension library.
|
||||||
|
|
||||||
Yosys 0.41 .. Yosys 0.42
|
Yosys 0.41 .. Yosys 0.42
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
6
Makefile
6
Makefile
|
@ -20,7 +20,7 @@ ENABLE_VERIFIC := 0
|
||||||
ENABLE_VERIFIC_SYSTEMVERILOG := 1
|
ENABLE_VERIFIC_SYSTEMVERILOG := 1
|
||||||
ENABLE_VERIFIC_VHDL := 1
|
ENABLE_VERIFIC_VHDL := 1
|
||||||
ENABLE_VERIFIC_HIER_TREE := 1
|
ENABLE_VERIFIC_HIER_TREE := 1
|
||||||
ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 1
|
ENABLE_VERIFIC_YOSYSHQ_EXTENSIONS := 0
|
||||||
ENABLE_VERIFIC_EDIF := 0
|
ENABLE_VERIFIC_EDIF := 0
|
||||||
ENABLE_VERIFIC_LIBERTY := 0
|
ENABLE_VERIFIC_LIBERTY := 0
|
||||||
ENABLE_COVER := 1
|
ENABLE_COVER := 1
|
||||||
|
@ -143,7 +143,7 @@ LIBS += -lrt
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
YOSYS_VER := 0.42+40
|
YOSYS_VER := 0.43
|
||||||
|
|
||||||
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
||||||
# tarballs generated with git-archive(1) using .gitattributes. The git repo
|
# tarballs generated with git-archive(1) using .gitattributes. The git repo
|
||||||
|
@ -159,7 +159,7 @@ endif
|
||||||
OBJS = kernel/version_$(GIT_REV).o
|
OBJS = kernel/version_$(GIT_REV).o
|
||||||
|
|
||||||
bumpversion:
|
bumpversion:
|
||||||
sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9b6afcf.. | wc -l`/;" Makefile
|
# sed -i "/^YOSYS_VER := / s/+[0-9][0-9]*$$/+`git log --oneline 9b6afcf.. | wc -l`/;" Makefile
|
||||||
|
|
||||||
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
ABCMKARGS = CC="$(CXX)" CXX="$(CXX)" ABC_USE_LIBSTDCXX=1 ABC_USE_NAMESPACE=abc VERBOSE=$(Q)
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import os
|
||||||
project = 'YosysHQ Yosys'
|
project = 'YosysHQ Yosys'
|
||||||
author = 'YosysHQ GmbH'
|
author = 'YosysHQ GmbH'
|
||||||
copyright ='2024 YosysHQ GmbH'
|
copyright ='2024 YosysHQ GmbH'
|
||||||
yosys_ver = "0.42"
|
yosys_ver = "0.43"
|
||||||
|
|
||||||
# select HTML theme
|
# select HTML theme
|
||||||
html_theme = 'furo'
|
html_theme = 'furo'
|
||||||
|
|
Loading…
Reference in New Issue