public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [Bug general/31287] New: 0.190: test suite build fails with gcc 14.x
@ 2024-01-24  8:00 kloczko.tomasz at gmail dot com
  2024-01-24  8:20 ` [Bug general/31287] " sam at gentoo dot org
  2024-01-31 16:09 ` mark at klomp dot org
  0 siblings, 2 replies; 3+ messages in thread
From: kloczko.tomasz at gmail dot com @ 2024-01-24  8:00 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=31287

            Bug ID: 31287
           Summary: 0.190: test suite build fails with gcc 14.x
           Product: elfutils
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: general
          Assignee: unassigned at sourceware dot org
          Reporter: kloczko.tomasz at gmail dot com
                CC: elfutils-devel at sourceware dot org
  Target Milestone: ---

Looks like 0.190 test suite is not gcc 14.x ready

/usr/bin/gcc -D_GNU_SOURCE -DHAVE_CONFIG_H -DLOCALEDIR='"/usr/share/locale"'
-I. -I..  -I. -I. -I../lib -I.. -I../libasm -I../libdw -I../libdwfl
-I../libdwelf -I../libebl -I../libelf -I../lib -I..  -std=gnu99 -Wall -Wshadow
-Wformat=2 -Wold-style-definition -Wstrict-prototypes -Wtrampolines
-Wlogical-op -Wduplicated-cond -Wnull-dereference -Wimplicit-fallthrough=5
-Wuse-after-free=3 -Werror -Wunused -Wextra -Wstack-usage=262144   -m64
-mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection
-fcf-protection -O2 -g -grecord-gcc-switches -pipe
-specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -fno-omit-frame-pointer
-mno-omit-leaf-frame-pointer -fdata-sections -ffunction-sections
-fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1
-flto=auto -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -Wp,-D_GLIBCXX_ASSERTIONS
-Wall -Werror=format-security -Wformat -Wno-error=stack-usage= -c -o
elfstrmerge.o elfstrmerge.c
elfstrmerge.c: In function ‘main’:
elfstrmerge.c:450:32: error: ‘calloc’ sizes specified with ‘sizeof’ in the
earlier argument and not in the later argument [-Werror=calloc-transposed-args]
  450 |   newscnbufs = calloc (sizeof (void *), newshnums);
      |                                ^~~~
elfstrmerge.c:450:32: note: earlier argument should specify number of elements,
later size of each element
cc1: all warnings being treated as errors

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug general/31287] 0.190: test suite build fails with gcc 14.x
  2024-01-24  8:00 [Bug general/31287] New: 0.190: test suite build fails with gcc 14.x kloczko.tomasz at gmail dot com
@ 2024-01-24  8:20 ` sam at gentoo dot org
  2024-01-31 16:09 ` mark at klomp dot org
  1 sibling, 0 replies; 3+ messages in thread
From: sam at gentoo dot org @ 2024-01-24  8:20 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=31287

--- Comment #1 from Sam James <sam at gentoo dot org> ---
Fixed in
https://sourceware.org/git/?p=elfutils.git;a=commit;h=ae580d48278b9924da7503886b37be34378e1b04,
just needs a new release before 14 is out (or we get mjw to change his mind on
werror for releases finally :p)

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug general/31287] 0.190: test suite build fails with gcc 14.x
  2024-01-24  8:00 [Bug general/31287] New: 0.190: test suite build fails with gcc 14.x kloczko.tomasz at gmail dot com
  2024-01-24  8:20 ` [Bug general/31287] " sam at gentoo dot org
@ 2024-01-31 16:09 ` mark at klomp dot org
  1 sibling, 0 replies; 3+ messages in thread
From: mark at klomp dot org @ 2024-01-31 16:09 UTC (permalink / raw)
  To: elfutils-devel

https://sourceware.org/bugzilla/show_bug.cgi?id=31287

Mark Wielaard <mark at klomp dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
                 CC|                            |mark at klomp dot org
             Status|UNCONFIRMED                 |RESOLVED

--- Comment #2 from Mark Wielaard <mark at klomp dot org> ---
commit ae580d48278b9924da7503886b37be34378e1b04
Author: Sergei Trofimovich <slyich@gmail.com>
Date:   Thu Dec 21 09:23:30 2023 +0000

    tests: fix build against upcoming `gcc-14`
(`-Werror=calloc-transposed-args`)

    `gcc-14` added a new `-Wcalloc-transposed-args` warning recently. It
    detected minor infelicity in `calloc()` API usage in `elfutils`:

        elfstrmerge.c: In function 'main':
        elfstrmerge.c:450:32: error:
          'calloc' sizes specified with 'sizeof' in the earlier argument and
not in the later argument [-Werror=calloc-transposed-args]
          450 |   newscnbufs = calloc (sizeof (void *), newshnums);
              |                                ^~~~
        elfstrmerge.c:450:32: note: earlier argument should specify number of
elements, later size of each element

    Signed-off-by: Sergei Trofimovich <slyich@gmail.com>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-01-31 16:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-24  8:00 [Bug general/31287] New: 0.190: test suite build fails with gcc 14.x kloczko.tomasz at gmail dot com
2024-01-24  8:20 ` [Bug general/31287] " sam at gentoo dot org
2024-01-31 16:09 ` mark at klomp dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).