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