From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40844 invoked by alias); 14 Jan 2016 22:22:34 -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 40823 invoked by uid 89); 14 Jan 2016 22:22:33 -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,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=neat, aha, HTo:U*duane X-HELO: mail-vk0-f50.google.com Received: from mail-vk0-f50.google.com (HELO mail-vk0-f50.google.com) (209.85.213.50) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 14 Jan 2016 22:22:31 +0000 Received: by mail-vk0-f50.google.com with SMTP id i129so150763332vkb.0 for ; Thu, 14 Jan 2016 14:22:30 -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:from:date :message-id:subject:to:cc:content-type; bh=7Q51j4WAXdxSBhOPnFoRAmiAv99g2Dxblqx7ospP46Y=; b=TMu0vlkDw8IKyosMcenSzR/vBl8ZpLLgTvYu8cwUR1aBNZG3Fn77ALkgwWswjVmFR6 cQj7ljw8ZL/+UZYQYX4disvSZ9n4B9n/t+W85BfjYCutSdXCuAvH7jzA0fW0K2FrGGzA QY/zDOu5unbc0gmO2sqTCC9D6ONNR0sK1m+N7g/SIvuWRivfFtbZI/1bIUO9vaEfIYZT wmmRKhtbuUTB/tO3ei0Lh3lz56o/0VYkG8+kdGHx3GjvOzMISa78lFnSMZM8sM3/1cwd xVzU8T/GHUazsChNJPR5rsbaOrC96dmCj8gX1hLsiOzXUzm3XMYQb7nyYNS//vkk34U6 oMVw== X-Gm-Message-State: ALoCoQkGe6nhBJHpX4Pp67jy7ni3I7a/zn/Qq7AbJqTjrSL+tDMC6h4vPjhowhi0ovLayBnPHXc1jx3PLjtHKquUdhjc4702LA== X-Received: by 10.31.140.209 with SMTP id o200mr5099478vkd.156.1452810148864; Thu, 14 Jan 2016 14:22:28 -0800 (PST) MIME-Version: 1.0 Received: by 10.31.48.1 with HTTP; Thu, 14 Jan 2016 14:22:09 -0800 (PST) In-Reply-To: <20160114144731.5c1bb9f86d671edec44bb378f25c04cc.7a526e7354.wbe@email03.secureserver.net> References: <20160114144731.5c1bb9f86d671edec44bb378f25c04cc.7a526e7354.wbe@email03.secureserver.net> From: Linux Mercedes Date: Thu, 14 Jan 2016 22:22:00 -0000 Message-ID: Subject: Re: gdb cannot find "../sysdeps/unix/syscall-template.S" To: duane@duaneellis.com Cc: gdb@sourceware.org Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2016-01/txt/msg00019.txt.bz2 > Why does this happen? Neat! That makes sense; thanks for explaining the details. > What is the true fix? The distribution you are using (ie: I'm using > Ubuntu) should *NOT* compile these files for GLIBC with debug records > turned on (or the should *STRIP* all debug info from the object files > and/or library). > Also note: Debug records might not be *IN* the object, they could be in > a parallel file (next to, or similar place) and the debugger knows how > to find the corresponding symbol files for each library. Aha! Turns out I somehow had the libc6-dbg package installed. Removing it fixes the 'No such file or directory' issue. It still prints 'Continuing.', but I'll have to sit down with the DDD manual and see what it's doing to fix that. Thanks!