From 8ed54b31b39a8a3ed6a540c9c4019c19932adfdb Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Wed, 1 Sep 2010 18:57:12 +0000 Subject: gdbserver support for powerpc-lynxos (4.x) This patch adds support for powerpc-lynxos. gdbserver/ChangeLog: * gdbserver/lynx-low.c, gdbserver/lynx-low.h, gdbserver/lynx-ppc-low.c: New files. * Makefile.in (lynx_low_h): New variable. (lynx-low.o, lynx-ppc-low.o): New rules. * configure.ac: On LynxOS, link with -lnetinet. * configure.srv: Add handling of powerpc-*-lynxos* targets. * configure: regenerate. --- gdb/gdbserver/configure.ac | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/gdbserver/configure.ac') diff --git a/gdb/gdbserver/configure.ac b/gdb/gdbserver/configure.ac index c61ab54..85b1a7b 100644 --- a/gdb/gdbserver/configure.ac +++ b/gdb/gdbserver/configure.ac @@ -212,6 +212,8 @@ elif test "${srv_mingw}" = "yes"; then LIBS="$LIBS -lws2_32" elif test "${srv_qnx}" = "yes"; then LIBS="$LIBS -lsocket" +elif test "${srv_lynxos}" = "yes"; then + LIBS="$LIBS -lnetinet" fi if test "${srv_mingw}" = "yes"; then -- cgit v1.1