aboutsummaryrefslogtreecommitdiffstats
path: root/export
Commit message (Collapse)AuthorAgeFilesLines
* Add `Declare Scope` where appropriate (#440)Xavier Leroy2022-09-192-0/+4
| | | | | | And re-enable the `undeclared-scope` warning. `Declare Scope` has been available since Coq 8.12, which is now the minimal Coq version supported.
* Simplify handling of file suffixes.Bernhard Schommer2022-05-181-6/+6
| | | | | | | Since we are sure that all files passed have a valid extension we can use the OCaml function Filename.remove_extension and don't need to pass the suffixes. Bug 33218
* Update export/README.mdXavier Leroy2021-09-221-18/+18
|
* Add support to clightgen for generating Csyntax AST as .v filesXavier Leroy2021-09-228-255/+588
| | | | | | | | | As proposed in #404. This is presented as a new option `-clight` to the existing `clightgen` tool. Revise clightgen testing to test the Csyntax output in addition to the Clight output.
* Refactor clightgenXavier Leroy2021-09-227-0/+1350
Split reusable parts of ExportClight.ml off, into ExportBase.ml and ExportCtypes.ml. Rename exportclight/ directory to export/