mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-29 11:55:52 +00:00
Merge branch 'YosysHQ:main' into master
This commit is contained in:
commit
f0c4aa7059
4 changed files with 23 additions and 17 deletions
10
Makefile
10
Makefile
|
@ -140,7 +140,7 @@ LIBS += -lrt
|
|||
endif
|
||||
endif
|
||||
|
||||
YOSYS_VER := 0.41+101
|
||||
YOSYS_VER := 0.41+108
|
||||
|
||||
# Note: We arrange for .gitcommit to contain the (short) commit hash in
|
||||
# tarballs generated with git-archive(1) using .gitattributes. The git repo
|
||||
|
@ -949,7 +949,13 @@ define DOC_USAGE_STDERR
|
|||
docs/source/generated/$(1): $(PROGRAM_PREFIX)$(1) docs/source/generated
|
||||
-$(Q) ./$$< --help 2> $$@
|
||||
endef
|
||||
DOCS_USAGE_STDERR := yosys-config yosys-filterlib yosys-abc
|
||||
DOCS_USAGE_STDERR := yosys-config yosys-filterlib
|
||||
|
||||
# The in-tree ABC (yosys-abc) is only built when ABCEXTERNAL is not set.
|
||||
ifeq ($(ABCEXTERNAL),)
|
||||
DOCS_USAGE_STDERR += yosys-abc
|
||||
endif
|
||||
|
||||
$(foreach usage,$(DOCS_USAGE_STDERR),$(eval $(call DOC_USAGE_STDERR,$(usage))))
|
||||
|
||||
# others print to stdout
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue