From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5548 invoked by alias); 20 Apr 2010 20:43:40 -0000 Received: (qmail 5533 invoked by uid 22791); 20 Apr 2010 20:43:39 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from hub3.qnx.com (HELO hub3.qnx.com) (209.226.137.86) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 20 Apr 2010 20:43:33 +0000 Received: by hub3.qnx.com (Postfix, from userid 32767) id 9D9696C51BF; Tue, 20 Apr 2010 16:43:31 -0400 (EDT) Received: from Nebula.ott.qnx.com (nebula.ott.qnx.com [10.42.3.30]) by hub3.qnx.com (Postfix) with SMTP id DA9FD6C51B9 for ; Tue, 20 Apr 2010 16:43:29 -0400 (EDT) Received: from [10.42.98.11] ([10.42.98.11]) by Nebula.ott.qnx.com with Microsoft SMTPSVC(6.0.3790.3959); Tue, 20 Apr 2010 16:43:29 -0400 Subject: Re: [patch] nto gdbserver From: Aleksandar Ristovski To: gdb-patches@sourceware.org In-Reply-To: <1271795048.26875.32.camel@qnxws7629> References: <1271783750.26875.6.camel@qnxws7629> <201004202052.47828.pedro@codesourcery.com> <1271795048.26875.32.camel@qnxws7629> Content-Type: multipart/mixed; boundary="=-OV3MhPgrq+W0t7C7rTdk" Date: Tue, 20 Apr 2010 20:43:00 -0000 Message-ID: <1271796209.26875.39.camel@qnxws7629> Mime-Version: 1.0 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-04/txt/msg00644.txt.bz2 --=-OV3MhPgrq+W0t7C7rTdk Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 354 New patch attached. I couldn't figure out the ordering of dependency lists in gdbserver/Makefile.in ... so I just tried it put the lines in as alphabetic order as possible. ChangeLog: * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists. * nto-x86-low.c: Include server.h Thank you, -- Aleksandar Ristovski QNX Software Systems --=-OV3MhPgrq+W0t7C7rTdk Content-Disposition: attachment; filename="nto-gdbserver-20100420.patch" Content-Type: text/x-patch; name="nto-gdbserver-20100420.patch"; charset="UTF-8" Content-Transfer-Encoding: 7bit Content-length: 1599 Index: gdb/gdbserver/Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v retrieving revision 1.85 diff -u -p -r1.85 Makefile.in --- gdb/gdbserver/Makefile.in 9 Apr 2010 03:40:00 -0000 1.85 +++ gdb/gdbserver/Makefile.in 20 Apr 2010 20:32:12 -0000 @@ -274,6 +274,8 @@ server_h = $(srcdir)/server.h $(regcache linux_low_h = $(srcdir)/linux-low.h +nto_low_h = $(srcdir)/nto-low.h + event-loop.o: event-loop.c $(server_h) hostio.o: hostio.c $(server_h) hostio-errno.o: hostio-errno.c $(server_h) @@ -319,6 +321,9 @@ linux-x86-low.o: linux-x86-low.c $(linux $(gdb_proc_service_h) $(i386_low_h) linux-xtensa-low.o: linux-xtensa-low.c xtensa-xtregs.c $(linux_low_h) $(server_h) +nto-low.o: nto-low.c $(server_h) $(nto_low_h) +nto-x86-low.o: nto-x86-low.c $(server_h) $(nto_low_h) $(regdef_h) $(regcache_h) + win32_low_h = $(srcdir)/win32-low.h win32-low.o: win32-low.c $(win32_low_h) $(server_h) $(regdef_h) $(regcache_h) Index: gdb/gdbserver/nto-x86-low.c =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/nto-x86-low.c,v retrieving revision 1.2 diff -u -p -r1.2 nto-x86-low.c --- gdb/gdbserver/nto-x86-low.c 1 Jan 2010 07:31:49 -0000 1.2 +++ gdb/gdbserver/nto-x86-low.c 20 Apr 2010 20:32:12 -0000 @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ - +#include "server.h" #include "nto-low.h" #include "regdef.h" #include "regcache.h" --=-OV3MhPgrq+W0t7C7rTdk--