diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2017-12-14 00:06:02 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2017-12-14 00:06:02 +0100 |
commit | 290abf59e6f13bb1468d8e3df050cf0bd9c48708 (patch) | |
tree | a61d3dce0bd34372b48668f44d280b5d886e2994 /lib | |
parent | 7576ffd4eb196d5d5a15f6cacb2ba5cba00576ef (diff) | |
parent | f5cb7eb3e68e4b7d1bb5eeb8d9c58666201945d4 (diff) |
Merge PR #6038: [build] Remove coqmktop in favor of ocamlfind.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/cProfile.ml (renamed from lib/profile.ml) | 0 | ||||
-rw-r--r-- | lib/cProfile.mli (renamed from lib/profile.mli) | 0 | ||||
-rw-r--r-- | lib/envars.ml | 12 | ||||
-rw-r--r-- | lib/flags.ml | 8 | ||||
-rw-r--r-- | lib/flags.mli | 6 | ||||
-rw-r--r-- | lib/lib.mllib | 2 |
6 files changed, 6 insertions, 22 deletions
diff --git a/lib/profile.ml b/lib/cProfile.ml index 0bc226a45..0bc226a45 100644 --- a/lib/profile.ml +++ b/lib/cProfile.ml diff --git a/lib/profile.mli b/lib/cProfile.mli index cae4397a1..cae4397a1 100644 --- a/lib/profile.mli +++ b/lib/cProfile.mli diff --git a/lib/envars.ml b/lib/envars.ml index 206d75033..8ebf84057 100644 --- a/lib/envars.ml +++ b/lib/envars.ml @@ -153,19 +153,17 @@ let coqpath = let exe s = s ^ Coq_config.exec_extension -let ocamlfind () = - if !Flags.ocamlfind_spec then !Flags.ocamlfind else Coq_config.ocamlfind +let ocamlfind () = Coq_config.ocamlfind (** {2 Camlp4 paths} *) let guess_camlp4bin () = which (user_path ()) (exe Coq_config.camlp4) let camlp4bin () = - if !Flags.camlp4bin_spec then !Flags.camlp4bin else - if !Flags.boot then Coq_config.camlp4bin else - try guess_camlp4bin () - with Not_found -> - Coq_config.camlp4bin + if !Flags.boot then Coq_config.camlp4bin else + try guess_camlp4bin () + with Not_found -> + Coq_config.camlp4bin let camlp4 () = camlp4bin () / exe Coq_config.camlp4 diff --git a/lib/flags.ml b/lib/flags.ml index b43d5f74d..9631da633 100644 --- a/lib/flags.ml +++ b/lib/flags.ml @@ -153,14 +153,6 @@ let is_standard_doc_url url = let coqlib_spec = ref false let coqlib = ref "(not initialized yet)" -(* Options for changing ocamlfind (used by coqmktop) *) -let ocamlfind_spec = ref false -let ocamlfind = ref Coq_config.camlbin - -(* Options for changing camlp4bin (used by coqmktop) *) -let camlp4bin_spec = ref false -let camlp4bin = ref Coq_config.camlp4bin - (* Level of inlining during a functor application *) let default_inline_level = 100 diff --git a/lib/flags.mli b/lib/flags.mli index b82fe6128..1b1e264f0 100644 --- a/lib/flags.mli +++ b/lib/flags.mli @@ -122,12 +122,6 @@ val is_standard_doc_url : string -> bool val coqlib_spec : bool ref val coqlib : string ref -(** Options for specifying where OCaml binaries reside *) -val ocamlfind_spec : bool ref -val ocamlfind : string ref -val camlp4bin_spec : bool ref -val camlp4bin : string ref - (** Level of inlining during a functor application *) val set_inline_level : int -> unit val get_inline_level : unit -> int diff --git a/lib/lib.mllib b/lib/lib.mllib index 8791f0741..66f939a91 100644 --- a/lib/lib.mllib +++ b/lib/lib.mllib @@ -9,7 +9,7 @@ System CThread Spawn Trie -Profile +CProfile Explore Predicate Rtree |