| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-05-24 | [ide] Move common protocol library to its own folder/object. | Emilio Jesus Gallego Arias | |
| The `ide` folder contains two different binaries, the language server `coqidetop` and `coqide` itself. Even if these binaries are in the same folder, the only thing they have in common is that they link to the protocol files. In the OCaml world, having "doubly" linked files in the same project is considered a bit of an ugly practice, and some build tools such as Dune disallow it.q Thus, to clean up the build, we move the common protocol files to its own library `ideprotocol`. This helps towards Dune integration and towards having an IDE standalone target, such as the one that was implemented here: https://github.com/ejgallego/coqide-exp | |||
| 2018-05-24 | Merge PR #7581: Mention warning and error message docs in PR template | Théo Zimmermann | |
| 2018-05-24 | Merge PR #7328: Fix #7327: coqchk subtyping of polymorphic constants | Pierre-Marie Pédrot | |
| 2018-05-24 | Merge PR #7317: Fix #6798: coqchk ignores ugraph when comparing constant ↵ | Pierre-Marie Pédrot | |
| instances | |||
| 2018-05-24 | Merge PR #7575: [build] Add -cclib -lcoqrun options to build of kernel.cmxa. | Enrico Tassi | |
| 2018-05-24 | Merge PR #7582: [ci] Build fiat-crypto targets in sequence | Emilio Jesus Gallego Arias | |
| 2018-05-24 | Merge PR #6515: [api] Move `Vernacexpr` to parsing. | Pierre-Marie Pédrot | |
| 2018-05-23 | Remove dashes from PR template | Jason Gross | |
| As per PR comment suggestion | |||
| 2018-05-23 | [api] Move `Vernacexpr` to parsing. | Emilio Jesus Gallego Arias | |
| There were a few spurious dependencies on the `Vernac` AST in the pretyper, we remove them and move `Vernacexpr` and `Extend` to parsing, where they do belong more. | |||
| 2018-05-23 | [api] Move `opacity_flag` to `Proof_global`. | Emilio Jesus Gallego Arias | |
| `Proof_global` is the main consumer of the flag, which doesn't seem to belong to the AST as plugins show. This will allow the vernac AST to be placed in `vernac` indeed. | |||
| 2018-05-23 | Merge PR #7414: Add .byte targets for every bestocaml target | Enrico Tassi | |
| 2018-05-23 | Merge PR #7567: Clean-up dead file in test-suite. | Enrico Tassi | |
| 2018-05-22 | [ci] Build fiat-crypto targets in sequence | Jason Gross | |
| This should hopefully alleviate memory problems on gitlab, by first building the `lite` targets, and then building the remaining not-that-big targets. | |||
| 2018-05-22 | Merge PR #7565: Document the new nested-proof error message. | Emilio Jesus Gallego Arias | |
| 2018-05-22 | Merge PR #7577: Fixing debugger after #6859 (loading dynlink.cma before ↵ | Emilio Jesus Gallego Arias | |
| lib.cma). | |||
| 2018-05-22 | Mention warning and error message docs in PR template | Jason Gross | |
| This closes #7580 c.f. https://github.com/coq/coq/pull/7559#issuecomment-390749207 and https://github.com/coq/coq/pull/7559#issuecomment-390872924. This should be reverted if and when we move to autogenerated docs for warnings and errors, as suggested in #7373. | |||
| 2018-05-22 | Fixing debugger after #6859 (loading dynlink.cma before lib.cma). | Hugo Herbelin | |
| 2018-05-22 | Merge PR #7384: Split Universes | Pierre-Marie Pédrot | |
| 2018-05-22 | Merge PR #7324: Infrastructure for ocamldebug on the checker | Hugo Herbelin | |
| 2018-05-22 | Merge PR #7526: [circle] Use Docker image from Gitlab registry. | Gaëtan Gilbert | |
| 2018-05-22 | Merge PR #7568: [ci] [gitlab] Fix printenv sorting for variables that span ↵ | Gaëtan Gilbert | |
| multiple lines | |||
| 2018-05-22 | [build] Add -cclib -lcoqrun options to build of kernel.cmxa. | Emilio Jesus Gallego Arias | |
| It seems that it is standard practice in the OCaml world to set the `-cclib` flags at library creation time, at least in native libraries. Indeed, this seems to make linking easier as seen for example in #7563. | |||
| 2018-05-22 | Merge PR #6859: [stm] Make toplevels standalone executables. | Théo Zimmermann | |
| 2018-05-21 | [ci] [gitlab] Fix printenv sorting for variables that span multiple lines. | Emilio Jesus Gallego Arias | |
| 2018-05-21 | Document the new nested-proof error message. | Théo Zimmermann | |
| 2018-05-21 | [ide] Remove special option `-ideslave` | Emilio Jesus Gallego Arias | |
| This has no effect anymore, verbose printing is controlled now by the regular, common `quiet` flag. | |||
| 2018-05-21 | [stm] Make toplevels standalone executables. | Emilio Jesus Gallego Arias | |
| We turn coqtop "plugins" into standalone executables, which will be installed in `COQBIN` and located using the standard `PATH` mechanism. Using dynamic linking for `coqtop` customization didn't make a lot of sense, given that only one of such "plugins" could be loaded at a time. This cleans up some code and solves two problems: - `coqtop` needing to locate plugins, - dependency issues as plugins in `stm` depended on files in `toplevel`. In order to implement this, we do some minor cleanup of the toplevel API, making it functional, and implement uniform build rules. In particular: - `stm` and `toplevel` have become library-only directories, - a new directory, `topbin`, contains the new executables, - 4 new binaries have been introduced, for coqide and the stm. - we provide a common and cleaned up way to locate toplevels. | |||
| 2018-05-21 | [ci] Add Dune to the base system. | Emilio Jesus Gallego Arias | |
| It is needed by Elpi and pidetop, and it is anyways needed for most OCaml packages, including some Coq tools in the future. The future base Docker image will include it by default. | |||
| 2018-05-20 | Merge PR #7557: Add test cases from #7554 | Théo Zimmermann | |
| 2018-05-20 | Add test cases from #7554 | Tej Chajed | |
| Failed in v8.7.2 but were fixed by v8.8.0. | |||
| 2018-05-19 | Merge PR #7527: [windows] Don't build menhir and int anymore in the ↵ | Michael Soegtrop | |
| packaging scripts. | |||
| 2018-05-18 | Merge PR #7550: [CI] Fix the script used by math-classes. | Emilio Jesus Gallego Arias | |
| 2018-05-18 | Merge PR #6965: [api] Move universe syntax to `Glob_term` | Pierre-Marie Pédrot | |
| 2018-05-18 | Clean-up dead file in test-suite. | Théo Zimmermann | |
| 2018-05-18 | [CI] Fix the script used by math-classes. | Pierre-Marie Pédrot | |
| We call configure to properly regenerate the Makefile and its dependencies. | |||
| 2018-05-17 | Split off Universes functions for minimization. | Gaëtan Gilbert | |
| This finishes the splitting of Universes. | |||
| 2018-05-17 | Make Universes.refresh_constraints internal to UState | Gaëtan Gilbert | |
| 2018-05-17 | Split off Universes functions about substitutions and constraints | Gaëtan Gilbert | |
| 2018-05-17 | Remove unused argument to solve_constraints_system | Gaëtan Gilbert | |
| 2018-05-17 | Move solve_constraint_system near its only use site (comInductive) | Gaëtan Gilbert | |
| 2018-05-17 | Split off Universes functions dealing with generating new universes. | Gaëtan Gilbert | |
| 2018-05-17 | Split off Universes functions dealing with names. | Gaëtan Gilbert | |
| This API is a bit strange, I expect it will change at some point. | |||
| 2018-05-17 | Stop using Universes.subst(_opt)_univs_constr | Gaëtan Gilbert | |
| Should it be removed? The underlying `universe_subst -> constr -> constr` seems like it could be useful for plugins but where would the substitution be from? | |||
| 2018-05-17 | Make set minimization option internal to Universes | Gaëtan Gilbert | |
| 2018-05-17 | [circle] Use Docker image from Gitlab registry. | Emilio Jesus Gallego Arias | |
| 2018-05-17 | Merge PR #7451: Introduce an option to allow nested lemma, and turn it off ↵ | Emilio Jesus Gallego Arias | |
| by default. | |||
| 2018-05-17 | Merge PR #7359: Reduce usage of evar_map references | Pierre-Marie Pédrot | |
| 2018-05-17 | Merge PR #7449: [vernac] taint two out-of-api `to_constr` use in ↵ | Pierre-Marie Pédrot | |
| `comDefinition`. | |||
| 2018-05-17 | Merge PR #6870: [ide] Don't set `quiet` on start. | Enrico Tassi | |
| 2018-05-17 | Merge PR #7525: [ci] Try to build more of fiat-crypto. | Gaëtan Gilbert | |
