Re: Installing Modules

2012-04-13 Thread Jesse Phillips
On Friday, 13 April 2012 at 23:06:38 UTC, TJB wrote: OK. I now can compile a simple program that imports a module from the SciD library. How do I do something a little more interesting like initialize a vector or matrix and do some linear algebra with it? Thanks so much for your help. Thi

Re: Installing Modules

2012-04-13 Thread TJB
On Friday, 30 March 2012 at 00:20:16 UTC, TJB wrote: On Thursday, 29 March 2012 at 15:15:35 UTC, Jesse Phillips wrote: On Thursday, 29 March 2012 at 08:55:41 UTC, Johannes Pfau wrote: The command Jesse posted is missing a "-L-lscid" and you'll probably also need "-L-L/usr/local/lib" So the com

Re: Installing Modules

2012-03-29 Thread TJB
On Thursday, 29 March 2012 at 15:15:35 UTC, Jesse Phillips wrote: On Thursday, 29 March 2012 at 08:55:41 UTC, Johannes Pfau wrote: The command Jesse posted is missing a "-L-lscid" and you'll probably also need "-L-L/usr/local/lib" So the complete command should be: Ah, you are right, though I

Re: Installing Modules

2012-03-29 Thread Jesse Phillips
On Thursday, 29 March 2012 at 08:55:41 UTC, Johannes Pfau wrote: The command Jesse posted is missing a "-L-lscid" and you'll probably also need "-L-L/usr/local/lib" So the complete command should be: Ah, you are right, though I selected /usr/local/lib as it is already part of LD's search path

Re: Installing Modules

2012-03-29 Thread Johannes Pfau
Am Thu, 29 Mar 2012 06:15:07 +0200 schrieb "TJB" : > > Thank you for your patience with me. I now have the following > simple test code: > > import scid.matrix; > > void main() {} > > Then I run and get the following error: > > $ dmd -I/usr/local/src main.d The command Jesse posted is miss

Re: Installing Modules

2012-03-28 Thread TJB
On Thursday, 29 March 2012 at 04:01:49 UTC, Jesse Phillips wrote: On Thursday, 29 March 2012 at 03:02:27 UTC, TJB wrote: Okay. I tried this. I think I am close. I followed the instructions that you gave (thanks btw)! But, I get this error message: $ dmd -I/usr/local/src main.d main.d(1): Er

Re: Installing Modules

2012-03-28 Thread Jesse Phillips
On Thursday, 29 March 2012 at 03:02:27 UTC, TJB wrote: Okay. I tried this. I think I am close. I followed the instructions that you gave (thanks btw)! But, I get this error message: $ dmd -I/usr/local/src main.d main.d(1): Error: module scid is in file 'scid.d' which cannot be read import

Re: Installing Modules

2012-03-28 Thread TJB
On Thursday, 29 March 2012 at 02:07:24 UTC, Jesse Phillips wrote: On Wednesday, 28 March 2012 at 23:55:38 UTC, TJB wrote: All, I'm very new to D. I am wanting to install the SciD module (David Simcha's fork), but I don't know how to go about it. Can you guide me? Where does the code go?

Re: Installing Modules

2012-03-28 Thread Jesse Phillips
On Wednesday, 28 March 2012 at 23:55:38 UTC, TJB wrote: All, I'm very new to D. I am wanting to install the SciD module (David Simcha's fork), but I don't know how to go about it. Can you guide me? Where does the code go? How do I import it? Thanks, TJB There are many ways to go about