From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28414 invoked by alias); 10 Sep 2014 05:15:08 -0000 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 Received: (qmail 28404 invoked by uid 89); 10 Sep 2014 05:15:07 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f47.google.com Received: from mail-pa0-f47.google.com (HELO mail-pa0-f47.google.com) (209.85.220.47) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 10 Sep 2014 05:15:06 +0000 Received: by mail-pa0-f47.google.com with SMTP id ey11so8625184pad.20 for ; Tue, 09 Sep 2014 22:15:05 -0700 (PDT) X-Received: by 10.66.233.226 with SMTP id tz2mr62549700pac.94.1410326104873; Tue, 09 Sep 2014 22:15:04 -0700 (PDT) Received: from seba.sebabeach.org.gmail.com (173-13-178-50-sfba.hfc.comcastbusiness.net. [173.13.178.50]) by mx.google.com with ESMTPSA id yx1sm13989768pab.5.2014.09.09.22.15.03 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 09 Sep 2014 22:15:04 -0700 (PDT) From: Doug Evans To: gdb-patches@sourceware.org Subject: Re: [PATCH][COMMITTED] Fix pr 17367 References: Date: Wed, 10 Sep 2014 05:15:00 -0000 In-Reply-To: (Doug Evans's message of "Tue, 09 Sep 2014 21:22:27 -0700") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00256.txt.bz2 Doug Evans writes: > Hi. > > This patch fixes PR 17367. > https://sourceware.org/bugzilla/show_bug.cgi?id=17367 > > Guile 2.2 now compiles to ELF files, and I was noticing gdb complaining > when starting up. > > Exception caught while booting Guile. > Error in function "load-thunk-from-memory": > not an ELF file > ./gdb: warning: Could not complete Guile gdb module initialization from: > /hack/gnu/sourceware/gdb-guile/b-sigchld-prep-git-guile-gc74/gdb/data-directory/guile/gdb/boot.scm. > > I traced this to the wrong guild program being used. > guild should come from the specified guile distribution, > but /bin/guild was being used instead (which is guile 2.0). > > Regression tested on amd64-linux with guile 2.0.11 and guile trunk. > > 2014-09-09 Doug Evans > > PR guile/17367 > * acinclude.m4 (GDB_GUILE_PROGRAM_NAMES): Pass guile version as > last parameter to pkg-config, not first. > * configure.ac: Pass --with-guile provided pkg-config path to > GDB_GUILE_PROGRAM_NAMES. > * configure: Regenerate. Pushed to 7.8 branch as well.