Mail Archives: djgpp/2000/10/18/07:46:01
Josh Haglund <lhaglund AT wiktel DOT com> wrote:
> I'm tring to compile my chess program with djgpp, of course.
> and this is what I have so far... I can compile some other things, but it's
> been awhile... somethings just slip my mine...
> I have a .bat file..
> DJGPP=c:\djgpp\djgpp.env
> PATH=c:\djgpp\bin
If *that* is actually the content of that batch file, that's the
reason for your problem. I just wonder how you could not have noticed
the error message you should have got when executing that batch file.
Make that
set DJGPP=c:\djgpp\djgpp.env
set PATH=c:\djgpp\bin;%PATH%
and be sure this really got executed, by typing 'set' to check the
values of variables, before you try to call 'make'.
> c.o:
> $(CC) $(CFLAGS) $(opts) -c $*.c
I take it that this probably is not what's really in your makefile,
but rather your mailer removing leading '.'s from your message text.
> Fatal: Error in DJGPP instalation
> Environment variable DJGPP in not defined
You copied that manually, rather than copy-pasting, right? Otherwise,
it'd be hard to understand where that typo comes from ('is' not
defined it should read).
--
Hans-Bernhard Broeker (broeker AT physik DOT rwth-aachen DOT de)
Even if all the snow were burnt, ashes would remain.
- Raw text -