diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2016-04-15 16:33:55 +0300 |
---|---|---|
committer | Manolis Ragkousis <manolis837@gmail.com> | 2016-04-16 18:10:31 +0300 |
commit | 19c444f4031fde122c0f816dea2e5af6831ff389 (patch) | |
tree | 2b0e33548a34179d7c6736cf05056f9379706097 /gnu/packages | |
parent | 3a25c63120ccc0176eab8b7e88aa1dfe25acd163 (diff) | |
download | guix-19c444f4031fde122c0f816dea2e5af6831ff389.tar guix-19c444f4031fde122c0f816dea2e5af6831ff389.tar.gz |
gnu: bootstrap: Add the location of ld.so on arm64.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add the dynamic
linker for aarch64-linux.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bootstrap.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index f5bf069c20..1ada01c904 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -166,6 +166,7 @@ successful, or false to signal an error." ((string=? system "mips64el-linux") "/lib/ld.so.1") ((string=? system "i586-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 ;; here just so we can keep going. |