etc/settings
author wenzelm
Fri, 15 Sep 2000 19:07:55 +0200
changeset 9989 3788cb659e0c
parent 9973 d048e08f3347
child 9994 b06f6d2eef5f
permissions -rw-r--r--
tentative fix while hunting gremlins ...;
     1 #
     2 # $Id$
     3 # Author: Markus Wenzel, TU Muenchen
     4 # License: GPL (GNU GENERAL PUBLIC LICENSE)
     5 #
     6 # Isabelle settings -- site defaults.
     7 # Do *NOT* copy this file into your personal isabelle directory!!!
     8 
     9 ###
    10 ### ML compiler settings (ESSENTIAL!)
    11 ###
    12 
    13 # Note that ML_HOME specifies the location of the actual compiler
    14 # binaries.  Do not invent new ML system names unless you know what
    15 # you are doing.  Only one of the sections below should be activated.
    16 
    17 # Poly/ML 3.x or later
    18 POLYML_HOME=$(choosefrom \
    19   "$ISABELLE_HOME/contrib/polyml" \
    20   "$ISABELLE_HOME/../polyml" \
    21   "/usr/share/polyml" \
    22   "/usr/local/polyml")
    23 ML_SYSTEM=$("$POLYML_HOME/bin/polyml-version" 2>/dev/null || echo polyml)
    24 ML_PLATFORM=$("$POLYML_HOME/bin/polyml-platform" 2>/dev/null)
    25 ML_HOME="$POLYML_HOME/$ML_PLATFORM"
    26 ML_OPTIONS="-h 30000"
    27 
    28 # Standard ML of New Jersey 110 or later
    29 #ML_SYSTEM=smlnj-110
    30 #ML_HOME="$ISABELLE_HOME/../smlnj/bin"
    31 #ML_OPTIONS="@SMLdebug=/dev/null"
    32 #ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
    33 
    34 # Moscow ML 2.00 or later (experimental!)
    35 #ML_SYSTEM=mosml
    36 #ML_HOME="$ISABELLE_HOME/../mosml/bin"
    37 #ML_PLATFORM=""
    38 #ML_OPTIONS=""
    39 
    40 # MLWorks 2.0
    41 #ML_SYSTEM=mlworks
    42 #ML_HOME="$ISABELLE_HOME/../mlworks/bin"
    43 #ML_OPTIONS=""
    44 #ML_PLATFORM=""
    45 
    46 # Standard ML of New Jersey 0.93
    47 #ML_SYSTEM=smlnj-0.93
    48 #ML_HOME=/usr/local/ldist/DIR/sml-0.93/src
    49 #ML_OPTIONS=""
    50 #ML_PLATFORM=""
    51 
    52 
    53 ###
    54 ### Compilation options
    55 ###
    56 
    57 ISABELLE_USEDIR_OPTIONS="-i false"
    58 #ISABELLE_USEDIR_OPTIONS="-i true -d pdf"
    59 
    60 
    61 ###
    62 ### Document preparation
    63 ###
    64 
    65 TEXINPUTS="$ISABELLE_HOME/lib/texinputs:$TEXINPUTS"
    66 ISABELLE_LATEX="latex"
    67 ISABELLE_PDFLATEX="pdflatex"
    68 ISABELLE_BIBTEX="bibtex"
    69 ISABELLE_DVIPS="dvips -D 600"
    70 
    71 # The thumbpdf tool is probably not generally available ...
    72 #ISABELLE_THUMBPDF="thumbpdf"
    73 
    74 
    75 ###
    76 ### Misc path settings
    77 ###
    78 
    79 # The place for user configuration, heap files, etc.
    80 ISABELLE_HOME_USER=~/isabelle
    81 
    82 # Where to look for isabelle tools (multiple dirs separated by ':').
    83 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
    84 
    85 # Location for temporary files (should be on a local file system).
    86 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
    87 
    88 
    89 # Heap input locations. ML system identifier is included in lookup.
    90 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
    91 
    92 # Heap output location. ML system identifier is appended automatically later on.
    93 if [ "$THIS_IS_ISABELLE_BUILD" = true ]; then
    94   #Isabelle build tells us to store heaps etc. within the distribution.
    95   ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
    96   ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
    97 else
    98   ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
    99   ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
   100 fi
   101 
   102 # Site settings check -- just to make it a little bit harder to copy this file!
   103 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
   104   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
   105 
   106 #Users may want to change this.
   107 ISABELLE_LOGIC=HOL
   108 
   109 
   110 ## Docs
   111 
   112 #Where to look for docs (multiple dirs separated by ':').
   113 ISABELLE_DOCS="$ISABELLE_HOME/doc"
   114 
   115 #The dvi file viewer
   116 DVI_VIEWER=xdvi
   117 #DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
   118 #DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
   119 #DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
   120 
   121 
   122 ## Fonts -- how to install the Isabelle X11 fonts (can be tricky!).
   123 
   124 # (1) Get fonts from local (client side) directory:
   125 ISABELLE_INSTALLFONTS="xset fp+ \"$ISABELLE_HOME/lib/fonts\"; xset fp rehash"
   126 
   127 # (2) Get from font server at Munich or Cambridge:
   128 #ISABELLE_INSTALLFONTS="xset fp+ tcp/isafonts.informatik.tu-muenchen.de:7200"
   129 #ISABELLE_INSTALLFONTS="xset fp+ tcp/font-serv.cl.cam.ac.uk:7100"
   130 
   131 
   132 ###
   133 ### Interfaces
   134 ###
   135 
   136 # The null interface: pass-through to 'isabelle'.
   137 #ISABELLE_INTERFACE=none
   138 
   139 # Simple xterm based interface.
   140 ISABELLE_INTERFACE=xterm
   141 ISABELLE_XTERM_OPTIONS=""
   142 
   143 # Emacs running Isamode.
   144 #ISABELLE_INTERFACE=emacs
   145 ISAMODE_HOME="$ISABELLE_HOME/contrib/Isamode"
   146 ISAMODE_OPTIONS=""
   147 
   148 # Proof General
   149 ISABELLE_INTERFACE=$(choosefrom \
   150   "$ISABELLE_HOME/contrib/ProofGeneral/isar/interface" \
   151   "$ISABELLE_HOME/../ProofGeneral/isar/interface" \
   152   "/usr/share/ProofGeneral/isar/interface" \
   153   "/usr/local/ProofGeneral/isar/interface" \
   154   "/usr/share/emacs/ProofGeneral/isar/interface" \
   155   "$ISABELLE_INTERFACE")
   156 PROOFGENERAL_OPTIONS=""
   157 
   158 # X-Symbol mode for Proof General
   159 XSYMBOL_HOME=$(choosefrom \
   160   "$ISABELLE_HOME/contrib/x-symbol" \
   161   "$ISABELLE_HOME/../x-symbol" \
   162   "/usr/share/x-symbol" \
   163   "/usr/local/x-symbol" \
   164   "")
   165 
   166 
   167 ###
   168 ### External reasoning tools
   169 ###
   170 
   171 ## Set HOME only for tools you have installed!
   172 
   173 # SVC (Stanford Validity Checker)
   174 #SVC_HOME=
   175 #SVC_MACHINE=i386-redhat-linux
   176 #SVC_MACHINE=sparc-sun-solaris
   177 
   178 # Mucke (mu-calculus model checker)
   179 #MUCKE_HOME=/usr/local/bin
   180 
   181 # Einhoven model checker
   182 #EINDHOVEN_HOME=/usr/local/bin