gnu: bootstrap: Add the location of ld.so on arm64.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add the dynamic linker for aarch64-linux.
This commit is contained in:
parent
3a25c63120
commit
19c444f403
|
@ -166,6 +166,7 @@ successful, or false to signal an error."
|
||||||
((string=? system "mips64el-linux") "/lib/ld.so.1")
|
((string=? system "mips64el-linux") "/lib/ld.so.1")
|
||||||
((string=? system "i586-gnu") "/lib/ld.so.1")
|
((string=? system "i586-gnu") "/lib/ld.so.1")
|
||||||
((string=? system "i686-gnu") "/lib/ld.so.1")
|
((string=? system "i686-gnu") "/lib/ld.so.1")
|
||||||
|
((string=? system "aarch64-linux") "/lib/ld-linux-aarch64.so.1")
|
||||||
|
|
||||||
;; XXX: This one is used bare-bones, without a libc, so add a case
|
;; XXX: This one is used bare-bones, without a libc, so add a case
|
||||||
;; here just so we can keep going.
|
;; here just so we can keep going.
|
||||||
|
|
Loading…
Reference in New Issue