[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27018: [PATCH 0/5] Cross-compiler fixes
From: |
Ricardo Wurmus |
Subject: |
bug#27018: [PATCH 0/5] Cross-compiler fixes |
Date: |
Mon, 22 May 2017 15:55:31 +0200 |
Hi Guix,
my goal here was to get a working C++ cross-compiler for arm-none-eabi (for
the Axoloti audio board). While doing this I remembered that
"gcc-arm-none-eabi-4.9" was using "%xgcc" (which happens to be gcc-5) instead
of "gcc-4.9" because of the way that "cross-gcc" works.
The first few patches change "cross-gcc" and its users such that a xgcc
argument can be supplied (it defaults to %xgcc). With that out of the way I
built libstdc++ for arm-none-eabi and added it to the arm-none-eabi-toolchain.
I also changed the toolchain package to present the union of all inputs at the
output. That makes it much nicer for other packages to use the toolchain as
an input, because it actually contains files.
I have already successfully built the Axoloti firmware with the new toolchain,
and I'm preparing a patch set to finally add it (and the Java patcher UI) to
Guix proper.
Ricardo Wurmus (5):
gnu: Allow overriding of xgcc package in cross-gcc.
gnu: avr-gcc-4.9: Use gcc-4.9 as base compiler.
gnu: Add libstdc++-arm-none-eabi.
gnu: arm-none-eabi-toolchain: Provide union of all inputs at the
output.
gnu: arm-none-eabi-toolchain: Include libstdc++.
gnu/packages/avr.scm | 4 ++--
gnu/packages/cross-base.scm | 28 ++++++++++++++++------------
gnu/packages/embedded.scm | 43 +++++++++++++++++++++++++++++++++++++++----
3 files changed, 57 insertions(+), 18 deletions(-)
--
2.12.2
- bug#27018: [PATCH 0/5] Cross-compiler fixes,
Ricardo Wurmus <=
- bug#27018: [PATCH 1/5] gnu: Allow overriding of xgcc package in cross-gcc., Ricardo Wurmus, 2017/05/22
- bug#27018: [PATCH 4/5] gnu: arm-none-eabi-toolchain: Provide union of all inputs at the output., Ricardo Wurmus, 2017/05/22
- bug#27018: [PATCH 5/5] gnu: arm-none-eabi-toolchain: Include libstdc++., Ricardo Wurmus, 2017/05/22
- bug#27018: [PATCH 3/5] gnu: Add libstdc++-arm-none-eabi., Ricardo Wurmus, 2017/05/22
- bug#27018: [PATCH 2/5] gnu: avr-gcc-4.9: Use gcc-4.9 as base compiler., Ricardo Wurmus, 2017/05/22
- bug#27018: [PATCH 1/5] gnu: Allow overriding of xgcc package in cross-gcc., Danny Milosavljevic, 2017/05/24