Hi,
I need to maintain for my day job some code that must work on an old 32bit platform running a kernel not supported anymore by glibc.
I’m trying to cross compile to musl32 and check if it works with the following command:
nix-build channel:nixos-unstable -A pkgsCross.musl32.zlib
however it seems some problem exists with the __stack_chk_fail_local
since the following error:
hidden symbol `__stack_chk_fail_local' isn't defined
can be found in the build logs of some notable package: nix
(via aws-checksums
), zlib
and probably others.
Can someone point me in the right direction to solve this problem?
Thanks