From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26128 invoked by alias); 4 Apr 2002 05:15:09 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 26121 invoked from network); 4 Apr 2002 05:15:08 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 4 Apr 2002 05:15:08 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id A85A53CA3; Thu, 4 Apr 2002 00:15:04 -0500 (EST) Message-ID: <3CABE158.5080706@cygnus.com> Date: Wed, 03 Apr 2002 21:15:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:0.9.9) Gecko/20020328 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Daniel Jacobowitz Cc: gdb@sources.redhat.com, hunt@redhat.com, cagney@redhat.com Subject: Re: Alpha completely broken: build_regcache never called References: <20020403180530.A570@nevyn.them.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-04/txt/msg00035.txt.bz2 > I believe this patch is responsible: > > 2002-03-20 Martin M. Hunt > > * regcache.c (_initialize_regcache): No need to call > build_regcache() at this time; it gets called whenever > the gdbarch changes. > > Alpha is completely non-multi-arch. Thus the gdbarch appears to never > change, and we crash very quickly. When non-multi-arch, that function should still be called via: initialize_non_multiarch (); is this not happening? Andrew