diff options
author | Pierre Courtieu <Pierre.Courtieu@cnam.fr> | 2015-01-15 16:34:01 +0100 |
---|---|---|
committer | Pierre Courtieu <Pierre.Courtieu@cnam.fr> | 2015-01-15 16:34:01 +0100 |
commit | 62ce6ac2a237917d9f75f78439898787a27829ad (patch) | |
tree | 5c4ef95a7cf2b7c4c7ff91e818485e021aa9db7e | |
parent | 6eab6444ddf9d7de820602ceff8b285e28619cce (diff) |
Added stuff about -I -Q -R in COMPATIBILTY.
-rw-r--r-- | COMPATIBILITY | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/COMPATIBILITY b/COMPATIBILITY index 2ce29346c..0d648967f 100644 --- a/COMPATIBILITY +++ b/COMPATIBILITY @@ -3,7 +3,36 @@ Potential sources of incompatibilities between Coq V8.4 and V8.5 (see also file CHANGES) -Universe Polymorphism. +- options for *coq* compilation (see below for ocaml). + +** [-I foo] is now deprecated and will not add directory foo to the + coq load path (only for ocaml, see below). Just replace [-I foo] by + [-Q foo ""] in your project file and re-generate makefile. Or + perform the same operation directly in your makefile if you edit it + by hand. + +** Option -R Foo bar is the same in v8.5 than in v8.4 concerning coq + load path. + +** Option [-I foo -as bar] is unchanged but discouraged unless you + compile ocaml code. Use -Q foo bar instead. + + for more details: file CHANGES or section "Customization at launch + time" of the reference manual. + +- Command line options for ocaml Compilation of ocaml code (plugins) + +** [-I foo] is *not* deprecated to add foo to the ocaml load path. + +** [-I foo -as bar] adds foo to the ocaml load path *and* adds foo to + the coq load path with logical name bar (shortcut for -I foo -Q foo + bar). + + for more details: file CHANGES or section "Customization at launch + time" of the reference manual. + + +- Universe Polymorphism. - Refinement, unification and tactics are now aware of universes, resulting in more localized errors. Universe inconsistencies |