SCM Repository
View of /sml/trunk/src/cm/util/stdcfg.sml
Parent Directory
|
Revision Log
Revision 397 -
(download)
(annotate)
Fri Aug 13 07:06:52 1999 UTC (21 years, 5 months ago) by blume
File size: 939 byte(s)
Fri Aug 13 07:06:52 1999 UTC (21 years, 5 months ago) by blume
File size: 939 byte(s)
old-style operators recognized (with warning message)
(* * 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) end end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |