mirror of
https://sourceware.org/git/glibc.git
synced 2025-09-11 12:10:50 +03:00
Since the GNU2 TLS run-time bug:
https://sourceware.org/bugzilla/show_bug.cgi?id=31372
affects both i386 and x86-64, also add GLIBC_ABI_GNU2_TLS version to i386
to indicate the working GNU2 TLS run-time. For x86-64, the additional
GNU2 TLS run-time bug fix is needed for
https://sourceware.org/bugzilla/show_bug.cgi?id=31501
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Sam James <sam@gentoo.org>
(cherry picked from commit bd4628f3f1
)
16 lines
298 B
Plaintext
16 lines
298 B
Plaintext
ld {
|
|
GLIBC_PRIVATE {
|
|
_dl_x86_get_cpu_features;
|
|
}
|
|
}
|
|
libc {
|
|
GLIBC_2.33 {
|
|
__x86_get_cpuid_feature_leaf;
|
|
}
|
|
GLIBC_ABI_GNU2_TLS {
|
|
# This symbol is used only for empty version map and will be removed
|
|
# by scripts/versions.awk.
|
|
__placeholder_only_for_empty_version_map;
|
|
}
|
|
}
|