mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 01:21:06 +00:00
8d997d2253
__fentry__ symbol is currently not defined for other architectures. Attempts to introduce it cause abicheck to fail, because it will be available since 2.29 earliest, and not 2.13, which is the case for Intel. With the new code, abicheck passes for i686-linux-gnu, x86_64-linux-gnu and x86_64-linux-gnu32 triples. ChangeLog: * stdlib/Versions: Remove __fentry__. * sysdeps/i386/Versions: Add __fentry__. * sysdeps/x86_64/Versions: Add __fentry__.
16 lines
219 B
Plaintext
16 lines
219 B
Plaintext
libc {
|
|
GLIBC_2.14 {
|
|
memcpy;
|
|
}
|
|
GLIBC_2.13 {
|
|
__fentry__;
|
|
}
|
|
}
|
|
libm {
|
|
GLIBC_2.1 {
|
|
# A generic bug got this omitted from other configurations' version
|
|
# sets, but we always had it.
|
|
exp2l;
|
|
}
|
|
}
|