Replies: 2 comments 4 replies
-
@vvbandeira please look at the cleanup issue |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for pointing this out @gkamendje. Turns out that |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The following code in
./build_openroad.sh
does not clean up the directorytools/yosys/abc
It turns out that running
./build_openroad.sh -o -l --clean-force
will not removeabc
related binaries compiled with a previous libraries dependency set. In my case for example, I had previously compiled in Ubuntu 20.04 which comes withlibreadline.so.7
. After upgrading my system to Ubuntu 22.04, despite re-building ORFS with--clean-force
,abc
would still show up as linked tolibreadline.so.7
instead of
libreadline.so.8
simply because the directorytools/yosys/abc
had not been cleaned up.Beta Was this translation helpful? Give feedback.
All reactions