mirror of https://github.com/VLSIDA/OpenRAM.git
Fix library path in globals.setup_paths()
This commit is contained in:
parent
a5aea64b09
commit
f95ff3c694
|
|
@ -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__ + "/compiler")
|
||||
OPENRAM_HOME = os.path.dirname(openram.__file__) + "/compiler"
|
||||
# Add this directory to os.environ here
|
||||
os.environ["OPENRAM_HOME"] = OPENRAM_HOME
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue