# Alliance VLSI CAD System
# Copyright (C) 1990, 2000 ASIM/LIP6/UPMC
#
# Home page : http://www-asim.lip6.fr/alliance/
# E-mail support : mailto:alliance-support@asim.lip6.fr
# ftp site : ftp://ftp-asim.lip6.fr/pub/alliance/
#
# $Id: README,v 1.6 2000/01/28 14:50:56 czo Exp $
# Alliance
# ===================================================================
Alliance VLSI CAD System
Copyright (C) Laboratoire LIP6 - Département ASIM
Universite Pierre et Marie Curie
4, place Jussieu
75252 Paris Cedex 05
France
"Alliance VLSI CAD System" is free Software.
Alliance is available under the terms of the GNU General Public License
GPL (http://www.gnu.org/copyleft/gpl.html).
You are welcome to use the software package even for commercial designs
without any fee. You are just required to mention :
"Designed with Alliance CAD system, Copyright (C) 1991, 2000 Université
Pierre et Marie Curie"
You can get Alliance via anonymous FTP from ftp.lip6.fr
ftp://ftp-asim.lip6.fr/pub/alliance/
# Downloading
# ===================================================================
Note that for running some precompiled Alliance binaries you will need gcc and
other gnu tools (gmake, gawk ...), X11R6.4 libraries (http://www.x.org/), Motif
1.2 libraries (You can find a free Motif clone at http://www.lesstif.org/) Rpms
for linux RedHat 6 of lesstif-0.88 are available at
ftp://ftp-asim.lip6.fr/pub/alliance/redist/
Gziped tar format :
-------------------
You will have to download at least two files : one for the common files of
Alliance (like cells library) and another containing binaries for your specific
platform. Binaries for Linux, SunOS, Solaris and FreeBSD platforms are
available.
download alliance-X.XX-common.tar.gz Files common to each platform *required*
download alliance-X.XX-i386-linux-Y.YY.tar.gz for Linux
download alliance-X.XX-i386-freebsd-Y.YY.tar.gz for FreeBSD
download alliance-X.XX-sparc-sunos-Y.YY.tar.gz for SunOS
download alliance-X.XX-sparc-solaris-Y.YY.tar.gz for Solaris
Where X.XX is the Alliance version number (e.g.: 3.2 for Alliance 3.2)
and Y.YY is the OS version number (e.g.: 4.1.4 for SunOS 4.1.4)
Linux Rpm :
-----------
Available for Linux RedHat 6 (the common package is included)
download alliance-X.XX-i386-asimYY.rpm
# Installation :
# ===================================================================
Gziped tar format :
-------------------
You *don't* need to be root to install Alliance in a directory you *own*
In the example above I assume you have logged as root
1/ cd to the directory where you want to install Alliance
> cd /usr/local
2/ Unpack the common package
> gunzip -c alliance-X.XX-common.tgz | tar -xf -
3/ Unpack one of the platform specific package
> gunzip -c alliance-X.XX-linux-Y.YY.tgz | tar -xf -
4/ cd to alliance/share/etc and run the 'configure' script
(This is the *only* script you need to run)
> cd alliance/share/etc
> ./configure
If your OS is recognized as "Unknown", you will need to edit
configure.in alc_env.sh.in and alc_env.csh.in and run autoconf
for that those script use a good $ALLIANCE_OS name. If
libraries (X11, Motif/LessTiff, readline ...) or tools (sed,
gawk, ...) are missing, you will have to install them.
If you install Alliance on different platforms you'll
need to run the 'configure' script on each of them.
Linux Rpm :
-----------
Note that the Linux RedHat 6 rpm installs Alliance in "/usr/local/alliance"
> rpm -Uvh alliance-X.XX-i386-asimYY.rpm
# Usage :
# ===================================================================
Each user has to source alc_env.[c]sh to set Alliance environment
variables to be able to run the Alliance tools.
in sh > . [where you have installed Alliance]/alliance/share/etc/alc_env.sh
in csh > source [where you have installed Alliance]/alliance/share/etc/alc_env.csh
This sets various default environment variables which could be changed by user
later (Like MBK_OUT_LO to set the netlist output file format).
If you are a SysAdmin, you should consider linking these scripts in
the system's profile (e.g.: /etc/profile.d/ on Linux) so that configuration
would be done at user login.
If you encounter problems, check the value of these variables in alc_env.[c]sh
$ALLIANCE_OS : actually Linux
or SunOS
or Solaris
$ALLIANCE_TOP : actually [where you have installed Alliance]/alliance/archi/Linux
or [where you have installed Alliance]/alliance/archi/SunOS
or [where you have installed Alliance]/alliance/archi/Solaris
That's all :-)
# EOF