bintools-wrapper: fix breakage on aarch64, where "isArm" is false

Unintentionally changed in #35247
This commit is contained in:
Will Dietz 2018-02-28 09:42:13 -06:00
parent 4f6b085c5e
commit f14ff86ec9

View File

@ -171,7 +171,7 @@ stdenv.mkDerivation {
else if targetPlatform.isWindows then "pe"
else "elf" + toString targetPlatform.parsed.cpu.bits;
endianPrefix = if targetPlatform.isBigEndian then "big" else "little";
sep = optionalString (targetPlatform.isx86 || targetPlatform.isArm) "-";
sep = optionalString (!targetPlatform.isMips) "-";
arch =
/**/ if targetPlatform.isAarch64 then endianPrefix + "aarch64"
else if targetPlatform.isArm then endianPrefix + "arm"