Fix alpha-embedded Target on Hydra (#55725)

This commit is contained in:
Vincent Weisner 2019-02-19 22:36:00 -05:00 committed by Matthew Bauer
parent 4141fdaa3f
commit a547a9b554

View file

@ -187,6 +187,7 @@ stdenv.mkDerivation {
else if targetPlatform.isPower then if targetPlatform.isBigEndian then "ppc" else "lppc"
else if targetPlatform.isSparc then "sparc"
else if targetPlatform.isAvr then "avr"
else if targetPlatform.isAlpha then "alpha"
else throw "unknown emulation for platform: " + targetPlatform.config;
in targetPlatform.platform.bfdEmulation or (fmt + sep + arch);