Merge branch 'fix-config-scripts'

This commit is contained in:
Matt Guthaus 2016-11-09 11:28:06 -08:00
commit 9696c2591f
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ LOCAL = "{0}/..".format(os.path.dirname(__file__))
##########################
# FreePDK45 paths
PDK_DIR="$FREEPDK45"
PDK_DIR=os.path.abspath(os.environ.get("FREEPDK45"))
os.environ["PDK_DIR"] = PDK_DIR
os.environ["SYSTEM_CDS_LIB_DIR"] = "{0}/ncsu_basekit/cdssetup".format(PDK_DIR)
os.environ["CDS_SITE"] = PDK_DIR

View File

@ -19,8 +19,8 @@ os.environ["MGC_TMPDIR"] = "/tmp"
###########################
# OpenRAM Paths
DRCLVS_HOME="$OPENRAM_TECH/scn3me_subm/tech"
OPENRAM_TECH=os.path.abspath(os.environ.get("OPENRAM_TECH"))
DRCLVS_HOME=OPENRAM_TECH+"/scn3me_subm/tech"
os.environ["DRCLVS_HOME"] = DRCLVS_HOME
##########################