From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 379 invoked by alias); 17 Mar 2006 22:25:45 -0000 Received: (qmail 369 invoked by uid 22791); 17 Mar 2006 22:25:45 -0000 X-Spam-Check-By: sourceware.org Received: from intranet.codesourcery.com (HELO sethra.codesourcery.com) (65.74.133.6) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 17 Mar 2006 22:25:44 +0000 Received: from sethra.codesourcery.com (localhost.localdomain [127.0.0.1]) by sethra.codesourcery.com (8.12.11/8.12.11) with ESMTP id k2HMPgvX024099 for ; Fri, 17 Mar 2006 14:25:42 -0800 Received: (from mitchell@localhost) by sethra.codesourcery.com (8.12.11/8.12.11/Submit) id k2HMPgPG024087; Fri, 17 Mar 2006 14:25:42 -0800 Date: Sat, 18 Mar 2006 02:40:00 -0000 Message-Id: <200603172225.k2HMPgPG024087@sethra.codesourcery.com> From: Mark Mitchell To: gdb-patches@sources.redhat.com Subject: PATCH: Disable ARM RDP Reply-to: mark@codesourcery.com Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-03/txt/msg00234.txt.bz2 This patch removes remote-rdp.o from ARM's TDEPFILES since Daniel and Paul say that it's useless to most people. I also found that with --disable-sim GDB fails to link because remote-rdp.c references a function defined in the simulator. I'm not sure if this is the right patch for mainline, or whether people would rather I remove remote-rdp.c entirely, or do nothing, or ... So, I guess this is a request for approval, but a pretty tentative one. Thanks, -- Mark Mitchell CodeSourcery mark@codesourcery.com (650) 331-3385 x713 2006-03-17 Mark Mitchell * gdb/config/arm/embed.mt (TDEPFILES): Remove remote-rdp.o. Index: gdb/config/arm/embed.mt =================================================================== RCS file: /cvs/src/src/gdb/config/arm/embed.mt,v retrieving revision 1.3 diff -c -5 -p -r1.3 embed.mt *** gdb/config/arm/embed.mt 21 Jan 2006 01:29:04 -0000 1.3 --- gdb/config/arm/embed.mt 17 Mar 2006 21:15:49 -0000 *************** *** 1,6 **** # Target: ARM embedded system ! TDEPFILES= arm-tdep.o remote-rdp.o DEPRECATED_TM_FILE= tm-embed.h SIM_OBS = remote-sim.o SIM = ../sim/arm/libsim.a --- 1,6 ---- # Target: ARM embedded system ! TDEPFILES= arm-tdep.o DEPRECATED_TM_FILE= tm-embed.h SIM_OBS = remote-sim.o SIM = ../sim/arm/libsim.a