SCM Repository
View of /sml/trunk/src/cm/util/stdcfg.sml
Parent Directory
|
Revision Log
Revision 505 -
(download)
(annotate)
Thu Dec 9 08:24:08 1999 UTC (21 years, 3 months ago) by blume
File size: 993 byte(s)
Thu Dec 9 08:24:08 1999 UTC (21 years, 3 months ago) by blume
File size: 993 byte(s)
pickle dropper
(* * CM parameters that are configurable via shell-environment variables. * * Copyright (c) 1999 by Lucent Technologies, Bell Laboratories. * * author: Matthias Blume (blume@cs.princeton.edu) *) structure StdConfig = struct local val bool = EnvConfig.new Bool.fromString val int = EnvConfig.new Int.fromString val string = EnvConfig.new SOME val stringoptthunk = EnvConfig.new (fn s => SOME (fn () => SOME s)) in val verbose = bool ("VERBOSE", true) val debug = bool ("DEBUG", false) val keep_going = bool ("KEEP_GOING", false) val pathcfgspec = string ("PATHCONFIG", "/usr/lib/smlnj-pathconfig") val parse_caching = int ("PARSE_CACHING", 100) val local_pathconfig = stringoptthunk ("LOCAL_PATHCONFIG", fn () => Option.map (fn h => OS.Path.concat (h, ".smlnj-pathconfig")) (OS.Process.getEnv "HOME")) val warn_obsolete = bool ("WARN_OBSOLETE", true) val conserve_memory = bool ("CONSERVE_MEMORY", true) end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |