From: Tamas P. <tk...@gm...> - 2007-04-02 14:49:51
|
Hi, I tried to compile matlisp, but make failed (see error messages below). I also included the output from configure. Sorry if it is something obvious, I am a Lisp newbie. Thanks, Tamas % ./configure checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for ranlib... ranlib checking for gcc... gcc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for executable suffix... checking for object suffix... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking whether gcc and cc understand -c and -o together... yes checking for g77... g77 checking whether we are using the GNU Fortran 77 compiler... yes checking whether g77 accepts -g... yes checking whether g77 understand -c and -o together... yes checking whether we are using the GNU Fortran 77 compiler... (cached) yes checking whether g77 accepts -g... (cached) yes checking how to get verbose linking output from g77... -v checking for Fortran 77 libraries... -L/usr/lib/gcc/i486-linux-gnu/3.4.6 -L/usr/lib/gcc/i486-linux-gnu/3.4.6/../../../../lib -L/usr/lib/gcc/i486-linux-gnu/3.4.6/../../.. -L/lib/../lib -L/usr/lib/../lib+-lfrtbegin -lg2c -lm -lgcc_s checking for dummy main to link with Fortran 77 libraries... none checking for Fortran 77 name-mangling scheme... lower case, underscore, extra+underscore configure: creating ./config.status config.status: creating matlisp.mk config.status: creating lib/lazy-loader.lisp config.status: creating src/f77-mangling.lisp % make make -f matlisp.mk make[1]: Entering directory `/home/tpapp/doc/lisp/matlisp-2_0beta-2003-10-14''(progn (load "start.lisp "))' make[1]: (progn (load "start.lisp")): Command not found make[1]: *** [all] Error 127 make[1]: Leaving directory `/home/tpapp/doc/lisp/matlisp-2_0beta-2003-10-14' make: *** [all] Error 2 |
From: Raymond T. <ray...@er...> - 2007-04-02 18:40:41
|
>>>>> "Tamas" == Tamas Papp <tk...@gm...> writes: Tamas> 1. (*) text/plain ( ) text/html Tamas> Hi, Tamas> I tried to compile matlisp, but make failed (see error messages below). I Tamas> also Tamas> included the output from configure. Sorry if it is something obvious, Tamas> I am a Lisp newbie. What Lisp are you using? In addition, I suggest you use the CVS version. The version you have is a bit old (although there probably isn't much differen). Ray |
From: Tamas P. <tk...@gm...> - 2007-04-02 19:28:50
|
Raymond, Thanks, the CVS version worked. I am using CMUCL, version 19d-20061116-1. Is there some kind of overview to get me started? I found the examples in the README, but nothing else. I can of course look at the help of all commands, but I wonder if there is some other help document/manual, a but more structured. Thanks, Tamas On 4/2/07, Raymond Toy <ray...@er...> wrote: > > >>>>> "Tamas" == Tamas Papp <tk...@gm...> writes: > > Tamas> 1. (*) text/plain ( ) text/html > Tamas> Hi, > > Tamas> I tried to compile matlisp, but make failed (see error messages > below). I > Tamas> also > Tamas> included the output from configure. Sorry if it is something > obvious, > Tamas> I am a Lisp newbie. > > What Lisp are you using? In addition, I suggest you use the CVS > version. The version you have is a bit old (although there probably > isn't much differen). > > Ray > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Matlisp-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matlisp-users > |
From: Raymond T. <ray...@er...> - 2007-04-02 20:57:34
|
>>>>> "Tamas" == Tamas Papp <tk...@gm...> writes: Tamas> 1. (*) text/plain ( ) text/html Tamas> Raymond, Tamas> Thanks, the CVS version worked. I am using CMUCL, version 19d-20061116-1. Ok, glad that worked. Tamas> Is there some kind of overview to get me started? I found the examples in Tamas> the README, but nothing else. I can of course look at the help of all Tamas> commands, but I wonder if there is some other help document/manual, a but Tamas> more structured. Unfortunately not. About the only documentation there is is at matlisp.sourceforge.net, and the (help) command. Most of the matrix commands use exactly the same name as LAPACK/BLAS, so that makes it easier to figure out what they do. I guess the only thing not really documented is that you can do something like: (defvar *m* [1 2 3; 4 5 6]) to create a matrix 1 2 3 4 5 6 Hope this helps a little, Ray |