forked from mirrors/nixpkgs
Fix alpha-embedded Target on Hydra (#55725)
This commit is contained in:
parent
4141fdaa3f
commit
a547a9b554
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue