Add freepdk45 to tech_name validation in compiler/globals.py

Forgot to add the freepdk45 tech_name in validation
This commit is contained in:
Mik Igor 2023-10-27 00:40:55 +02:00 committed by GitHub
parent ce2b11ebd9
commit 123e43e942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,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") :
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")
quit()