lib: Add isPowerPC predicate, and fix family name

This commit is contained in:
John Ericson
2017-07-09 15:12:32 -04:00
parent 50831d543d
commit 02464668c0
2 changed files with 2 additions and 1 deletions

View File

@@ -44,7 +44,7 @@ rec {
i686 = { bits = 32; significantByte = littleEndian; family = "x86"; };
x86_64 = { bits = 64; significantByte = littleEndian; family = "x86"; };
mips64el = { bits = 32; significantByte = littleEndian; family = "mips"; };
powerpc = { bits = 32; significantByte = bigEndian; family = "powerpc"; };
powerpc = { bits = 32; significantByte = bigEndian; family = "power"; };
};
isVendor = isType "vendor";