Skip to content

Commit

Permalink
Merge pull request #170737 from amjoseph-nixpkgs/fix-mips32-detection
Browse files Browse the repository at this point in the history
lib/systems/platforms.nix: fix broken mips32 detection
  • Loading branch information
Artturin authored Nov 21, 2022
2 parents dc1f0bb + a05ed98 commit 57d498f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/systems/platforms.nix
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ rec {

else if platform.isRiscV then riscv-multiplatform

else if platform.parsed.cpu == lib.systems.parse.cpuTypes.mipsel then fuloong2f_n32
else if platform.parsed.cpu == lib.systems.parse.cpuTypes.mipsel then (import ./examples.nix { inherit lib; }).mipsel-linux-gnu

else if platform.parsed.cpu == lib.systems.parse.cpuTypes.powerpc64le then powernv

Expand Down

0 comments on commit 57d498f

Please sign in to comment.