etc/settings
author wenzelm
Sat, 27 Jul 2013 22:20:25 +0200
changeset 53883 eec610972763
parent 53880 a7d69a11f395
child 53927 6150cf05f729
permissions -rw-r--r--
discontinued historic document formats;
     1 # -*- shell-script -*- :mode=shellscript:
     2 #
     3 # Isabelle settings -- distribution defaults.
     4 #
     5 # Important notes:
     6 #   * See the "system" manual for explanations on Isabelle settings
     7 #   * DO NOT EDIT the repository copy of this file!
     8 #   * DO NOT COPY this file into your ~/.isabelle directory!
     9 
    10 ###
    11 ### JVM components (Scala or Java)
    12 ###
    13 
    14 ISABELLE_SCALA_BUILD_OPTIONS="-nowarn -target:jvm-1.5 -Xmax-classfile-name 130"
    15 
    16 
    17 ###
    18 ### Interactive sessions (cf. isabelle tty)
    19 ###
    20 
    21 ISABELLE_LINE_EDITOR=""
    22 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p rlwrap)"
    23 [ -z "$ISABELLE_LINE_EDITOR" ] && ISABELLE_LINE_EDITOR="$(type -p ledit)"
    24 
    25 
    26 ###
    27 ### Batch sessions (cf. isabelle build)
    28 ###
    29 
    30 ISABELLE_BUILD_OPTIONS=""
    31 ISABELLE_BUILD_JAVA_OPTIONS="-Xmx1024m -Xss1m"
    32 
    33 
    34 ###
    35 ### Document preparation (cf. isabelle latex/document)
    36 ###
    37 
    38 ISABELLE_LATEX="latex"
    39 ISABELLE_PDFLATEX="pdflatex"
    40 ISABELLE_BIBTEX="bibtex"
    41 ISABELLE_MAKEINDEX="makeindex"
    42 ISABELLE_EPSTOPDF="epstopdf"
    43 
    44 # Paranoia setting for strange latex installations ...
    45 #unset TEXMF
    46 
    47 
    48 ###
    49 ### Misc path settings
    50 ###
    51 
    52 ISABELLE_COMPONENT_REPOSITORY="http://isabelle.in.tum.de/components"
    53 
    54 # The place for user configuration, heap files, etc.
    55 if [ -z "$ISABELLE_IDENTIFIER" ]; then
    56   ISABELLE_HOME_USER="$USER_HOME/.isabelle"
    57 else
    58   ISABELLE_HOME_USER="$USER_HOME/.isabelle/$ISABELLE_IDENTIFIER"
    59 fi
    60 
    61 # Where to look for isabelle tools (multiple dirs separated by ':').
    62 ISABELLE_TOOLS="$ISABELLE_HOME/lib/Tools"
    63 
    64 # Location for temporary files (should be on a local file system).
    65 ISABELLE_TMP_PREFIX="/tmp/isabelle-$USER"
    66 
    67 # Heap input locations. ML system identifier is included in lookup.
    68 ISABELLE_PATH="$ISABELLE_HOME_USER/heaps:$ISABELLE_HOME/heaps"
    69 
    70 # Heap output location. ML system identifier is appended automatically later on.
    71 ISABELLE_OUTPUT="$ISABELLE_HOME_USER/heaps"
    72 ISABELLE_BROWSER_INFO="$ISABELLE_HOME_USER/browser_info"
    73 
    74 # Site settings check -- just to make it a little bit harder to copy this file verbatim!
    75 [ -n "$ISABELLE_SITE_SETTINGS_PRESENT" ] && \
    76   { echo >&2 "### Isabelle site settings already present!  Maybe copied etc/settings in full?"; }
    77 ISABELLE_SITE_SETTINGS_PRESENT=true
    78 
    79 
    80 ###
    81 ### Default logic
    82 ###
    83 
    84 ISABELLE_LOGIC=HOL
    85 
    86 
    87 ###
    88 ### Docs
    89 ###
    90 
    91 # Where to look for docs (multiple dirs separated by ':').
    92 ISABELLE_DOCS="$ISABELLE_HOME/doc"
    93 
    94 # PDF file viewer (command-line to eval)
    95 case "$ISABELLE_PLATFORM_FAMILY" in
    96   linux)
    97     PDF_VIEWER="xdg-open"
    98     ;;
    99   macos)
   100     PDF_VIEWER="open -W -n -a Safari"
   101     ;;
   102   windows)
   103     PDF_VIEWER="cygstart"
   104     ;;
   105 esac
   106 
   107 # DVI file viewer (command-line to eval)
   108 DVI_VIEWER=xdvi
   109 #DVI_VIEWER="xdvi -geometry 498x704 -expert -s 5"
   110 #DVI_VIEWER="xdvi -geometry 711x1005 -expert -s 7"
   111 #DVI_VIEWER="xdvi -geometry 500x704 -expert -s 10"
   112 #DVI_VIEWER="xdvi -geometry 555x782 -expert -s 9"
   113 
   114 
   115 ###
   116 ### Rendering information
   117 ###
   118 
   119 ISABELLE_FONTS="$ISABELLE_HOME/lib/fonts/IsabelleText.ttf:$ISABELLE_HOME/lib/fonts/IsabelleTextBold.ttf"
   120 ISABELLE_SYMBOLS="$ISABELLE_HOME/etc/symbols:$ISABELLE_HOME_USER/etc/symbols"
   121 
   122 
   123 ###
   124 ### Misc old-style settings
   125 ###
   126 
   127 # Standard ML of New Jersey (slow!)
   128 #ML_SYSTEM=smlnj-110
   129 #ML_HOME="/usr/local/smlnj/bin"
   130 #ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024"
   131 #ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
   132 #SMLNJ_CYGWIN_RUNTIME=1
   133 
   134 # Misc programming languages
   135 #ISABELLE_GHC="/usr/bin/ghc"
   136 #ISABELLE_OCAML="/usr/bin/ocaml"
   137 #ISABELLE_SWIPL="/usr/bin/swipl"