Skip to content

Commit

Permalink
Merge pull request #224 from ejgallego/v8.11+coqpath
Browse files Browse the repository at this point in the history
[serapi] Fix #221 "Support COQPATH"
  • Loading branch information
ejgallego authored Aug 26, 2020
2 parents 750dd3e + 5922346 commit 4723859
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* [general] SerAPI is now tested with OCaml 4.08 and 4.09 (#195 , @ejgallego)
* [sertop ] Forward port sername from 0.7.1 (@ejgallego)
* [serlib ] Fix #212 "Segfault on universes" (@ejgallego, reported by @cpitclaudel , #214)
* [serapi ] Fix #221 "Support COQPATH" (@ejgallego, reported by @cpitclaudel , #224)
* [sertop ] Fix #222 "Support --indices-matter" (@ejgallego, reported by @cpitclaudel , #223)

## Version 0.11.0:
Expand Down
4 changes: 3 additions & 1 deletion serapi/serapi_paths.ml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ let coq_loadpath_default ~implicit ~coq_path =
[mk_lp ~ml:AddRecML ~root:coq_root ~implicit ~dir:"plugins";
mk_lp ~ml:AddNoML ~root:coq_root ~implicit ~dir:"theories";
mk_lp ~ml:AddRecML ~root:default_root ~implicit:false ~dir:"user-contrib";
]
] @
List.map (fun dir -> mk_lp ~ml:AddRecML ~root:default_root ~implicit:false ~dir)
Envars.coqpath

(******************************************************************************)
(* Generate a module name given a file *)
Expand Down

0 comments on commit 4723859

Please sign in to comment.