Skip to Content.
Sympa Menu

coq-club - [Coq-Club] issue with -R option

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] issue with -R option


Chronological Thread 
  • From: Vladimir Voevodsky <vladimir AT ias.edu>
  • To: Coq Club <coq-club AT inria.fr>
  • Cc: Vladimir Voevodsky <vladimir AT ias.edu>
  • Subject: [Coq-Club] issue with -R option
  • Date: Wed, 1 Jan 2014 18:14:23 -0500

Hello,

here is another example of Coq behavior which I do not understand.

I have a file a.v in subdirectory Test/ and a file b.v in the main directory
which starts with the line

Require Import Test.a.

I try two things:

1. I compile a.v from the main directory with the command:

coqc Test/a

Then when I try to go over the first line of b.v I get the error message
saying that the file Test/a.vo contains library a and not library Test.a


2. I compile a.v from the main directory with the command:

coqc -R . Test Test/a

Then when I try to go over the first line of b.v I get the error message
saying that the file Test/a.vo contains library Test.Test.a and not library
Test.a


This also feels like a bug.

Vladimir.





Archive powered by MHonArc 2.6.18.

Top of Page