This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
(lang dune 3.5)
|
||||
(using coq 0.6)
|
||||
|
|
@ -0,0 +1 @@
|
|||
let foo = "bar"
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
In Coq >= 0.6, depending on a private library as a plugin is an error.
|
||||
$ cat > dune << EOF
|
||||
> (library
|
||||
> (name foo))
|
||||
>
|
||||
> (coq.theory
|
||||
> (name bar)
|
||||
> (plugins foo))
|
||||
> EOF
|
||||
|
||||
$ dune build
|
||||
Warning: Coq Language Versions lower than 0.8 have been deprecated in Dune
|
||||
3.8 and will be removed in an upcoming Dune version.
|
||||
Hint: To disable this warning, add the following to your dune-project file:
|
||||
(warnings (deprecated_coq_lang_lt_08 disabled))
|
||||
File "dune", line 6, characters 10-13:
|
||||
6 | (plugins foo))
|
||||
^^^
|
||||
Error: Using private library foo as a Coq plugin is not supported
|
||||
[1]
|
||||
Loading…
Add table
Add a link
Reference in a new issue