gcc-4.8: Enable Darwin and FreeBSD
This commit is contained in:
parent
357a789366
commit
f5773e1f02
|
@ -509,7 +509,10 @@ stdenv.mkDerivation ({
|
||||||
# Volunteers needed for the {Cyg,Dar}win ports of *PPL.
|
# Volunteers needed for the {Cyg,Dar}win ports of *PPL.
|
||||||
# gnatboot is not available out of linux platforms, so we disable the darwin build
|
# gnatboot is not available out of linux platforms, so we disable the darwin build
|
||||||
# for the gnat (ada compiler).
|
# for the gnat (ada compiler).
|
||||||
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false && libelf == null) [ "i686-darwin" ];
|
platforms =
|
||||||
|
stdenv.lib.platforms.linux ++
|
||||||
|
stdenv.lib.platforms.freebsd ++
|
||||||
|
optionals (langAda == false) stdenv.lib.platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue