From 0e532e357ddbcf83326cd6fb8dab3e75ec72a041 Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Fri, 25 Nov 2022 01:39:00 +0100 Subject: [PATCH] doc updates (install xschem with different/old tcl-tk libs installed in non standard places) --- doc/xschem_man/install_xschem.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/doc/xschem_man/install_xschem.html b/doc/xschem_man/install_xschem.html index 4f5db6b3..b0339df1 100644 --- a/doc/xschem_man/install_xschem.html +++ b/doc/xschem_man/install_xschem.html @@ -131,6 +131,27 @@ p{padding: 15px 30px 10px;}


+ +

- Build xschem with a custom tcl-tk installation

+

If you need to build xschem against a tcl-tk installation located in a non-standard place you + must provide additional options to the .configure script.
+ Suppose there is a tcl-tk version 8.4 installation in /home/schippes/x/tcltk + then the following commands must be given before runninkg make and make install: +

+
+export LD_LIBRARY_PATH=/home/schippes/x/tcltk/lib
+
+./configure \
+--prefix=/home/schippes \
+/arg/tcl-version=8.4 \
+/arg/tk-version=8.4 \
+--prefix/libs/script/tcl=/home/schippes/x/tcltk \
+--prefix/libs/script/tk=/home/schippes/x/tcltk \
+--debug
+ 
+

This is the command I run to build and test xschem with tcl-tk 8.4 which was released 20 years ago.

+ +

-Technical information - Detailed XSCHEM startup sequence

Information here under is not meant to be executed by the user