From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x62a.google.com (mail-ej1-x62a.google.com [IPv6:2a00:1450:4864:20::62a]) by sourceware.org (Postfix) with ESMTPS id BE57E385800A for ; Wed, 18 Nov 2020 04:38:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org BE57E385800A Received: by mail-ej1-x62a.google.com with SMTP id i19so834105ejx.9 for ; Tue, 17 Nov 2020 20:38:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=NxvhXJ/4+s4UqNRbrgypcKvKhB+VW0Uq3ap8VHw2bLY=; b=mVWZKy6HIUrgqXC6KrqGkv4RFGpMYZzfiSmvuyxksgQqlcDPq553CHbAUJ8eQp+Xyy zwhDkhdQAbcEyiMFWEyGk2k3DPrfwf84ourSo1SiYL+7m8g31EjVMLQetDuhRkkk5tYl iWXAPO8VYac+OwKvJqrcuFg/cJWg1KHxW7dubksMBCynZxcefvYaJBpo0Wi4wtCuNZje TtRCeEr/S1EHnZi8jC94MeTJCbfcuccrxQ5wCtD2rxRDc7v4hxPMOLaOvhuP7QblRH+q q4sr+XtnSOxvJ5jRjRe4XjnmC28aj2wLPuNkTz+PFxsg6KDvmO23GjCypsJOAxzJUjwK sueQ== X-Gm-Message-State: AOAM530psnXd3LKRfrwpltjUrXH/G37NnlUUydwxYzebl0T1WUK8UUh2 OXf7h/n+RwoTToJVKfUEbTdCQs3Y5prvAnTG9CVlf6m239c= X-Google-Smtp-Source: ABdhPJwijY9/7t8IHIweW7D6q7erg/cN8DnWdD15iZUBelNyuV/NaFwJzfw6tNpbt9YiFN0kUBiA5UY2zT9fWQVrCUM= X-Received: by 2002:a17:906:5841:: with SMTP id h1mr21710757ejs.342.1605674315896; Tue, 17 Nov 2020 20:38:35 -0800 (PST) MIME-Version: 1.0 References: <177f3608859f52ec48466f1d0045307a3dbbd7df.camel@klomp.org> In-Reply-To: <177f3608859f52ec48466f1d0045307a3dbbd7df.camel@klomp.org> From: Navin P Date: Wed, 18 Nov 2020 10:08:24 +0530 Message-ID: Subject: Re: Subject: [PATCH] Make elflint and libebl understand .rela.eh_frame like other section type To: Mark Wielaard Cc: elfutils-devel@sourceware.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2020 04:38:38 -0000 with clang compiler build, before applying this patch 3 tests were failing and after applying the patch all tests pass. your patch is much better as it fixes the backend. On Tue, Nov 17, 2020 at 7:44 PM Mark Wielaard wrote: > > Hi Navin, > > > On Fri, 2020-11-13 at 20:17 +0530, Navin P via Elfutils-devel wrote: > > elflint doesn't recognize .rela.eh_frame like it does for other > > .rela sections. > > Timm also noticed https://sourceware.org/bugzilla/show_bug.cgi?id=26878 > > I have an alternative patch that only recognizes SHT_X86_64_UNWIND for > x86_64, because it is an architecture specific section type. > > Does the attached work for you? > > Thanks, > > Mark