This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
RE: [RFC] Mingw Windows 64-bit gdbserver
- From: "Pierre Muller" <pierre dot muller at ics-cnrs dot unistra dot fr>
- To: "'Pedro Alves'" <pedro at codesourcery dot com>
- Cc: <gdb-patches at sourceware dot org>
- Date: Fri, 16 Apr 2010 18:38:28 +0200
- Subject: RE: [RFC] Mingw Windows 64-bit gdbserver
- References: <000d01cadd79$efa9e2b0$cefda810$@muller@ics-cnrs.unistra.fr> <201004161659.37990.pedro@codesourcery.com> <001901cadd80$b476aff0$1d640fd0$@muller@ics-cnrs.unistra.fr> <201004161727.26943.pedro@codesourcery.com>
GDb sources is still a mix:
> Typo: I meant winsock2.h instead of winsock.h.
$ grep "include.*<winso" *.h gdbserver/*.h *.c gdbserver/*.c
gdb_select.h:#include <winsock2.h>
serial.h:#include <winsock2.h>
m32r-rom.c:#include <winsock.h>
remote-m32r-sdi.c:#include <winsock.h>
ser-base.c:#include <winsock2.h>
ser-tcp.c:#include <winsock2.h>
gdbserver/gdbreplay.c:#include <winsock.h>
gdbserver/remote-utils.c:#include <winsock.h>
should all be moved to winsock2.h?
and -lws2_32 as library?
By the way, do the m32r sources still link correctly currently?
Pierre