Changes between Version 12 and Version 13 of gcc14-todo


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

--

Legend:

Unmodified
Added
Removed
Modified
  • gcc14-todo

    v12 v13  
    595952 tests fail.  They seem test-suite-only issue (see patches in https://src.fedoraproject.org/rpms/automake/tree/182bffe0).
    6060
    61 == Elfutils-0.190
     61== Elfutils (0.190)
    6262
    6363`make check` fail early so **impossible to test**:
     
    7474
    7575TODO: check upstream status?
     76
     77== Libffi (3.4.4)
     78
     79**FTBFS**:
     80
     81{{{
     82../src/tramp.c: In function 'ffi_tramp_get_temp_file':
     83../src/tramp.c:262:22: error: implicit declaration of function 'open_temp_exec_file' [-Wimplicit-function-declaration]
     84  262 |   tramp_globals.fd = open_temp_exec_file ();
     85      |                      ^~~~~~~~~~~~~~~~~~~
     86}}}
     87
     88Patch: https://github.com/libffi/libffi/commit/ce077e5565366171aa1b4438749b0922fce887a4.diff
     89
     90(We may work around with `CC="gcc -std=gnu89"` but I think it's a bad idea.)