From 2957357ce5e5f98e854a99153bd92e0e4de74732 Mon Sep 17 00:00:00 2001 From: Jeff DiCorpo <42048757+jeffdi@users.noreply.github.com> Date: Mon, 11 Apr 2022 16:38:49 -0700 Subject: [PATCH] avoid pdk version checking in openlane (#61) * Update Makefile Update to workaround pdk version matching in Openlane * Update Makefile updated OPENLANE_TAG --- openlane/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlane/Makefile b/openlane/Makefile index ccd0ce96..c9627549 100644 --- a/openlane/Makefile +++ b/openlane/Makefile @@ -17,7 +17,7 @@ BLOCKS = $(shell find * -maxdepth 0 -type d) CONFIG = $(foreach block,$(BLOCKS), ./$(block)/config.tcl) CLEAN = $(foreach block,$(BLOCKS), clean-$(block)) -OPENLANE_TAG ?= 2021.11.23_01.42.34 +OPENLANE_TAG ?= 7891c2c8859e8c800226920c181fa039ad298e79 OPENLANE_IMAGE_NAME ?= efabless/openlane:$(OPENLANE_TAG) OPENLANE_BASIC_COMMAND = "cd $(PWD)/../openlane && flow.tcl -design ./$* -save_path .. -save -tag $* -overwrite" OPENLANE_INTERACTIVE_COMMAND = "cd $(PWD)/../openlane && flow.tcl -it -file ./$*/interactive.tcl" @@ -49,6 +49,7 @@ endif -e PDK_ROOT=$(PDK_ROOT) \ -e CARAVEL_ROOT=$(CARAVEL_ROOT) \ -e PDK=$(PDK) \ + -e TEST_MISMATCHES=tools \ -u $(shell id -u $(USER)):$(shell id -g $(USER)) \ $(OPENLANE_IMAGE_NAME) sh -c $(OPENLANE_INTERACTIVE_COMMAND);\ else\ @@ -59,6 +60,7 @@ endif -e PDK=$(PDK) \ -e PDK_ROOT=$(PDK_ROOT) \ -e CARAVEL_ROOT=$(CARAVEL_ROOT) \ + -e TEST_MISMATCHES=tools \ -u $(shell id -u $(USER)):$(shell id -g $(USER)) \ $(OPENLANE_IMAGE_NAME) sh -c $(OPENLANE_BASIC_COMMAND);\ fi