Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/systems/parse.nix
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,7 @@ rec {
if lib.versionAtLeast (parsed.cpu.version or "0") "6"
then abis.gnueabihf
else abis.gnueabi
else if args.cpu=="mips64el" then abis.gnuabi64 # gnuabin32 is also possible on mips64
else abis.gnu
else abis.unknown;
};
Expand Down
2 changes: 2 additions & 0 deletions lib/systems/platforms.nix
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,8 @@ rec {

else if platform.parsed.cpu == lib.systems.parse.cpuTypes.mipsel then fuloong2f_n32

else if platform.parsed.cpu == lib.systems.parse.cpuTypes.mips64el then (import ./examples.nix { lib = lib; }).mips64el-linux-gnuabi64

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

else pc;
Expand Down