Files
RedBear-OS/recipes/tools/gnu-binutils/source/libctf/NEWS
T
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

39 lines
1.2 KiB
Plaintext

-*- text -*-
Changes in 2.39:
* New features
** The CTF variable section (if generated via ld --ctf-variables) now contains
entries for static functions, hidden functions, and other functions with
no associated symbol. The associated type is of kind CTF_K_FUNCTION.
(No change if --ctf-variables is not specified, which is the default.)
Changes in 2.37:
* New features
** Add ctf_lookup_by_symbol name and ctf_arc_lookup_symbol_name, analogues of
existing ctf_lookup_by_symbol and ctf_arc_lookup_symbol, but looking up
symbols by name rather than symbol number. This also works in places where no
symbol number is known, like in object files and dynamic dicts created by
ctf_create.
** libctf supports compilers that encode unrepresentable types via a special
kind (CTF_K_UNKNOWN) as well as via type ID 0.
* Bugfixes
** Avoid duplicating or losing types of data object symbols when
ld -r is used
** Prohibit typedefs with no name; prevent the linker/deduplicator
producing such typedefs
* Bugfixes, also on 2.36 branch
** Prevent ctf_lookup_by_name returning success when
looking up nonexistent pointer types
** Fix ctf_type_add copying of structs with unnamed members