From d079240d38c6513d87bf5a03bd78df5e093e78a9 Mon Sep 17 00:00:00 2001 From: RonxBulld <526677628@qq.com> Date: Sat, 7 Jun 2025 22:21:09 +0800 Subject: [PATCH 1/2] Allows calling yosys_shutdown and then yosys_setup to restart. --- kernel/yosys.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/yosys.cc b/kernel/yosys.cc index 7d0d688fc..196b78186 100644 --- a/kernel/yosys.cc +++ b/kernel/yosys.cc @@ -187,12 +187,14 @@ int run_command(const std::string &command, std::function Date: Tue, 24 Jun 2025 00:24:55 +0000 Subject: [PATCH 2/2] Bump version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e742928b3..77771b6b0 100644 --- a/Makefile +++ b/Makefile @@ -160,7 +160,7 @@ ifeq ($(OS), Haiku) CXXFLAGS += -D_DEFAULT_SOURCE endif -YOSYS_VER := 0.54+17 +YOSYS_VER := 0.54+23 YOSYS_MAJOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f1) YOSYS_MINOR := $(shell echo $(YOSYS_VER) | cut -d'.' -f2 | cut -d'+' -f1) YOSYS_COMMIT := $(shell echo $(YOSYS_VER) | cut -d'+' -f2)