digitalmars.D.learn - import resolution
- RandyH (8/8) Oct 13 2007 I've been playing with D on and off for a couple of years now, but now i...
- Daniel Keep (5/21) Oct 13 2007 Have you tried using -IC:\dmd\tango\import ? I am fairly certain that
- RandyH (2/27) Oct 13 2007 Bingo. That did it. Thanks alot. I'm still getting used to imports re...
- BCS (6/15) Oct 13 2007 try
I've been playing with D on and off for a couple of years now, but now i'm taking a more serious look at it. So far things have generally gone well, but now i'm encountering an import resolution issue. In my source, I import tango.core.Thread and compile with: dmd main.d -IC:\dmd\tango\import\tango\core and get the following error: main.d(4): module Thread cannot read file 'tango\core\Thread.d' Well Thread is an interface file, not a source file. According to the docs, the compiler looks for interface files first then source files but yet doesn't seem to be able to find it. In fact i've encountered more occasions where i've specified the import dir on the command line but dmd is unable to see the file, but this one is my main stumbling block right now. Any ideas?
Oct 13 2007
RandyH wrote:I've been playing with D on and off for a couple of years now, but now i'm taking a more serious look at it. So far things have generally gone well, but now i'm encountering an import resolution issue. In my source, I import tango.core.Thread and compile with: dmd main.d -IC:\dmd\tango\import\tango\core and get the following error: main.d(4): module Thread cannot read file 'tango\core\Thread.d' Well Thread is an interface file, not a source file. According to the docs, the compiler looks for interface files first then source files but yet doesn't seem to be able to find it. In fact i've encountered more occasions where i've specified the import dir on the command line but dmd is unable to see the file, but this one is my main stumbling block right now. Any ideas?Have you tried using -IC:\dmd\tango\import ? I am fairly certain that it's going to look for "tango.core.Thread" in {list of import paths}\tango\core\Thread.{di,d} -- Daniel
Oct 13 2007
Daniel Keep Wrote:RandyH wrote:Bingo. That did it. Thanks alot. I'm still getting used to imports resolving to actual path names.I've been playing with D on and off for a couple of years now, but now i'm taking a more serious look at it. So far things have generally gone well, but now i'm encountering an import resolution issue. In my source, I import tango.core.Thread and compile with: dmd main.d -IC:\dmd\tango\import\tango\core and get the following error: main.d(4): module Thread cannot read file 'tango\core\Thread.d' Well Thread is an interface file, not a source file. According to the docs, the compiler looks for interface files first then source files but yet doesn't seem to be able to find it. In fact i've encountered more occasions where i've specified the import dir on the command line but dmd is unable to see the file, but this one is my main stumbling block right now. Any ideas?Have you tried using -IC:\dmd\tango\import ? I am fairly certain that it's going to look for "tango.core.Thread" in {list of import paths}\tango\core\Thread.{di,d} -- Daniel
Oct 13 2007
Reply to RandyH,I've been playing with D on and off for a couple of years now, but now i'm taking a more serious look at it. So far things have generally gone well, but now i'm encountering an import resolution issue. In my source, I import tango.core.Thread and compile with: dmd main.d -IC:\dmd\tango\import\tango\coretry dmd main.d -IC:\dmd IIRC you need to give the root of the module tree as the import path. I think in C it is the same. If you want to include c:\foo\bar\baz.h using #include<bar\baz.h> then you need to have c:\foo in the import dir list.
Oct 13 2007