gcc: Support FreeBSD

This commit is contained in:
Eelco Dolstra 2013-11-06 10:41:02 +01:00
parent 5098d53db1
commit 77dc219127

View file

@ -462,7 +462,10 @@ stdenv.mkDerivation ({
# Volunteers needed for the {Cyg,Dar}win ports of *PPL.
# gnatboot is not available out of linux platforms, so we disable the darwin build
# for the gnat (ada compiler).
platforms = stdenv.lib.platforms.linux ++ optionals (langAda == false) stdenv.lib.platforms.darwin;
platforms =
stdenv.lib.platforms.linux ++
stdenv.lib.platforms.freebsd ++
optionals (langAda == false) stdenv.lib.platforms.darwin;
};
}