netbsd: add aliases for i486 and i586
This commit is contained in:
parent
dbc6affe79
commit
3f2e9c6dcc
1 changed files with 4 additions and 0 deletions
|
@ -67,6 +67,8 @@ in lib.makeScopeWithSplicing
|
|||
HOST_SH = stdenv'.shell;
|
||||
|
||||
MACHINE_ARCH = {
|
||||
i486 = "i386";
|
||||
i586 = "i386";
|
||||
i686 = "i386";
|
||||
}.${stdenv'.hostPlatform.parsed.cpu.name}
|
||||
or stdenv'.hostPlatform.parsed.cpu.name;
|
||||
|
@ -74,6 +76,8 @@ in lib.makeScopeWithSplicing
|
|||
MACHINE = {
|
||||
x86_64 = "amd64";
|
||||
aarch64 = "evbarm64";
|
||||
i486 = "i386";
|
||||
i586 = "i386";
|
||||
i686 = "i386";
|
||||
}.${stdenv'.hostPlatform.parsed.cpu.name}
|
||||
or stdenv'.hostPlatform.parsed.cpu.name;
|
||||
|
|
Loading…
Reference in a new issue