X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=matita%2FmatitaInit.ml;h=c2677afdbd82ad40f9d8d5b816b4888087e601cb;hb=fb3ae649cf1079117166318809ac5a2dba987dcd;hp=a135fec803e9b5e7028276d93d4c7186d758866d;hpb=3da15a10eadcba9a0d9cef36f2e66e6c9b076d32;p=helm.git diff --git a/matita/matitaInit.ml b/matita/matitaInit.ml index a135fec80..c2677afdb 100644 --- a/matita/matitaInit.ml +++ b/matita/matitaInit.ml @@ -52,6 +52,7 @@ let registry_defaults = [ "matita.profile", "true"; "matita.system", "false"; "matita.verbosity", "1"; + "matita.bench", "false"; (** verbosity level: 1 is the default, 0 is intuitively "quiet", > 1 is * intuitively verbose *) ] @@ -107,6 +108,8 @@ let initialize_environment init_status = if not (already_configured [Getter;Environment] init_status) then begin Http_getter.init (); + if Helm_registry.get_bool "matita.system" then + Http_getter_storage.activate_system_mode (); CicEnvironment.set_trust (* environment trust *) (let trust = Helm_registry.get_opt_default Helm_registry.get_bool @@ -126,6 +129,11 @@ let _ = [ "matitac", sprintf "MatitaC v%s Usage: matitac [ OPTION ... ] FILE +Options:" + BuildTimeConf.version; + "gragrep", + sprintf "Grafite Grep v%s +Usage: gragrep [ -r ] PATH Options:" BuildTimeConf.version; "matita", @@ -155,6 +163,8 @@ Options:" Usage: matitamake [ OPTION ... ] (init | clean | list | destroy | build) init Parameters: name (the name of the development, required) + root (the directory in which the delopment is rooted, + optional, default is current working directory) Description: tells matitamake that a new development radicated in the current working directory should be handled. clean @@ -172,6 +182,11 @@ Usage: matitamake [ OPTION ... ] (init | clean | list | destroy | build) build Parameters: name (the name of the development to build, required) Description: completely builds the develpoment. + publish + Parameters: name (the name of the development to publish, required) + Description: cleans the development in the user space, rebuilds it + in the system space ('ro' repositories, that for this operation + becames writable). Notes: If target is omitted an 'all' will be used as the default. With -build you can build a development wherever it is. @@ -190,9 +205,15 @@ let usage () = in try Hashtbl.find usages usage_key with Not_found -> default_usage +let extra_cmdline_specs = ref [] +let add_cmdline_spec l = extra_cmdline_specs := l @ !extra_cmdline_specs + let parse_cmdline init_status = if not (already_configured [CmdLine] init_status) then begin - let includes = ref [ BuildTimeConf.stdlib_dir ] in + let includes = ref [ + BuildTimeConf.stdlib_dir_devel; + BuildTimeConf.stdlib_dir_installed ; ] + in let args = ref [] in let add_l l = fun s -> l := s :: !l in let reduce_verbosity () = @@ -219,6 +240,9 @@ let parse_cmdline init_status = "-noprofile", Arg.Unit (fun () -> Helm_registry.set_bool "matita.profile" false), "Turns off profiling printings"; + "-bench", + Arg.Unit (fun () -> Helm_registry.set_bool "matita.bench" true), + "Turns on parsable output on stdout, that is timings for matitac..."; "-preserve", Arg.Unit (fun () -> Helm_registry.set_bool "matita.preserve" true), "Turns off automatic baseuri cleaning"; @@ -238,13 +262,14 @@ let parse_cmdline init_status = ] else [] in - std_arg_spec @ debug_arg_spec + std_arg_spec @ debug_arg_spec @ !extra_cmdline_specs in let set_list ~key l = Helm_registry.set_list Helm_registry.of_string ~key ~value:(List.rev !l) in Arg.parse arg_spec (add_l args) (usage ()); set_list ~key:"matita.includes" includes; + args := List.filter (fun x -> x <> "") !args; set_list ~key:"matita.args" args; HExtlib.set_profiling_printings (fun () -> Helm_registry.get_bool "matita.profile"); @@ -276,4 +301,6 @@ let parse_cmdline () = let fill_registry () = status := fill_registry !status +;; +Inversion_principle.init ()