> Maybe ld.so instead of ld-linux? You're right:
# strings
/nix/store/qn9m4cjncna9mcac98fynialsv2l28jm-glibc-intermediate-2.17/bin/sh |
grep ld.so
/nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-glibc-2.13/lib/ld.so.1
How can I fix this?
> (Remember to add that to ‘glibc-dynamic-linker’ eventually.)
Yes, I've already adjusted 'bootstrap.scm':
(define (glibc-dynamic-linker system)
"Return the name of Glibc's dynamic linker for SYSTEM."
(cond ((string=? system "x86_64-linux") "/lib/ld-linux-x86-64.so.2")
((string=? system "i686-linux") "/lib/ld-linux.so.2")
((string=? system "mips64el-linux") "/lib/ld.so.1")
(else (error "dynamic linker name not known for this system"
system))))
Nikita
pgpCfEDnUBJd8.pgp
Description: PGP signature
