New comment by ev-ermakov on void-packages repository https://github.com/void-linux/void-packages/pull/22359#issuecomment-708185992 Comment: @travankor I compiled everything from scratch (without using xbps-src), following the [installation instructions](https://guix.gnu.org/manual/en/html_node/Requirements.html). Here's the patch: ```diff --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -262,6 +262,7 @@ "Return the name of Glibc's dynamic linker for SYSTEM." ;; See the 'SYSDEP_KNOWN_INTERPRETER_NAMES' cpp macro in libc. (cond ((string=? system "x86_64-linux") "/lib/ld-linux-x86-64.so.2") + ((string=? system "x86_64-linux-musl") "/lib/ld-musl-x86_64.so.1") ((string=? system "i686-linux") "/lib/ld-linux.so.2") ((string=? system "armhf-linux") "/lib/ld-linux-armhf.so.3") ((string=? system "mips64el-linux") "/lib/ld.so.1") ``` But, of course, this is not enough: ![screenshot](https://user-images.githubusercontent.com/22344340/95950897-e4f68d80-0de4-11eb-8dab-e92db6ce0c42.png) -- Required packages: ``` bytestructures-1.0.7.tar.gz guile-git-0.3.0.tar.gz guile-ssh-0.13.1.tar.gz guile-3.0.4.tar.gz guile-json-3.5.0.tar.gz guix-1.1.0.tar.gz guile-gcrypt-0.3.0.tar.gz guile-sqlite3-0.1.3.tar.gz ```