From a2c18c0369de7ca302ad398b348ab429fe8f3fbe Mon Sep 17 00:00:00 2001 From: letouzey Date: Wed, 21 Dec 2011 23:16:48 +0000 Subject: Isolate a few types of Goptions in a pure .mli, solving a dep issue with ocamlbuild A few types of Goptions are mentioned in toplevel/interface.mli. Since the latter is a pure .mli, this shouldn't trigger a dependency with respect to goptions.ml, but apparently ocamlbuild isn't clever enough to notice this, and hence wants to link a pile of useless stuff with coqide. I'll discuss with Pierre-Marie about the best long-term way to avoid this mess, but in the meantime I split the concerned types of Goptions in a separate Goptionstyp.mli. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@14841 85f007b7-540e-0410-9357-904b9bb8a0f7 --- library/goptionstyp.mli | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 library/goptionstyp.mli diff --git a/library/goptionstyp.mli b/library/goptionstyp.mli new file mode 100644 index 0000000000..541a1470c7 --- /dev/null +++ b/library/goptionstyp.mli @@ -0,0 +1,26 @@ +(************************************************************************) +(* v * The Coq Proof Assistant / The Coq Development Team *) +(*