2009-09-23 12:45:02 -07:00
|
|
|
let lists = import ./lists.nix; in
|
|
|
|
|
2009-08-25 01:28:08 -07:00
|
|
|
rec {
|
2009-09-23 12:45:02 -07:00
|
|
|
gnu = linux; /* ++ hurd ++ kfreebsd ++ ... */
|
2010-08-05 11:51:12 -07:00
|
|
|
linux = ["i686-linux" "x86_64-linux" "powerpc-linux" "armv5tel-linux"
|
2012-04-15 16:41:25 -07:00
|
|
|
"armv7l-linux" "mips64el-linux"];
|
2009-11-26 07:03:42 -08:00
|
|
|
darwin = ["i686-darwin" "powerpc-darwin" "x86_64-darwin"];
|
2009-08-27 00:17:57 -07:00
|
|
|
freebsd = ["i686-freebsd" "x86_64-freebsd" "powerpc-freebsd"];
|
2009-10-09 12:42:59 -07:00
|
|
|
openbsd = ["i686-openbsd" "x86_64-openbsd"];
|
2009-10-28 05:25:06 -07:00
|
|
|
netbsd = ["i686-netbsd" "x86_64-netbsd"];
|
2009-08-25 01:28:08 -07:00
|
|
|
cygwin = ["i686-cygwin"];
|
2009-10-09 12:42:59 -07:00
|
|
|
unix = linux ++ darwin ++ freebsd ++ openbsd;
|
|
|
|
all = linux ++ darwin ++ cygwin ++ freebsd ++ openbsd;
|
2012-05-20 13:21:55 -07:00
|
|
|
none = [];
|
2009-08-25 01:28:08 -07:00
|
|
|
allBut = platform: lists.filter (x: platform != x) all;
|
2012-01-18 10:45:00 -08:00
|
|
|
mesaPlatforms = linux;
|
2009-08-25 01:28:08 -07:00
|
|
|
}
|