From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4588 invoked by alias); 12 Apr 2004 15:41:47 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 4510 invoked from network); 12 Apr 2004 15:41:26 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.113.248) by sources.redhat.com with SMTP; 12 Apr 2004 15:41:26 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i3CFfMlt001074; Mon, 12 Apr 2004 17:41:22 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i3CFfMM3026720; Mon, 12 Apr 2004 17:41:22 +0200 (CEST) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i3CFfLRJ026717; Mon, 12 Apr 2004 17:41:21 +0200 (CEST) Date: Mon, 12 Apr 2004 15:41:00 -0000 Message-Id: <200404121541.i3CFfLRJ026717@elgar.kettenis.dyndns.org> From: Mark Kettenis To: cagney@gnu.org CC: gdb-patches@sources.redhat.com In-reply-to: <407AAD4B.9020704@gnu.org> (message from Andrew Cagney on Mon, 12 Apr 2004 10:52:59 -0400) Subject: Re: [PATCH] Simplify i386 target configs References: <200404091501.i39F1uUH098592@elgar.kettenis.dyndns.org> <40781384.8030205@gnu.org> <200404101654.i3AGsFv1062897@elgar.kettenis.dyndns.org> <407AAD4B.9020704@gnu.org> X-SW-Source: 2004-04/txt/msg00254.txt.bz2 Date: Mon, 12 Apr 2004 10:52:59 -0400 From: Andrew Cagney Is *.mt still needed? Unfortunately, yes. We do need a place to specify which *-tdep.o files are needed, and we still have some tm-*.h files left. There are some issues with getting rid of the tm-*.h files: * Including "solib.h". We should probably move towards including it unconditionally. * SOFUN_ADDRESS_MAYBE_MISSING; We've discussed it before, talking about enabling it unconditionally, but I chickened out doing just that. * STATIC_TRANSFORM_NAME/IS_STATIC_TRANSFORM_NAME. * Real-time signal stuff (QNX Neutrino, Lynx). The rest is OS-specific junk that could go. Anyway, it should be possible to build a single GDB that is able to debug GNU/Linux, FreeBSD, NetBSD, OpenBSD and Solaris on both IA-32 and AMD64. Mark