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
libhugetlbfs provides an ld wrapper to provide the hugepage-backed text/data/bss sections feature. This wrapper looks for the underlying ld to use by calling which -a ld if the LD environment variable is not set. When using the libhugetlbfs provided by AT, this ends up using the system's ld (see the line setting LD below) instead of AT's:
I hit this error while using AT's gcc with -B ${AT_DIR}/share/libhugetlbfs -Wl,--hugetlbfs-align. It ended up trying to load linker plugins from AT (containing glibc 2.33 symbols) using the system's linker, causing a crash.
The text was updated successfully, but these errors were encountered:
libhugetlbfs provides an
ld
wrapper to provide the hugepage-backed text/data/bss sections feature. This wrapper looks for the underlyingld
to use by callingwhich -a ld
if theLD
environment variable is not set. When using the libhugetlbfs provided by AT, this ends up using the system'sld
(see the line settingLD
below) instead of AT's:I hit this error while using AT's gcc with
-B ${AT_DIR}/share/libhugetlbfs -Wl,--hugetlbfs-align
. It ended up trying to load linker plugins from AT (containing glibc 2.33 symbols) using the system's linker, causing a crash.The text was updated successfully, but these errors were encountered: