INSTALL
author wenzelm
Thu, 22 May 1997 11:20:41 +0200
changeset 3289 8c947c178f29
parent 3263 124bb367dc0e
child 3322 bc4d107fb6dd
permissions -rw-r--r--
tuned;
     1 
     2 ***************************************************************************
     3 
     4 IMPORTANT NOTE: This file describes the *new* installation procedure
     5 using various scripts that are still supposed beta for Isabelle94-8.
     6 If you encounter any problems, you may want to consider compiling
     7 Isabelle the olden way, as described in README.old.
     8 
     9 ***************************************************************************
    10 
    11 
    12 Isabelle installation notes
    13 ===========================
    14 
    15 Unpacking the archive
    16 ---------------------
    17 
    18 After unpacking the Isabelle distribution archive (using tar and gzip)
    19 you are left with some directory IsabelleYY-X. You may install this
    20 anywhere, but please just *not* as ~/isabelle!!!
    21 
    22 The place where you put the contents of IsabelleYY-X will be referred
    23 to as [ISABELLE_HOME] subsequently.
    24 
    25 
    26 Auto configuration
    27 ------------------
    28 
    29 There are some minor adaptions to be made of the Isabelle distribution
    30 to your system environment. Simply type:
    31 
    32   cd [ISABELLE_HOME]
    33   ./configure
    34 
    35 
    36 ML system settings and compilation
    37 ----------------------------------
    38 
    39 Before actual compilation you have to tell Isabelle about your
    40 Standard ML system.  These settings reside in ./etc/settings, which
    41 may be also overridden by ~/isabelle/etc/settings. There are already
    42 various sample configurations in ./etc/settings commented out.
    43 
    44 To build the core Isabelle/Pure and the default object-logic, just
    45 type:
    46 
    47   ./build
    48 
    49 More object-logics can be made similarly:
    50 
    51   ./build FOL HOL
    52 
    53 
    54 Running the system
    55 ------------------
    56 
    57 Provided that compilation was successful, you can now run something
    58 like:
    59 
    60   [ISABELLE_HOME]/bin/isabelle FOL
    61 
    62 This starts an interactive Isabelle session within your current text
    63 terminal.  You may want to put [ISABELLE_HOME]/bin into your shell's
    64 search PATH. Please do *not* copy (or link) the Isabelle scripts
    65 somewhere else -- or they just won't work!
    66 
    67 
    68 $Id$