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: 968b20e2c740
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d97e0ba8fe96
Choose a head ref
  • 6 commits
  • 2 files changed
  • 3 contributors

Commits on Nov 1, 2018

  1. Update parse.nix

    vincrusher authored Nov 1, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    f9aaf71 View commit details
  2. CPU Fix

    Co-Authored-By: vincrusher <vincentweisner@icloud.com>
    Mic92 and vincrusher authored Nov 1, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    aa75ebd View commit details

Commits on Nov 2, 2018

  1. Update parse.nix

    vincrusher authored Nov 2, 2018
    Copy the full SHA
    0607add View commit details

Commits on Nov 9, 2018

  1. lib/system: Added Embedded Platforms for the CPUs

    I added some embedded platforms for the CPUs I added to the parse.nix file.
    These could be used as new platforms for the added CPUs.
    vincrusher authored Nov 9, 2018
    Copy the full SHA
    84810a1 View commit details
  2. Copy the full SHA
    e7d2ea1 View commit details

Commits on Nov 12, 2018

  1. Merge pull request #49588 from vincrusher/master

    lib/system: More Types of CPUs Added
    matthewbauer authored Nov 12, 2018
    Copy the full SHA
    d97e0ba View commit details
Showing with 19 additions and 0 deletions.
  1. +15 −0 lib/systems/examples.nix
  2. +4 −0 lib/systems/parse.nix
15 changes: 15 additions & 0 deletions lib/systems/examples.nix
Original file line number Diff line number Diff line change
@@ -112,11 +112,26 @@ rec {
config = "aarch64-none-elf";
libc = "newlib";
};

aarch64be-embedded = {
config = "aarch64_be-none-elf";
libc = "newlib";
};

ppc-embedded = {
config = "powerpc-none-eabi";
libc = "newlib";
};

ppcle-embedded = {
config = "powerpcle-none-eabi";
libc = "newlib";
};

alpha-embedded = {
config = "alpha-elf";
libc = "newlib";
};

i686-embedded = {
config = "i686-elf";
4 changes: 4 additions & 0 deletions lib/systems/parse.nix
Original file line number Diff line number Diff line change
@@ -80,6 +80,7 @@ rec {
armv8r = { bits = 32; significantByte = littleEndian; family = "arm"; version = "8"; };
armv8m = { bits = 32; significantByte = littleEndian; family = "arm"; version = "8"; };
aarch64 = { bits = 64; significantByte = littleEndian; family = "arm"; version = "8"; };
aarch64_be = { bits = 64; significantByte = bigEndian; family = "arm"; version = "8"; };

i686 = { bits = 32; significantByte = littleEndian; family = "x86"; };
x86_64 = { bits = 64; significantByte = littleEndian; family = "x86"; };
@@ -92,6 +93,7 @@ rec {
powerpc = { bits = 32; significantByte = bigEndian; family = "power"; };
powerpc64 = { bits = 64; significantByte = bigEndian; family = "power"; };
powerpc64le = { bits = 64; significantByte = littleEndian; family = "power"; };
powerpcle = { bits = 32; significantByte = littleEndian; family = "power"; };

riscv32 = { bits = 32; significantByte = littleEndian; family = "riscv"; };
riscv64 = { bits = 64; significantByte = littleEndian; family = "riscv"; };
@@ -101,6 +103,8 @@ rec {

wasm32 = { bits = 32; significantByte = littleEndian; family = "wasm"; };
wasm64 = { bits = 64; significantByte = littleEndian; family = "wasm"; };

alpha = { bits = 64; significantByte = littleEndian; family = "alpha"; };

avr = { bits = 8; family = "avr"; };
};