Trying to open xschem schematic inside a cloned re...
# xschem
v
Trying to open xschem schematic inside a cloned repo but io pins are missing. Can someone suggest the issue here.
m
Click on the missing symbol to select. Press
q
to see where the device is defined. If it’s an absolute path, you’ll have to change it. You can do this with
sed -i 's,repo-path,local-path,g' cellname.sch
where
repo-path
is the path currently defined and
local-path
is your local path to where the device files are stored. If the device paths are relative, I’d try to add the directory to your search paths in
xschemrc
.
s
@vks, find this line in your xschemrc and add `/devices`: from:
append XSCHEM_LIBRARY_PATH :${XSCHEM_SHAREDIR}/xschem_library
to:
append XSCHEM_LIBRARY_PATH :${XSCHEM_SHAREDIR}/xschem_library/devices
v
Thanks @Mitch Bailey and @Stefan Schippers