diff options
| author | Pierre Letouzey | 2013-12-16 17:08:46 +0100 |
|---|---|---|
| committer | Pierre Letouzey | 2013-12-16 17:24:55 +0100 |
| commit | 4759f60b04a278ecd46c8a120340ba55b185c6d1 (patch) | |
| tree | f5e24b08d23bd5efc9d0f80b86cde32ad548220f /_tags | |
| parent | 9f005304183ca9c46f6516c08c3c0cc2f1efc05f (diff) | |
A few fixes to the build system (mostly for ocamlbuild)
* vars.mli was mentionning Term instead of Constr, leading to a dep cycle
* Having a file named toplevel/toplevel.ml isn't a good idea when we also
have a toplevel/toplevel.mllib that ought to produce a toplevel.cma.
We rename toplevel.ml into Coqloop.ml
* Extra cleanup of toplevel.mllib :
- Ppextra isn't anywhere around (?!)
- Ppvernac was mentionned twice, and rather belongs to printing.mllib anyway
- Vernacexpr is a .mli and shouldn't appear in an .mllib
* During the link, printing.cma now comes after parsing.cma (Ppvernac uses Egramml)
* A few extra -threads in ocamlbuild files (btw, it's a bit sad to need -thread
for coqchk).
Diffstat (limited to '_tags')
| -rw-r--r-- | _tags | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,10 +9,10 @@ <tools/coq_makefile.{native,byte}> : use_str, use_unix <tools/coqdoc/main.{native,byte}> : use_str <ide/coqide_main.{native,byte}> : use_str, use_unix, ide -<checker/main.{native,byte}> : use_str, use_unix +<checker/main.{native,byte}> : use_str, use_unix, thread <plugins/micromega/csdpcert.{native,byte}> : use_nums, use_unix <tools/mkwinapp.{native,byte}> : use_unix -<tools/fake_ide.{native,byte}> : use_unix +<tools/fake_ide.{native,byte}> : use_unix, use_str ## tags for ide |
