You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when Xschem is already installed globally, building the repository from GitHub and running the executable from the src directory works seamlessly. However, in the absence of a global installation, executing the locally built Xschem results in the following error:
Tcl_AppInit() err 3: xschem.tcl not found, you are probably missing XSCHEM_SHAREDIR
The error indicates that the executable is attempting to locate resources in /usr/local/share/xschem, which requires a global installation of Xschem. This behavior limits the usability of locally built instances for testing or development purposes.
To enhance usability, it is proposed update the setup process to allow the local build to operate independently of global installation. This would involve modifying the build or execution scripts to dynamically locate or use relative paths for required resources, ensuring smooth functionality in standalone environments.
Action Required: Update the build and execution flow to enable local builds of Xschem to run without requiring a global installation.
The text was updated successfully, but these errors were encountered:
You need to go into the src/ directory and start xschem from there. This is what xschem uses to search all needed files in local directory.
If it still fails rename your local ~/.xschem/xschemrc file to something different (xschemrc_backup)
Currently, when Xschem is already installed globally, building the repository from GitHub and running the executable from the src directory works seamlessly. However, in the absence of a global installation, executing the locally built Xschem results in the following error:
Tcl_AppInit() err 3: xschem.tcl not found, you are probably missing XSCHEM_SHAREDIR
The error indicates that the executable is attempting to locate resources in
/usr/local/share/xschem
, which requires a global installation of Xschem. This behavior limits the usability of locally built instances for testing or development purposes.To enhance usability, it is proposed update the setup process to allow the local build to operate independently of global installation. This would involve modifying the build or execution scripts to dynamically locate or use relative paths for required resources, ensuring smooth functionality in standalone environments.
Action Required: Update the build and execution flow to enable local builds of Xschem to run without requiring a global installation.
The text was updated successfully, but these errors were encountered: