From: Wayne Rogers
Subject: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <376D4255.3E23A09E@erols.com>
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.

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

From: Steve Gonedes
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <m2vhci7hkp.fsf@KludgeUnix.com>
Wayne Rogers <······@erols.com> writes:

< 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.
From: Wayne Rogers
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <376D507C.23F67335@erols.com>
Actually, I had tried that. I went Start,Run and entered "command /e:8192"
Then when the shell came up I tried "lisp -m 10MB -M lispinit.mem"

Got the same error.



Steve Gonedes wrote:

> Wayne Rogers <······@erols.com> writes:
>
> < 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.
From: F. Xavier Noria
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <376fce78.205452@news.iddeo.es>
On Sun, 20 Jun 1999 15:34:45 -0400, Wayne Rogers <······@erols.com> wrote:

: 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
From: Wayne Rogers
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <3771648B.9785EFD0@erols.com>
I tried the 1999-01-08 binaries, I believe. I was able to run the more recent
binaries at work on my NT box without any problems. At home for the WIN95, I
went all the way back to the 1997-09-17 binaries and it runs like a champ on
95. I just thought if anybody was familiar enough with the C source I might be
able to make the necessary fixes in my copy of the latest source code.

Thanks for the suggestions though,
Wayne



F. Xavier Noria wrote:

> On Sun, 20 Jun 1999 15:34:45 -0400, Wayne Rogers <······@erols.com> wrote:
>
> : 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
From: F. Xavier Noria
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <376fd242.1175572@news.iddeo.es>
On Sun, 20 Jun 1999 15:34:45 -0400, Wayne Rogers <······@erols.com> wrote:

: 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?
From: F. Xavier Noria
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <37700efd.14063046@news.iddeo.es>
On Tue, 22 Jun 1999 18:14:49 GMT, ···@retemail.es (F. Xavier Noria) wrote:

:  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
From: Wayne Rogers
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <37716568.4C113BB@erols.com>
Actually not a problem now as you might note in my reply to your other
message. I am using the 1997-09-17 binaries without any problems. I updated
config.lsp and compiled it, saveinitimem, all of that.

Thanks,
Wayne



F. Xavier Noria wrote:

> On Tue, 22 Jun 1999 18:14:49 GMT, ···@retemail.es (F. Xavier Noria) wrote:
>
> :  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
From: Bruno Haible
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <7kvou9$dl7$1@news.u-bordeaux.fr>
Wayne Rogers <······@erols.com> wrote:
> 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).

The newest binaries at
        ftp://clisp.cons.org/pub/lisp/clisp/snapshots/clisp-win32.zip
finally fix this problem.

               Bruno                                http://clisp.cons.org/
From: Wayne Rogers
Subject: Re: CLISP 1999-01-08 on Windows 95
Date: 
Message-ID: <37755A2C.7966672D@erols.com>
I've been using this one for two days, it looks fine.

Thanks,
Wayne

Bruno Haible wrote:

> Wayne Rogers <······@erols.com> wrote:
> > 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).
>
> The newest binaries at
>         ftp://clisp.cons.org/pub/lisp/clisp/snapshots/clisp-win32.zip
> finally fix this problem.
>
>                Bruno                                http://clisp.cons.org/