Windows build of Maxima 5.0.14



Terrence Brannon wrote:
> Terrence Brannon wrote:
>   
>> Hello, I am developing a library of array processing code in Common 
>> Lisp inspired by the J programming language. I am using Windows XP for 
>> development.
>>     
Have you heard of matlisp?   There's also at least one other matrix 
package bug I've forgotten its name.

(Full disclosure:  I wrote parts of matlisp.)

>  >(funcall (intern (symbol-name :operate-on-system) :mk) "maxima"  :load 
> :verbose t))
>   
You probably want to use :compile instead of :load.  Then all the files 
will be compiled (and loaded).
> ;    - Loading module "info"
> ;      - Binary file binary-gcl/nregex.o is old or does not exist.
> ;        Compile (and load) source file src/nregex.lisp instead?
>   
Not sure why you get this, but there is a bug in gcl in that it doesn't 
know how to create directories.  You might want to create the binary-gcl 
directory by hand first.

Ray