diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-20 15:43:22 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-20 15:43:59 +0200 |
commit | 6ef6246cfc3d79545ef1c30e925088b9c48aa2df (patch) | |
tree | 374227b8515146885efd620d9cd64e5f93f63664 /build-aux/hydra | |
parent | dc0322b51111d12e1d97e2cc456100c44dd31bb6 (diff) | |
download | patches-6ef6246cfc3d79545ef1c30e925088b9c48aa2df.tar patches-6ef6246cfc3d79545ef1c30e925088b9c48aa2df.tar.gz |
hydra: Add "arm-linux-gnueabihf" as a cross-compilation target.
* build-aux/hydra/gnu-system.scm (%cross-targets): Add
"arm-linux-gnueabihf".
Diffstat (limited to 'build-aux/hydra')
-rw-r--r-- | build-aux/hydra/gnu-system.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index a84cdebbad..26c7b3ca45 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -122,7 +122,8 @@ SYSTEM." (define %cross-targets '("mips64el-linux-gnu" - "mips64el-linux-gnuabi64")) + "mips64el-linux-gnuabi64" + "arm-linux-gnueabihf")) (define (demo-os) "Return the \"demo\" 'operating-system' structure." |