From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10232 invoked by alias); 19 Apr 2010 06:37:33 -0000 Received: (qmail 10202 invoked by uid 22791); 19 Apr 2010 06:37:32 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=BAYES_00,MSGID_MULTIPLE_AT,TW_AV X-Spam-Check-By: sourceware.org Received: from mailhost.u-strasbg.fr (HELO mailhost.u-strasbg.fr) (130.79.200.157) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 19 Apr 2010 06:37:26 +0000 Received: from baal.u-strasbg.fr (baal.u-strasbg.fr [IPv6:2001:660:2402::41]) by mailhost.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id o3J6bJ0G070332 ; Mon, 19 Apr 2010 08:37:19 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from mailserver.u-strasbg.fr (ms3.u-strasbg.fr [IPv6:2001:660:2402:d::12]) by baal.u-strasbg.fr (8.14.0/jtpda-5.5pre1) with ESMTP id o3J6bIhu037048 ; Mon, 19 Apr 2010 08:37:19 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from d620muller (lec67-4-82-230-53-140.fbx.proxad.net [82.230.53.140]) (user=mullerp mech=LOGIN) by mailserver.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id o3J6bHgr074448 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO) ; Mon, 19 Apr 2010 08:37:18 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) From: "Pierre Muller" To: Cc: "'Pedro Alves'" , References: <000d01cadd79$efa9e2b0$cefda810$@muller@ics-cnrs.unistra.fr> <201004171158.08327.pedro@codesourcery.com> <003701cade84$38fbdd00$aaf39700$@muller@ics-cnrs.unistra.fr> <201004180045.51495.pedro@codesourcery.com> In-Reply-To: <201004180045.51495.pedro@codesourcery.com> Subject: [RFA] Prepare for Mingw Windows 64-bit gdbserver Date: Mon, 19 Apr 2010 06:37:00 -0000 Message-ID: <003301cadf8a$ca5046e0$5ef0d4a0$@muller@ics-cnrs.unistra.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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/msg00549.txt.bz2 > > -srv_amd64_regobj="amd64.o x86-64-avx.o" > > +srv_amd64_regobj="amd64.o amd64-avx.o" > > looks like another piece. Is it just a cosmetic change because > we use amd64 instead of x86-64 throughout? Please explain > it and post it separately, if possible. I suspect that this is an error in the commit from H.J. Lu dated 2010/04/07. The ChangeLog says: * configure.srv (srv_i386_regobj): Add i386-avx.o. (srv_i386_linux_regobj): Add i386-avx-linux.o. (srv_amd64_regobj): Add amd64-avx.o. But $ cvs diff -r 1.51 -r 1.52 configure.srv Index: configure.srv =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/configure.srv,v retrieving revision 1.51 retrieving revision 1.52 diff -r1.51 -r1.52 25,28c25,28 < srv_i386_regobj=i386.o < srv_i386_linux_regobj=i386-linux.o < srv_amd64_regobj=amd64.o < srv_amd64_linux_regobj=amd64-linux.o --- > srv_i386_regobj="i386.o i386-avx.o" > srv_i386_linux_regobj="i386-linux.o i386-avx-linux.o" > srv_amd64_regobj="amd64.o x86-64-avx.o" > srv_amd64_linux_regobj="amd64-linux.o amd64-avx-linux.o" 30,35c30,35 As srv_amd64_regobj is not yet used, nobody noticed it before I tried to use it for mingw64 support. Is this OK? Pierre PS: I will try to send the patch into several sub-patches, but I am still not used to handling patch series ... ChangeLog entry: 2010-04-19 Pierre Muller * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by `amd64-avx.o'. Index: configure.srv =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/configure.srv,v retrieving revision 1.53 diff -u -p -r1.53 configure.srv --- configure.srv 8 Apr 2010 22:32:38 -0000 1.53 +++ configure.srv 18 Apr 2010 15:34:29 -0000 @@ -24,7 +24,7 @@ srv_hostio_err_objs="hostio-errno.o" srv_i386_regobj="i386.o i386-avx.o i386-mmx.o" srv_i386_linux_regobj="i386-linux.o i386-avx-linux.o i386-mmx-linux.o" -srv_amd64_regobj="amd64.o x86-64-avx.o" +srv_amd64_regobj="amd64.o amd64-avx.o" srv_amd64_linux_regobj="amd64-linux.o amd64-avx-linux.o" srv_i386_32bit_xmlfiles="i386/32bit-core.xml i386/32bit-sse.xml i386/32bit-avx.xml"