This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


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

Problems building GDB and Insight-GDB under latest net release


Ok guys,

    As some of you may know I have been building the GNU toolset for the ARM
processor using b20.1 each week after the regular snapshot release on
sourceware. Last week I updated to the latest net release of cygwin. I have
been trying to build both GDB and Insight-GDB and have got the following
build error

>gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/c/cygnus/GNU-Source-Code/gdb/libiberty
/../include  -W -Wall ->Wtraditional
/c/cygnus/GNU-Source-Code/gdb/libiberty/strsignal.c
>/c/cygnus/GNU-Source-Code/gdb/libiberty/strsignal.c:424: conflicting types
for `strsignal'
>/usr/lib/gcc-lib/i686-pc-cygwin/2.95.2/../../../../i686-pc-cygwin/include/s
tring.h:70: previous declaration of `strsignal'
>/c/cygnus/GNU-Source-Code/gdb/libiberty/strsignal.c: In function `psignal':
>/c/cygnus/GNU-Source-Code/gdb/libiberty/strsignal.c:597: warning:
comparison between signed and unsigned
>make[2]: *** [strsignal.o] Error 1
>make[2]: Leaving directory `/build/gdb/libiberty'

This occurs in both Insight and GDB. I have looked at the code in question
and found that the definitions in string.h differ to the definitions in
strsignal.c. In strsignal.c the function strsignal is defined as a const
char * but the string.h shows it as a char *. Modifying string.h to const
char * now allows the stuff to compile. My problem is, should the mods be
done in string.h or should strstring.c be changed, and thus who needs to
know of the problem, here or in the GDB lists ?

The code changes for string.h are shown below

Lines 68-73
>char *_EXFUN(strupr,(char *));
>#ifdef __CYGWIN32__
>const char    *_EXFUN(strsignal, (int __signo));
>int     _EXFUN(strtosigno, (const char *__name));
>#endif
>void  _EXFUN(swab,(const void *, void *, ssize_t));

Andy Hare


--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com


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