Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 40463bfd03e1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0a822bcce487
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 29, 2021

  1. gcc: fix armhf target

    Fixes #96921
    aforemny committed Jan 29, 2021
    Copy the full SHA
    75e2f7c View commit details
  2. Merge pull request #111145 from aforemny/armhf-gcc

    gcc: fix armhf target
    Ericson2314 authored Jan 29, 2021
    Copy the full SHA
    0a822bc View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 lib/systems/examples.nix
6 changes: 6 additions & 0 deletions lib/systems/examples.nix
Original file line number Diff line number Diff line change
@@ -131,6 +131,12 @@ rec {
armhf-embedded = {
config = "arm-none-eabihf";
libc = "newlib";
# GCC8+ does not build without this
# (https://www.mail-archive.com/gcc-bugs@gcc.gnu.org/msg552339.html):
gcc = {
arch = "armv5t";
fpu = "vfp";
};
};

aarch64-embedded = {