diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-01-20 22:32:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-01-20 22:32:47 +0100 |
commit | 677b30221b5c4413f7d9316ae4009dd393ef8214 (patch) | |
tree | 4679aed83c11cbdbec7dd7d57352a50982de586b /build-aux/hydra | |
parent | 539108e1138dc0a223f109b3feed5511c828b5ce (diff) | |
download | patches-677b30221b5c4413f7d9316ae4009dd393ef8214.tar patches-677b30221b5c4413f7d9316ae4009dd393ef8214.tar.gz |
hydra: Add "i586-pc-gnu" as a cross-compilation target.
* build-aux/hydra/gnu-system.scm (%cross-targets): Add "i586-pc-gnu".
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index f5a37a2ca4..17c224ea4e 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -123,8 +123,9 @@ SYSTEM." '("mips64el-linux-gnu" "mips64el-linux-gnuabi64" "arm-linux-gnueabihf" - "i686-w64-mingw32" - "powerpc-linux-gnu")) + "powerpc-linux-gnu" + "i586-pc-gnu" ;aka. GNU/Hurd + "i686-w64-mingw32")) (define %guixsd-supported-systems '("x86_64-linux" "i686-linux")) |