diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-28 22:24:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-29 00:31:23 +0100 |
commit | 9d3074609a3fb0712e0102dbbb4d7bdabb58d142 (patch) | |
tree | c6c07e697c0d72055db17fd3eb1d6558fa99b665 /gnu/packages/bootstrap.scm | |
parent | fc93e309196ee8009a975b4c0acf712f54581a93 (diff) | |
download | patches-9d3074609a3fb0712e0102dbbb4d7bdabb58d142.tar patches-9d3074609a3fb0712e0102dbbb4d7bdabb58d142.tar.gz |
gnu: Add Xtensa bare-bones cross-compiler.
* gnu/packages/cross-base.scm (xgcc-xtensa): New variable.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for
"xtensa-elf".
Diffstat (limited to 'gnu/packages/bootstrap.scm')
-rw-r--r-- | gnu/packages/bootstrap.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 315e8cf21e..e617093fb3 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -156,6 +156,11 @@ check whether everything is alright." (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") + + ;; XXX: This one is used bare-bones, without a libc, so add a case + ;; here just so we can keep going. + ((string=? system "xtensa-elf") "no-ld.so") + (else (error "dynamic linker name not known for this system" system)))) |