Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
git-mirror
/
glibc
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
a64e3aa
argp
assert
benchtests
bits
catgets
conf
conform
crypt
csu
ctype
debug
dirent
dlfcn
elf
gmon
gnulib
grp
gshadow
hesiod
hurd
iconv
iconvdata
include
inet
intl
io
libidn
libio
locale
localedata
login
mach
malloc
manual
math
mathvec
misc
nis
nptl
nptl_db
nscd
nss
po
posix
pwd
resolv
resource
rt
scripts
setjmp
shadow
signal
socket
soft-fp
stdio-common
stdlib
streams
string
sunrpc
sysdeps
sysvipc
termios
time
timezone
wcsmbs
wctype
.gitattributes
.gitignore
BUGS
CONFORMANCE
COPYING
COPYING.LIB
ChangeLog
ChangeLog.1
ChangeLog.10
ChangeLog.11
ChangeLog.12
ChangeLog.13
ChangeLog.14
ChangeLog.15
ChangeLog.16
ChangeLog.17
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
ChangeLog.old-ports
ChangeLog.old-ports-aarch64
ChangeLog.old-ports-aix
ChangeLog.old-ports-alpha
ChangeLog.old-ports-am33
ChangeLog.old-ports-arm
ChangeLog.old-ports-cris
ChangeLog.old-ports-hppa
ChangeLog.old-ports-ia64
ChangeLog.old-ports-linux-generic
ChangeLog.old-ports-m68k
ChangeLog.old-ports-microblaze
ChangeLog.old-ports-mips
ChangeLog.old-ports-powerpc
ChangeLog.old-ports-tile
INSTALL
LICENSES
Makeconfig
Makefile
Makefile.in
Makerules
NAMESPACE
NEWS
PROJECTS
README
Rules
WUR-REPORT
abi-tags
aclocal.m4
config.h.in
config.make.in
configure
configure.ac
cppflags-iterator.mk
extra-lib.mk
extra-modules.mk
gen-locales.mk
libc-abis
o-iterator.mk
shlib-versions
test-skeleton.c
version.h
Breadcrumbs
glibc
/
libc-abis
Blame
Blame
Latest commit
History
History
48 lines (48 loc) · 1.9 KB
Breadcrumbs
glibc
/
libc-abis
Top
File metadata and controls
Code
Blame
48 lines (48 loc) · 1.9 KB
Raw
# Definition of features which introduce new libc ABI versions. This # file is used to create a header file with definitions for the various # versions. The static linker will encode in the EI_ABIVERSION field in # the e_ident array in the ELF program header the required ABI version. # This is not a bitmask. The maximum ABI version required must be # encoded. # # Adding new features should always happen by appending new lines. Never # add entries in the middle or where they seem "logical". Once a version # is assigned to a feature it must not change again. Since some features # are conditionally added this can only ever be done securely without much # risk is by adding at the end. # # The following lines have one of two formats: # # SYMBOL # With just a symbol on the line this is the name of a feature which # is architecture independent. # # SYMBOL PLATFORM # Using this form architecture (and platform) dependent features can be # specified. The PLATFORM name can use the wildcards available in # the Bourne shell's case expression. # # Note that the same symbol can be used using different platform triples. # They don't have to be in the same order relative to other entries. This # can happen if the feature is implemented for different architectures # at different times. # # This file is parsed by a script which produces a header file containing # a single enum definition. An extra symbol is added as entry zero to # specify the default ABI with number 0 and an artificial last entry is # added to allow computing the maximum ABI version for the platform. # # Feature Name Configuration # ------------ ------------- # # Unique symbol definitions for C++. # Architecture independent, all ELF targets (== all targets) UNIQUE # # Indirect PLT relocations. Architecture dependent. IFUNC x86_64-*-linux* IFUNC i?86-*-linux* IFUNC powerpc64-*-linux* IFUNC powerpc-*-linux* IFUNC sparc64-*-linux* IFUNC sparc-*-linux*
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
You can’t perform that action at this time.