Change in strategy for guessing Alliance top cells directory.
* In cumulus.designflow.technos.setupCMOS(): export back the guessed ALLIANCE_TOP *before* importing technos.symbolic.cmos so it is used for the CELLS_TOP. This avoid defaulting to /soc/alliance which does exists only on LIP6 computers...
This commit is contained in:
parent
d41e328253
commit
21eedbcc2b
|
@ -42,15 +42,16 @@ class Where ( object ):
|
||||||
return '<Where coriolisTop="{}">'.format( Where.coriolisTop.as_posix() )
|
return '<Where coriolisTop="{}">'.format( Where.coriolisTop.as_posix() )
|
||||||
|
|
||||||
|
|
||||||
def setupCMOS ():
|
def setupCMOS ( checkToolkit=None ):
|
||||||
|
Where( checkToolkit )
|
||||||
|
ShellEnv().export()
|
||||||
|
|
||||||
from .. import Cfg
|
from .. import Cfg
|
||||||
from .. import Viewer
|
from .. import Viewer
|
||||||
from .. import CRL
|
from .. import CRL
|
||||||
from ..helpers import overlay, l, u, n
|
from ..helpers import overlay, l, u, n
|
||||||
from .yosys import Yosys
|
from .yosys import Yosys
|
||||||
import coriolis.technos.symbolic.cmos
|
import coriolis.technos.symbolic.cmos
|
||||||
|
|
||||||
Where()
|
|
||||||
|
|
||||||
with overlay.CfgCache(priority=Cfg.Parameter.Priority.UserFile) as cfg:
|
with overlay.CfgCache(priority=Cfg.Parameter.Priority.UserFile) as cfg:
|
||||||
cfg.misc.catchCore = False
|
cfg.misc.catchCore = False
|
||||||
|
|
Loading…
Reference in New Issue