glibc: update headers to 2.33

This introduces csky support.
This commit is contained in:
Andrew Kelley
2021-04-04 11:54:47 -07:00
parent b25476bf12
commit 4d4bb69d7b
1069 changed files with 4521 additions and 2782 deletions

View File

@@ -6,10 +6,16 @@
#include <bits/wordsize.h>
#if defined __LP64__ && defined __riscv_float_abi_soft
#if __WORDSIZE == 32 && defined __riscv_float_abi_soft
# include <gnu/lib-names-ilp32.h>
#endif
#if __WORDSIZE == 32 && defined __riscv_float_abi_double
# include <gnu/lib-names-ilp32d.h>
#endif
#if __WORDSIZE == 64 && defined __riscv_float_abi_soft
# include <gnu/lib-names-lp64.h>
#endif
#if defined __LP64__ && defined __riscv_float_abi_double
#if __WORDSIZE == 64 && defined __riscv_float_abi_double
# include <gnu/lib-names-lp64d.h>
#endif

View File

@@ -4,9 +4,15 @@
#include <bits/wordsize.h>
#if defined __LP64__ && defined __riscv_float_abi_soft
#if __WORDSIZE == 32 && defined __riscv_float_abi_soft
# include <gnu/stubs-ilp32.h>
#endif
#if __WORDSIZE == 32 && defined __riscv_float_abi_double
# include <gnu/stubs-ilp32d.h>
#endif
#if __WORDSIZE == 64 && defined __riscv_float_abi_soft
# include <gnu/stubs-lp64.h>
#endif
#if defined __LP64__ && defined __riscv_float_abi_double
#if __WORDSIZE == 64 && defined __riscv_float_abi_double
# include <gnu/stubs-lp64d.h>
#endif