From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 38995 invoked by alias); 29 Feb 2016 20:49:21 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 38973 invoked by uid 89); 29 Feb 2016 20:49:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=symptoms X-HELO: mail-ob0-f171.google.com Received: from mail-ob0-f171.google.com (HELO mail-ob0-f171.google.com) (209.85.214.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 29 Feb 2016 20:49:19 +0000 Received: by mail-ob0-f171.google.com with SMTP id fz5so14987719obc.0 for ; Mon, 29 Feb 2016 12:49:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=TqA6JBAMnn0CurbELO7HOulL/J8YGHiXUrAEapUU+Cc=; b=CLCVARoVg2KyDk9C19/ke9H95AnGKxunWeCFp1OuoAEG57RSX0dV3hC4jb3OiKrege ffOOoWqrqjCVHbU+QggNlE4LGCN6WhbC7pETz+5DCzLN8YN/W/C+UGlPK5aHn9wdH99V 4JEj37w3/+ZNvL2RNEMKyruZ5+1CUV1XnYtirRR7P6lbs8eji1eIBYZW3NVo+jxI3Cq4 tr9SnBPTR6WT5OKpU4UnQmlSkEFk0/2rh2HnMUCt/tGXAlv13KS2wz5Knrw+8k6/B+4a kIiNi8VtZJENOnB9V8qCL4L5T5r77zIt10AnPgD0fF9oZW5+64IBM0oXslASR6qL9epq gd+A== X-Gm-Message-State: AD7BkJJUc7eFupZyaZlVRTE8gN7xcpEkbV9OgpbkgLgW9p4OeS/JYNMsHyRsBWBIy/bX6R0TvmpbzbwiAPyRjN36 MIME-Version: 1.0 X-Received: by 10.60.176.100 with SMTP id ch4mr13471610oec.7.1456778957460; Mon, 29 Feb 2016 12:49:17 -0800 (PST) Received: by 10.157.36.232 with HTTP; Mon, 29 Feb 2016 12:49:17 -0800 (PST) In-Reply-To: References: Date: Mon, 29 Feb 2016 20:49:00 -0000 Message-ID: Subject: Re: Completion on symbols nonfunctional, gdb 7.8.1 From: Jonah Petri To: "Maciej W. Rozycki" Cc: gdb@sourceware.org Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2016-02/txt/msg00039.txt.bz2 On Mon, Feb 29, 2016 at 12:44 PM, Maciej W. Rozycki wrote: > On Mon, 29 Feb 2016, Jonah Petri wrote: > >> I'm not familiar with inputrc, unfortunately. Can you tell me if >> there's anything weird in there? I have nothing in ~root/.inputrc, >> but here's the contents of /etc/inputrc: > > Me neither offhand; see readline(3) for details. Local settings take > precedence over global ones, so try making an empty ~/.inputrc file to see > if the symptoms go away. > Thanks for the advice! Your hints led me to readline, which seems to be the problem. I seem to be linking against a bad readline lib. I recompiled gdb with --without-system-readline, and now all is as expected. Thanks again.