From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx-relay29-hz1.antispameurope.com (mx-relay29-hz1.antispameurope.com [94.100.133.205]) by sourceware.org (Postfix) with ESMTPS id 085E9385800F for ; Sat, 23 Jan 2021 10:51:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 085E9385800F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=net-b.de Authentication-Results: sourceware.org; spf=none smtp.mailfrom=prvs=06502cb78b=burnus@net-b.de Received: from s041.wsp.plusnet.de ([195.90.7.81]) by mx-relay29-hz1.antispameurope.com; Sat, 23 Jan 2021 11:51:13 +0100 Received: from [192.168.0.28] (port-92-195-149-91.dynamic.as20676.net [92.195.149.91]) by s041.wsp.plusnet.de (Postfix) with ESMTPSA id 67F3A2C026F; Sat, 23 Jan 2021 11:51:10 +0100 (CET) Subject: Re: Non-dwarf blocks detected by valgrind To: Paul Richard Thomas References: From: Tobias Burnus Cc: fortran Message-ID: Date: Sat, 23 Jan 2021 11:51:09 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-cloud-security-sender: burnus@net-b.de X-cloud-security-recipient: fortran@gcc.gnu.org X-cloud-security-Virusscan: CLEAN X-cloud-security-disclaimer: This E-Mail was scanned by E-Mailservice on mx-relay29-hz1.antispameurope.com with C762B961841 X-cloud-security-connect: s041.wsp.plusnet.de[195.90.7.81], TLS=1, IP=195.90.7.81 X-cloud-security-Digest: eb07ff8098cd0c95fd9ea122a6ddb826 X-cloud-security: scantime:1.392 X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, KAM_SHORT, NICE_REPLY_A, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: fortran@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Fortran mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jan 2021 10:51:17 -0000 Hi Paul, On 23.01.21 09:52, Paul Richard Thomas via Fortran wrote: > Has anybody else seen this popping up in executables produced from master? > > --1627334-- Ignoring non-Dwarf2/3/4 block in .debug_info This error looks as if Valgrind does not support DWARF5. Try to compile with -gdwarf-4. GCC switched to defaulting to DWARF 5 in GCC 11, cf. https://gcc.gnu.org/g:3804e937b0e252a7e42632fe6d9f898f1851a49c (Mark Wielaard; committed 17 Jan 2021). (Not yet documented in the release notes.) Cheers, Tobias