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