From 189824429cb5d58ac87762560450a90ce3a7e721 Mon Sep 17 00:00:00 2001 From: Mik Igor <136681630+htm23x@users.noreply.github.com> Date: Fri, 27 Oct 2023 00:45:32 +0200 Subject: [PATCH] Add freepdk45 to debug error in tech_name validation Ooops, I forgot to add the freepdk45 mention in the debug.log string --- compiler/globals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/globals.py b/compiler/globals.py index 04442601..0d7863e0 100644 --- a/compiler/globals.py +++ b/compiler/globals.py @@ -567,7 +567,7 @@ def import_tech(): # Validate tech_name param techname_lower = OPTS.tech_name.lower() if (techname_lower is None) or (techname_lower!="sky130" and techname_lower!="scn3m_subm" and techname_lower!="scn4m_subm" and techname_lower!="freepdk45") : - debug.error("tech_name in config file should be sky130|scn3m_subm|scn4m_subm") + debug.error("tech_name in config file should be sky130|scn3m_subm|scn4m_subm|freepdk45") quit() # Import the tech