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
#4 restructured the containerfile and moved the gcc sanity check before the import of native binaries. Therefore, the sanity check became ineffective as it now only checks the non native optimised versions.
In fact this change has already hidden a bug causing gcc to segfault when building amd64 targets on an aarch64 host. (the bug is likely caused by some updates to gcc resulting in a binary layout that patchelf does not handle correctly when replacing needed libs)
we should:
fix the containerfile to perform gcc sanity checks after importing native accelerated executables
investigate and fix the segfault in the patched gcc
The text was updated successfully, but these errors were encountered:
#4 restructured the containerfile and moved the
gcc
sanity check before the import of native binaries. Therefore, the sanity check became ineffective as it now only checks the non native optimised versions.In fact this change has already hidden a bug causing gcc to segfault when building amd64 targets on an aarch64 host. (the bug is likely caused by some updates to gcc resulting in a binary layout that
patchelf
does not handle correctly when replacing needed libs)we should:
The text was updated successfully, but these errors were encountered: