From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 40300 invoked by alias); 24 Dec 2019 20:44:54 -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 39993 invoked by uid 89); 24 Dec 2019 20:44:53 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL,BAYES_00,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.1 spammy= X-HELO: mail-il1-f178.google.com Received: from mail-il1-f178.google.com (HELO mail-il1-f178.google.com) (209.85.166.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 24 Dec 2019 20:44:52 +0000 Received: by mail-il1-f178.google.com with SMTP id p8so17228244iln.12 for ; Tue, 24 Dec 2019 12:44:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=bvD7Nw0ZtwaMLT82ecWKMx5y8yUd9i43snVgOTbnzK8=; b=n9xzwaQw2OKzl2wWtYBngdhK3S6QzKXYVViYTeOXKdFS6LFyM3Rw+0FMEBKl9DbHbZ x1TOhcV1vjwXjY10NOKAhI0225jCrg6h7aSCaE6AbVkrEtXPH5y3h4XtNOV/jvZz9UfG LVSfP9KBC8ZNBW7dlBBueBcSddogYjnp17GAICE8sptdRXlmqwYSc+4ShbsQn0/kZywJ b5cDSFMngmPXN1ewNjySGJ9neLQR/fq8aJvl7wUFIN0oe5yWTIhlIEaPGnoFtfeiXrUT fhp7wsSVBHz8SPPTEPtoSflfQGWYHbgHyMmjeNVaT7s/MMB3M19ELAkb6/rT/4rId7f3 NljQ== MIME-Version: 1.0 From: Ruslan Kabatsayev Date: Tue, 24 Dec 2019 20:44:00 -0000 Message-ID: Subject: Current master fails to build on i686-pc-linux-gnu To: GDB Patches , tankut.baris.aktemur@intel.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg01001.txt.bz2 Hello, Building current master of binutils-gdb (commit ebd1c6d1d30; git-blame points to commits e35000a7f8be and d0922fcf02c6) results in some -Werror=3Dformat=3D errors on i686-pc-linux-gnu: In file included from dwarf2read.c:47:0: dwarf2read.c: In function =E2=80=98bool is_valid_DW_AT_defaulted(ULONGEST)= =E2=80=99: complaints.h:38:40: error: format =E2=80=98%lu=E2=80=99 expects argument of= type =E2=80=98long unsigned int=E2=80=99, but argument 2 has type =E2=80=98ULONGEST {aka long = long unsigned int}=E2=80=99 [-Werror=3Dformat=3D] complaint_internal (FMT, ##__VA_ARGS__); \ ^ dwarf2read.c:15490:3: note: in expansion of macro =E2=80=98complaint=E2=80= =99 complaint (_("unrecognized DW_AT_defaulted value (%lu)"), value); ^~~~~~~~~ dwarf2read.c: In function =E2=80=98bool is_valid_DW_AT_calling_convention_for_type(ULONGEST)=E2=80=99: complaints.h:38:40: error: format =E2=80=98%lu=E2=80=99 expects argument of= type =E2=80=98long unsigned int=E2=80=99, but argument 2 has type =E2=80=98ULONGEST {aka long = long unsigned int}=E2=80=99 [-Werror=3Dformat=3D] complaint_internal (FMT, ##__VA_ARGS__); \ ^ dwarf2read.c:15869:7: note: in expansion of macro =E2=80=98complaint=E2=80= =99 complaint (_("unrecognized DW_AT_calling_convention value " ^~~~~~~~~ dwarf2read.c: In function =E2=80=98bool is_valid_DW_AT_calling_convention_for_subroutine(ULONGEST)=E2=80=99: complaints.h:38:40: error: format =E2=80=98%lu=E2=80=99 expects argument of= type =E2=80=98long unsigned int=E2=80=99, but argument 2 has type =E2=80=98ULONGEST {aka long = long unsigned int}=E2=80=99 [-Werror=3Dformat=3D] complaint_internal (FMT, ##__VA_ARGS__); \ ^ dwarf2read.c:15895:7: note: in expansion of macro =E2=80=98complaint=E2=80= =99 complaint (_("unrecognized DW_AT_calling_convention value " ^~~~~~~~~ Regards, Ruslan