X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain.ml;h=2b74a4f42ca2e5226b81b55c8c9a487621797dae;hb=881b2e9b7bad0da8f44418e9e6558710db5ce690;hp=6421aa8023eb7eeed82c7d61f77414764c845bb9;hpb=2ac1b84cb49ad04e27b4543436b0227153fbfb15;p=goals.git diff --git a/src/main.ml b/src/main.ml index 6421aa8..2b74a4f 100644 --- a/src/main.ml +++ b/src/main.ml @@ -19,6 +19,8 @@ open Printf +open Utils + (* See comment in parser.mly. *) let () = Parser.lexer_read := Some Lexer.read; @@ -28,12 +30,27 @@ let main () = (* Change directory (-C option). *) Sys.chdir Cmdline.directory; + (* Create the initial environment, containing the system environment + * and a few other standard strings. + *) + let env = + Array.fold_left ( + fun env environ -> + let k, v = split "=" environ in + Ast.Env.add k (Ast.EConstant (Ast.noloc, Ast.CString v)) env + ) Ast.Env.empty (Unix.environment ()) in + let env = + Ast.Env.add "stdlib" + (Ast.EConstant (Ast.noloc, Ast.CString Cmdline.stdlibdir)) + env in + (*let env = + if Cmdline.debug_flag then Ast.Env.add "debug" (Ast.EConstant (noloc, Ast.CBool true)) env else env in *) + (* Parse the prelude. *) let env = if Cmdline.use_prelude then - Parse.parse_goalfile Ast.Env.empty Cmdline.prelude_file - else - Ast.Env.empty in + Parse.parse_goalfile env Cmdline.prelude_gl_file + else env in (* Parse the input file. *) let env = Parse.parse_goalfile env Cmdline.input_file in