From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20698 invoked by alias); 29 Mar 2007 03:51:55 -0000 Received: (qmail 20673 invoked by uid 22791); 29 Mar 2007 03:51:54 -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; Thu, 29 Mar 2007 04:51:49 +0100 Received: from localhost (localhost [127.0.0.1]) by elrond.portugalmail.pt (Postfix) with ESMTP id 016A940530; Thu, 29 Mar 2007 04:50:05 +0100 (WEST) 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 BCP26b4hVuOC; Thu, 29 Mar 2007 04:50:02 +0100 (WEST) Received: from [127.0.0.1] (62.169.107.177.rev.optimus.pt [62.169.107.177]) (Authenticated sender: pedro_alves@portugalmail.pt) by elrond.portugalmail.pt (Postfix) with ESMTP id D1B5443B27; Thu, 29 Mar 2007 02:43:44 +0100 (WEST) Message-ID: <460B1A06.1090606@portugalmail.pt> Date: Thu, 29 Mar 2007 03:51: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: Eli Zaretskii , gdb-patches@sourceware.org Subject: Re: [New WinCE support] [patch 4/4] The bulk of the code. References: <20070315235008.243411000@portugalmail.pt> <45F9FC33.9020106@portugalmail.pt> <4053daab0703160803s3edf1294sfcdf4f8319787ab7@mail.gmail.com> <45FDE45F.2000309@portugalmail.pt> <20070327192032.GJ28164@caradoc.them.org> In-Reply-To: <20070327192032.GJ28164@caradoc.them.org> Content-Type: multipart/mixed; boundary="------------020102050304090602020409" X-Antivirus: avast! (VPS 000728-2, 28-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/msg00303.txt.bz2 This is a multi-part message in MIME format. --------------020102050304090602020409 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 266 Daniel Jacobowitz wrote: > Please put arm*-*-mingw32ce* up higher, near other ARM targets - the > case statement is pretty much sorted. > Ooops, ended up committing without this change. Sorry for that. Committed the attached as obvious. Cheers, Pedro Alves --------------020102050304090602020409 Content-Type: text/plain; name="fixconf.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="fixconf.diff" Content-length: 1666 Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/ChangeLog,v retrieving revision 1.117 diff -u -p -r1.117 ChangeLog --- ChangeLog 29 Mar 2007 01:10:37 -0000 1.117 +++ ChangeLog 29 Mar 2007 01:44:25 -0000 @@ -1,5 +1,10 @@ 2007-03-29 Pedro Alves + * configure.srv (arm*-*-mingw32ce*): Move near the other + arm targets. + +2007-03-29 Pedro Alves + * configure.ac: Add errno checking. (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h, sys/file.h and malloc.h. Index: configure.srv =================================================================== RCS file: /cvs/src/src/gdb/gdbserver/configure.srv,v retrieving revision 1.22 diff -u -p -r1.22 configure.srv --- configure.srv 29 Mar 2007 01:06:47 -0000 1.22 +++ configure.srv 29 Mar 2007 01:44:25 -0000 @@ -33,6 +33,12 @@ case "${target}" in srv_regobj=reg-arm.o fi ;; + arm*-*-mingw32ce*) srv_regobj=reg-arm.o + srv_tgtobj="win32-low.o win32-arm-low.o" + srv_tgtobj="${srv_tgtobj} wincecompat.o" + srv_mingw=yes + srv_mingwce=yes + ;; crisv32-*-linux*) srv_regobj=reg-crisv32.o srv_tgtobj="linux-low.o linux-crisv32-low.o" srv_linux_regsets=yes @@ -52,12 +58,6 @@ case "${target}" in srv_linux_regsets=yes srv_linux_thread_db=yes ;; - arm*-*-mingw32ce*) srv_regobj=reg-arm.o - srv_tgtobj="win32-low.o win32-arm-low.o" - srv_tgtobj="${srv_tgtobj} wincecompat.o" - srv_mingw=yes - srv_mingwce=yes - ;; i[34567]86-*-mingw*) srv_regobj=reg-i386.o srv_tgtobj="win32-low.o win32-i386-low.o" srv_mingw=yes --------------020102050304090602020409--