diff options
author | pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2011-11-14 16:38:23 +0000 |
---|---|---|
committer | pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2011-11-14 16:38:23 +0000 |
commit | 8b2abed090d7058fd6da576444a581d854b4d5d9 (patch) | |
tree | aceecd6a1712b44685823fc02d15034bd721df8c | |
parent | 6c0af6104d41762220a1d613d2331e7a0294df80 (diff) |
Bug 2637: patches to make slightly easier to write programs that use coq code, without the toplevel.
by Tom Prince
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14651 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r-- | scripts/coqmktop.ml | 6 | ||||
-rw-r--r-- | toplevel/coqtop.mli | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/coqmktop.ml b/scripts/coqmktop.ml index c5e6905f9..7dcfbab16 100644 --- a/scripts/coqmktop.ml +++ b/scripts/coqmktop.ml @@ -50,6 +50,7 @@ let opt = ref false let full = ref false let top = ref false let echo = ref false +let no_start = ref false let src_dirs () = [ []; ["kernel";"byterun"]; [ "config" ]; [ "toplevel" ] ] @@ -171,12 +172,14 @@ let parse_args () = | ("-noassert"|"-compact"|"-g"|"-p"|"-thread"|"-dtypes" as o) :: rem -> parse (o::op,fl) rem | ("-h"|"--help") :: _ -> usage () + | ("-no-start") :: rem -> no_start:=true; parse (op, fl) rem | f :: rem -> if Filename.check_suffix f ".ml" or Filename.check_suffix f ".cmx" or Filename.check_suffix f ".cmo" or Filename.check_suffix f ".cmxa" - or Filename.check_suffix f ".cma" then + or Filename.check_suffix f ".cma" + or Filename.check_suffix f ".c" then parse (op,f::fl) rem else begin prerr_endline ("Don't know what to do with " ^ f); @@ -238,6 +241,7 @@ let create_tmp_main_file modules = (* Initializes the kind of loading *) output_string oc (declare_loading_string()); (* Start the toplevel loop *) + if not !no_start then output_string oc "Coqtop.start();;\n"; close_out oc; main_name diff --git a/toplevel/coqtop.mli b/toplevel/coqtop.mli index 9da66398c..16d2b8747 100644 --- a/toplevel/coqtop.mli +++ b/toplevel/coqtop.mli @@ -11,4 +11,6 @@ state, load the files given on the command line, load the ressource file, produce the output state if any, and finally will launch [Toplevel.loop]. *) +val init_toplevel : string list -> unit + val start : unit -> unit |