Changes between Version 12 and Version 13 of gcc14-todo
- Timestamp:
- 02/02/2024 04:55:27 PM (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gcc14-todo
v12 v13 59 59 52 tests fail. They seem test-suite-only issue (see patches in https://src.fedoraproject.org/rpms/automake/tree/182bffe0). 60 60 61 == Elfutils -0.19061 == Elfutils (0.190) 62 62 63 63 `make check` fail early so **impossible to test**: … … 74 74 75 75 TODO: 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 88 Patch: 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.)