I am having a problem getting CLISP to run on my win 95 machine. I first
tried to use the binaries from the ftp.cons.org ftp site for win32
binaries. Everytime I ran the lisp.exe I got an error 0x8
(ERROR_NOT_ENOUGH_MEMORY). I tried all the suggestions for arguments,
like -m 10MB -M lispinit.mem. Didn't make any difference.
So I downloaded the source and followed the instructions
built cccp no problem
built ffcall no problems
when running nmake on the makefile (Makefile.msvc5)
nmake stops on the line that compiles spvw.i.c ; It complains with
error messages 'int ' no members defined using this type
Suggestions anyone?
Thanks for your assistance
Wayne
< WINDOWS 95 version 4.00.950 with 32 MB ram
< VC 5 compiler version 12.00.8168
<
< I am having a problem getting CLISP to run on my win 95 machine. I first
< tried to use the binaries from the ftp.cons.org ftp site for win32
< binaries. Everytime I ran the lisp.exe I got an error 0x8
< (ERROR_NOT_ENOUGH_MEMORY). I tried all the suggestions for arguments,
< like -m 10MB -M lispinit.mem. Didn't make any difference.
Have you tried setting the SHELL environment variable in your
autoexec.bat? This may work if CLISP is running in a shell. Using the
following will ensure your shell has 8 megs of memory.
set SHELL=c:\command.com /e:8192
Ideally windows would allow for dynamic memory allocation, and stack
allocation bigger than 100k without raising an operating system
exception. I mean, why not make alloca just fail rather than terminate
the program with an uncatchable exception? I dunno, and don't I want
to either.
Got the same error.
: I am having a problem getting CLISP to run on my win 95 machine. I first
: tried to use the binaries from the ftp.cons.org ftp site for win32
: binaries. Everytime I ran the lisp.exe I got an error 0x8
: (ERROR_NOT_ENOUGH_MEMORY). I tried all the suggestions for arguments,
: like -m 10MB -M lispinit.mem. Didn't make any difference.
:
: So I downloaded the source and followed the instructions
: built cccp no problem
: built ffcall no problems
: when running nmake on the makefile (Makefile.msvc5)
: nmake stops on the line that compiles spvw.i.c ; It complains with
: error messages 'int ' no members defined using this type
:
:
: Suggestions anyone?
I downloaded the binaries for Win98 from
http://clisp.cons.org/~haible/clisp/binaries/win98/
just some days ago and everything works fine. You could check
http://clisp.cons.org/~haible/clisp/binaries/win95/
-- Xavier
: I am having a problem getting CLISP to run on my win 95 machine. I first
: tried to use the binaries from the ftp.cons.org ftp site for win32
: binaries. Everytime I ran the lisp.exe I got an error 0x8
: (ERROR_NOT_ENOUGH_MEMORY). I tried all the suggestions for arguments,
: like -m 10MB -M lispinit.mem. Didn't make any difference.
Have you executed SAVEINITMEM?
: Have you executed SAVEINITMEM?
Hmmm... I meant if you are able to execute commands from
the command line as in
lisp -q -x "(list foo bar)"
to follow the instructions of the readme file.
-- Xavier
Thanks for the suggestions though,
Wayne
F. Xavier Noria wrote:
> :
Thanks,
Wayne
The newest binaries at
ftp://clisp.cons.org/pub/lisp/clisp/snapshots/clisp-win32.zip
finally fix this problem.
Bruno http://clisp.cons.org/
Thanks,
Wayne