This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Succsessfull GCC 3.1 with Cygwin and GNAT


Hello!

I used the lastest version of cygwin to build gcc3.1.I expirenced some
problems wich mainly where caused by myself. I renamed /gnat/bin/gcc to
/gnat/bin/gnatgcc and had gnat/bin/ in my path.

../gcc-3.1/configure --enable-threads=win32

During the configure run I checked, that a ada compiler was found and
objdir/gcc/ada was created.

After the make run with :

make CFLAGS='-O' LIBCFLAGS='-g -O2'
LIBCXXFLAGS='-g -O2 -fno-implicit-templates' bootstrap

I tried to make the ada-libs and tools with

cd gcc
make gnatlib_and_tools

This make run always ended up in an error in sysdep.c.
ICANON was not defined.

I tried to change in sysdep.c.


#if defined (linux) || defined (sun) || defined (sgi) || defined (__EMX__) \
  || (defined (__osf__) && ! defined (__alpha_vxworks)) || defined (WINNT) \
  || defined (__MACHTEN__)
#include <termios.h>

into

#if defined (linux) || defined (sun) || defined (sgi) || defined (__EMX__) \
  || (defined (__osf__) && ! defined (__alpha_vxworks)) || defined (WINNT) \
  || defined (__MACHTEN__) || defined (__CYGWIN32__)
#include <termios.h>

With this new sysdep.c I could succsessfull build and install the ada libs
and tools.

Btw.

$ ../gcc-3.1/config.guess
i686-pc-cygwin

$ gcc -v
Reading specs from /usr/local/lib/gcc-lib/i686-pc-cygwin/3.1/specs
Configured with: ../gcc-3.1/configure --enable-threads=win32 :
(reconfigured) ..
/gcc-3.1/configure --enable-threads=win32
Thread model: win32
gcc version 3.1

$ uname -a
CYGWIN_NT-5.0 SLARTIBARTFASS 1.3.10(0.51/3/2) 2002-02-25 11:14 i686 unknown


André


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]