aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/glibc/vers.txt
AgeCommit message (Collapse)Author
2021-12-13stage2: improved glibc stubsAndrew Kelley
This commit upgrades glibc shared library stub-creating code to use the new abilists file which is generated by the new glibc-abi-tool project: https://github.com/ziglang/glibc-abi-tool/ The abilists file is different in these ways: * It additionally encodes whether a symbol is a function or an object, and if it is an object, it additionally encodes the size in bytes. * It additionally encodes migrations of symbols from one library to another between glibc versions. * It is binary data instead of ascii. * It is one file instead of three. * It is 165 KB instead of 200 KB. This solves three bugs: Fixes #7667 Fixes #8714 Fixes #8896
2021-04-04glibc: update ABI files to 2.33Andrew Kelley
2020-08-30update glibc ABI files to 2.32Andrew Kelley
2020-08-24Revert "Merge pull request #6137 from Jan200101/update/glibc-2.32"Andrew Kelley
This reverts commit bb9c3118ed5fdc16b8e2d9882375005c2a62d0cc, reversing changes made to 7015d84e0ca6f02fede45621571084df98dda712. This is missing quite a few headers
2020-08-22update glibc abi list for 2.32Jan200101
2020-03-04update glibc abilists for 2.31Andrew Kelley
2019-09-07update glibc ABI lists to 2.30Andrew Kelley
2019-07-15move lib dirs to lib subdirAndrew Kelley
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging