public inbox for gdbadmin@sourceware.org
help / color / mirror / Atom feed
* Bugreport for binutils-gdb on cygwin
@ 2021-10-16 16:12 Claudius Schnörr
  2021-10-18 19:01 ` Joel Brobecker
  0 siblings, 1 reply; 2+ messages in thread
From: Claudius Schnörr @ 2021-10-16 16:12 UTC (permalink / raw)
  To: gdbadmin; +Cc: brobecker

Hello,

I write to you since I don't know where to submit a bugreport.
After trying to compile the insight gdb-frontent on cygwin 
(git://sourceware.org/git/insight.git) the maintainer classified the 
following issue to directly be addressed to binutils-gdb package:

  * platform:
      o cygwin 64bit on Win-10
      o gcc (GCC) 11.2.0, g++ (GCC) 11.2.0

  * commands submitted:
      o git clone --recursive git://sourceware.org/git/binutils-gdb.git
      o autoconf
      o ./configure
      o make

  * Error message:
      o event-top.c: In function ‘void handle_fatal_signal(int)’:
        event-top.c:893:18: error: ‘strsignal’ was not declared in this
        scope; did you mean ‘strsigno’?
           893 |       sig_write (strsignal (sig));

  * comment:
      o strsignal() is declared in string.h. However, including it
        doesn't work.
        Then I inspected string.h on cygwin64 in /usr/include and found
        this:
      o #ifndef DEFS_H    /* Kludge to work around problem compiling in
        gdb */
        char    *strsignal (int __signo);
        #endif
      o suggestion: undefining DEFS_H might be risky -> to be added at
        line 55:
          + #ifndef DEFS_H
            #    include <string.h>             /* for strsignal on
            cygwin */
            #else
            char *strsignal (int __signo);      /* see
            /usr/include/string.h on cygwin */
            #endif
      o then it compiles, however a library is missed now:
          + x86_64-pc-cygwin/bin/ld:
            event-top.o:.../insight/bundle/gdb/event-top.c:899:
            undefined reference to `strsignal(int)'
            collect2: error: ld returned 1 exit status

Hope this helps somehow.

Kind regards,

Claudius




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-10-18 19:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-16 16:12 Bugreport for binutils-gdb on cygwin Claudius Schnörr
2021-10-18 19:01 ` Joel Brobecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).