can someone help, When I am trying the following it is giving an error, prep -design designName -t...
m
can someone help, When I am trying the following it is giving an error, prep -design designName -tag tagName error says: tagName already exist use -overwrite but I don't want to overwrite, let's say last i worked till synthesis step, the other day i want to do the floorplan but with the same tagName in that case what should I be doing?
d
You can either use interactive mode and run the steps manually or try OpenLane 2: https://openlane2.readthedocs.io/en/latest/getting_started/migrants/index.html
m
I was running interactive mode only. Without migrating to OpenLane 2. What might be the issue that I am facing???
d
So this was removed in https://github.com/The-OpenROAD-Project/OpenLane/pull/1840 -- the interactive mode use-case slipped through the cracks on our part. We apologize. Long story short, the way this worked prevented new changes to the design configuration from propagating which confused new users. This was unworkable and the primary reason we started rewriting OpenLane. There are two solutions here: • Use the latest version without this change:
2023.06.14
• In your clone of OpenLane, type
git revert 5ca48214640dcb9f88945a3861be47716ebe187d
which will revert only this change. We once again apologize for the inconvenience.
We'll investigate restoring this functionality for interactive mode.
m
Thank you so much for all of those detailed answers.
why is that when I do git revert getting this error
d
Did you clone using —depth 1?
m
yes
d
Run
git fetch --unshallow
m
ok
d
Heads up, it will take a while
Depending on your internet
m
ok
thank you
whether i have to do after that git revert or not required?
is it not possible without git credentials?
d
No, it's not possible. These aren't a username and a password however, you just need to set a name and an email
m
ok, Thank you.
d
git config --global user.name "Md Zakir Hussain"
git config --global user.email "<your email>"
That's all you need to do
m
Ok. Thank you.
but this is giving this error
please help i don't know this git technicalities much
d
git stash
then revert
m
is that done?
d
then
git revert
git revert 5ca… to be specific
m
got this
d
Ctrl+X
Then press y
m
is that done?
d
Yes
m
Thank you so much.
While I do make mount getting this error
this is happening after git revert
d
make mount OPENLANE_IMAGE_NAME=efabless/openlane:9dbd8b5ea2bd891bed4dcc97df5c7439083f0368
Use this instead - the revert makes things a bit more difficult 🙂
m
i did revert to avoid -tag TagName already
if I do image_name 9dbd...
then that -tag tagName exist will persist
d
make mount
overwrites the
/openlane
directory with the one currently in your filesystem. Meaning you will have the tools of
9dbd8b5
and the scripts from after
git revert
.
m
ok, Thank you.