Changes between Version 10 and Version 11 of gcc14-todo


Ignore:
Timestamp:
02/02/2024 04:44:29 PM (10 months ago)
Author:
Xi Ruoyao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • gcc14-todo

    v10 v11  
    5151Fix: `sed '/stdlib.h/a#include <termcap.h>' -i telnet/telnet.c`
    5252
     53TODO: check upstream status?
     54
    5355== Automake (1.16.5)
    5456
    555752 tests fail.  They seem test-suite-only issue (see patches in https://src.fedoraproject.org/rpms/automake/tree/182bffe0).
     58
     59== Elfutils-0.190
     60
     61`make check` fail early so **impossible to test**:
     62
     63{{{
     64elfstrmerge.c: In function 'main':
     65elfstrmerge.c:450:32: error: 'calloc' sizes specified with 'sizeof' in the earlier argument and not in the later argument [-Werror=calloc-transposed-args]
     66  450 |   newscnbufs = calloc (sizeof (void *), newshnums);
     67      |                                ^~~~
     68elfstrmerge.c:450:32: note: earlier argument should specify number of elements, later size of each element
     69}}}
     70
     71Fix: `sed '/calloc/s/(\(.*\), \(.*\))/(\2, \1)/' -i tests/elfstrmerge.c`
     72
     73TODO: check upstream status?