Blame libc-abis

Packit 6c4009
# Definition of features which introduce new libc ABI versions.  This
Packit 6c4009
# file is used to create a header file with definitions for the various
Packit 6c4009
# versions.  The static linker will encode in the EI_ABIVERSION field in
Packit 6c4009
# the e_ident array in the ELF program header the required ABI version.
Packit 6c4009
# This is not a bitmask.  The maximum ABI version required must be
Packit 6c4009
# encoded.
Packit 6c4009
#
Packit 6c4009
# Adding new features should always happen by appending new lines.  Never
Packit 6c4009
# add entries in the middle or where they seem "logical".  Once a version
Packit 6c4009
# is assigned to a feature it must not change again.  Since some features
Packit 6c4009
# are conditionally added this can only ever be done securely without much
Packit 6c4009
# risk is by adding at the end.
Packit 6c4009
#
Packit 6c4009
# The following lines have one of two formats:
Packit 6c4009
#
Packit 6c4009
#	SYMBOL
Packit 6c4009
# With just a symbol on the line this is the name of a feature which
Packit 6c4009
# is architecture independent.
Packit 6c4009
#
Packit 6c4009
#	SYMBOL	PLATFORM
Packit 6c4009
# Using this form architecture (and platform) dependent features can be
Packit 6c4009
# specified.  The PLATFORM name can use the wildcards available in
Packit 6c4009
# the Bourne shell's case expression.
Packit 6c4009
#
Packit 6c4009
# Note that the same symbol can be used using different platform triples.
Packit 6c4009
# They don't have to be in the same order relative to other entries.  This
Packit 6c4009
# can happen if the feature is implemented for different architectures
Packit 6c4009
# at different times.
Packit 6c4009
#
Packit 6c4009
# This file is parsed by a script which produces a header file containing
Packit 6c4009
# a single enum definition.  An extra symbol is added as entry zero to
Packit 6c4009
# specify the default ABI with number 0 and an artificial last entry is
Packit 6c4009
# added to allow computing the maximum ABI version for the platform.
Packit 6c4009
#
Packit 6c4009
# Feature Name	Configuration
Packit 6c4009
# ------------	-------------
Packit 6c4009
#
Packit 6c4009
# Unique symbol definitions for C++.
Packit 6c4009
# Architecture independent, all ELF targets (== all targets)
Packit 6c4009
UNIQUE
Packit 6c4009
#
Packit 6c4009
# Indirect PLT relocations.  Architecture dependent.
Packit 6c4009
IFUNC		x86_64-*-linux*
Packit 6c4009
IFUNC		i?86-*-linux*
Packit 6c4009
IFUNC		powerpc64-*-linux*
Packit 6c4009
IFUNC		powerpc-*-linux*
Packit 6c4009
IFUNC		sparc64-*-linux*
Packit 6c4009
IFUNC		sparc-*-linux*
Packit 6c4009
# Absolute (SHN_ABS) symbols working correctly.
Packit 6c4009
ABSOLUTE