From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23768 invoked by alias); 16 Mar 2007 02:07:51 -0000 Received: (qmail 23707 invoked by uid 22791); 16 Mar 2007 02:07:50 -0000 X-Spam-Check-By: sourceware.org Received: from elrond.portugalmail.pt (HELO elrond.portugalmail.pt) (195.245.179.181) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 16 Mar 2007 02:07:45 +0000 Received: from localhost (localhost [127.0.0.1]) by elrond.portugalmail.pt (Postfix) with ESMTP id 708263C3C9 for ; Fri, 16 Mar 2007 02:03:28 +0000 (WET) Received: from elrond.portugalmail.pt ([127.0.0.1]) by localhost (elrond.portugalmail.pt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kMbYybe2mxFz for ; Fri, 16 Mar 2007 02:03:27 +0000 (WET) Received: from [127.0.0.1] (62.169.93.152.rev.optimus.pt [62.169.93.152]) (Authenticated sender: pedro_alves@portugalmail.pt) by elrond.portugalmail.pt (Postfix) with ESMTP id 9D3E73BA08 for ; Fri, 16 Mar 2007 02:03:25 +0000 (WET) Message-ID: <45F9FBE7.6070705@portugalmail.pt> Date: Fri, 16 Mar 2007 02:07:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.8.0.10) Gecko/20070221 Thunderbird/1.5.0.10 Mnenhy/0.7.4.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: [New WinCE support] [patch 1/4] : mv win32-i386-low.c win32-low.c References: <20070315235008.243411000@portugalmail.pt> In-Reply-To: <20070315235008.243411000@portugalmail.pt> Content-Type: multipart/mixed; boundary="------------030903050301000005060603" X-Antivirus: avast! (VPS 000724-0, 15-03-2007), Outbound message X-Antivirus-Status: Clean X-IsSubscribed: yes 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: 2007-03/txt/msg00147.txt.bz2 This is a multi-part message in MIME format. --------------030903050301000005060603 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 288 This patch renames gdbserver/win32-i386-low.c to gdbserver/win32-low.c. Well, actually, it is mostly a ChangeLog entry, as it is useless to post a patch for the file move. Patch 4 will then move the i386 specifics into a new win32-i386-low.c, and add a win32-arm-low.c with ARM stuff. --------------030903050301000005060603 Content-Type: text/plain; name="win32-i386-low_rename.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="win32-i386-low_rename.diff" Content-length: 1692 gdbserver/ChangeLog * win32-i386-low.c: Rename to ... * win32-low.c: ... this. * configure.srv: Replace win32-i386-low.o with win32-low.o. * Makefile.in: Likewise. --- gdb/gdbserver/Makefile.in | 2 +- gdb/gdbserver/configure.srv | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) Index: src/gdb/gdbserver/configure.srv =================================================================== --- src.orig/gdb/gdbserver/configure.srv 2007-03-15 00:27:36.000000000 +0000 +++ src/gdb/gdbserver/configure.srv 2007-03-15 02:25:20.000000000 +0000 @@ -44,7 +44,7 @@ case "${target}" in srv_linux_thread_db=yes ;; i[34567]86-*-cygwin*) srv_regobj=reg-i386.o - srv_tgtobj="win32-i386-low.o" + srv_tgtobj="win32-low.o" ;; i[34567]86-*-linux*) srv_regobj=reg-i386-linux.o srv_tgtobj="linux-low.o linux-i386-low.o i387-fp.o" @@ -53,7 +53,7 @@ case "${target}" in srv_linux_thread_db=yes ;; i[34567]86-*-mingw*) srv_regobj=reg-i386.o - srv_tgtobj="win32-i386-low.o" + srv_tgtobj="win32-low.o" srv_mingw=yes ;; ia64-*-linux*) srv_regobj=reg-ia64.o Index: src/gdb/gdbserver/Makefile.in =================================================================== --- src.orig/gdb/gdbserver/Makefile.in 2007-03-15 00:27:38.000000000 +0000 +++ src/gdb/gdbserver/Makefile.in 2007-03-15 02:25:20.000000000 +0000 @@ -310,7 +310,7 @@ linux-sh-low.o: linux-sh-low.c $(linux_l linux-x86-64-low.o: linux-x86-64-low.c $(linux_low_h) $(server_h) \ $(gdb_proc_service_h) -win32-i386-low.o: win32-i386-low.c $(server_h) $(regdef_h) $(regcache_h) +win32-low.o: win32-low.c $(server_h) $(regdef_h) $(regcache_h) spu-low.o: spu-low.c $(server_h) --------------030903050301000005060603--