StefanSchippers / xschem

A schematic editor for VLSI/Asic/Analog custom designs, netlist backends for VHDL, Spice and Verilog. The tool is focused on hierarchy and parametric designs, to maximize circuit reuse.
Other
317 stars 21 forks source link

Running into library dependency issue even though it is installed. #184

Closed ddosluuw closed 6 months ago

ddosluuw commented 6 months ago

Hello, when I run configure I receive the following message:

Checking for tk... 8.6... (no tcl) 8.5... (no tcl) 8.4... (no tcl) plain... (no tcl) not found Node libs/script/tk/* is required but provided detection callback fails to find that feature on that system.

However, tcl is already installed:

_sudo yum list tcl Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile

Has anyone run into this issue with the configure script?

ddosluuw commented 6 months ago

I am installing this on Centos 7.

StefanSchippers commented 6 months ago

you need the development packages, these contain the files needed to build programs that use tcl and tk usually these packages are called tcl8.6-dev, tk8.6-dev or similar, depending on the distribution. for centOS probably tcl-devel-8.5.13-8.el7.x86_64.rpm and tk-devel-8.5.13-6.el7.x86_64.rpm

ddosluuw commented 6 months ago

Thank you