bug#29402: Failure to cross-compile GNU Hello for armhf-linux target

2017-11-23 Thread Chris Marusich
l...@gnu.org (Ludovic Courtès) writes:

> The argument to --target must be a GNU triplet, not a Guix “system
> type.”

Ah, I see!  Thank you.  When I tried again using the target you
suggested, it worked.

I have some follow-up questions, so I've sent a a follow-up email to
guix-devel.

-- 
Chris


signature.asc
Description: PGP signature


bug#27217: break up TeXlive for guix

2017-11-23 Thread Matt Wette
Here is a link from macports.  It may be of use.  They have broken down to 
50ish packages.  (I didn't count.)   

https://trac.macports.org/wiki/TeXLivePackages 





bug#29402: Failure to cross-compile GNU Hello for armhf-linux target

2017-11-23 Thread Ludovic Courtès
Hi Chris,

Chris Marusich  skribis:

> I'm trying to build it using the following command, invoked from the
> Guix source tree:
>
>   ./pre-inst-env guix build --no-substitutes --target=armhf-linux hello

[...]

> checking build system type... x86_64-unknown-linux-gnu
> checking host system type... x86_64-unknown-linux-gnu
> checking target system type... Invalid configuration `armhf-linux': machine 
> `armhf' not recognized

The argument to --target must be a GNU triplet, not a Guix “system
type.”

GNU triplets have the form CPU-VENDOR-OS, which often looks like
CPU-KERNEL-OSABI.  In this case, you want

  --target=arm-linux-gnueabihf

HTH!
Ludo’.