[gvd-users] Running GVD on Windows98

Les Newell gvd-users@lists.act-europe.fr
Wed, 6 Jun 2001 17:20:37 +0100


Well, I was doing something really stupid (what a suprise). I had GtkAda and
gnat as the first items on my cygwin path. Unfortunately gnat has a copy of
SH that is incompatible with the Cygwin environment. After renaming gnat's
version of sh.exe everything went to plan.

Thanks Avy for pointing this out to me.

I only had one other minor problem: In gnat\makefile there appears to be a
line missing a backslash:
ALL_CFLAGS=$(CFLAGS)
  -DSYSTEM_INCLUDE='"system/windows.h"'

I had to edit this to
ALL_CFLAGS=$(CFLAGS) \
  -DSYSTEM_INCLUDE='"system/windows.h"'

Les