Fix OPENRAM_HOME path for library

This commit is contained in:
Eren Dogan 2022-11-04 15:47:38 -07:00
parent 557b2e7459
commit 62700e4d2b
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ def setup_paths():
"Source code at this path will be used as library.")
except:
import openram
OPENRAM_HOME = os.path.dirname(openram.__file__)
OPENRAM_HOME = os.path.dirname(openram.__file__ + "/compiler")
# Add this directory to os.environ here
os.environ["OPENRAM_HOME"] = OPENRAM_HOME