2017-05-24 00:04:15 +02:00
|
|
|
# These can be passed to nixpkgs as either the `localSystem` or
|
|
|
|
# `crossSystem`. They are put here for user convenience, but also used by cross
|
|
|
|
# tests and linux cross stdenv building, so handle with care!
|
2017-07-29 02:05:35 +02:00
|
|
|
{ lib }:
|
2018-11-14 06:03:31 +01:00
|
|
|
let
|
|
|
|
platforms = import ./platforms.nix { inherit lib; };
|
|
|
|
|
|
|
|
riscv = bits: {
|
|
|
|
config = "riscv${bits}-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
in
|
2017-05-24 00:04:15 +02:00
|
|
|
|
|
|
|
rec {
|
|
|
|
#
|
|
|
|
# Linux
|
|
|
|
#
|
2018-08-21 21:31:34 +02:00
|
|
|
powernv = {
|
|
|
|
config = "powerpc64le-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
musl-power = {
|
|
|
|
config = "powerpc64le-unknown-linux-musl";
|
|
|
|
};
|
2017-05-24 00:04:15 +02:00
|
|
|
|
2021-03-16 03:22:57 +01:00
|
|
|
ppc64 = {
|
2022-07-25 12:22:41 +02:00
|
|
|
config = "powerpc64-unknown-linux-gnuabielfv2";
|
2021-01-30 04:23:04 +01:00
|
|
|
};
|
|
|
|
ppc64-musl = {
|
|
|
|
config = "powerpc64-unknown-linux-musl";
|
2022-07-25 12:22:41 +02:00
|
|
|
gcc = { abi = "elfv2"; };
|
2021-01-30 04:23:04 +01:00
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
sheevaplug = {
|
2017-05-30 02:12:06 +02:00
|
|
|
config = "armv5tel-unknown-linux-gnueabi";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.sheevaplug;
|
2017-05-24 00:04:15 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
raspberryPi = {
|
2017-05-24 00:04:15 +02:00
|
|
|
config = "armv6l-unknown-linux-gnueabihf";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.raspberrypi;
|
2017-05-24 00:04:15 +02:00
|
|
|
|
2023-07-14 11:18:41 +02:00
|
|
|
bluefield2 = {
|
|
|
|
config = "aarch64-unknown-linux-gnu";
|
|
|
|
} // platforms.bluefield2;
|
|
|
|
|
2020-11-18 03:48:08 +01:00
|
|
|
remarkable1 = {
|
|
|
|
config = "armv7l-unknown-linux-gnueabihf";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.zero-gravitas;
|
2020-11-18 03:48:08 +01:00
|
|
|
|
2020-11-30 08:01:58 +01:00
|
|
|
remarkable2 = {
|
|
|
|
config = "armv7l-unknown-linux-gnueabihf";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.zero-sugar;
|
2020-11-30 08:01:58 +01:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
armv7l-hf-multiplatform = {
|
2018-10-06 06:59:31 +02:00
|
|
|
config = "armv7l-unknown-linux-gnueabihf";
|
2017-05-24 00:04:15 +02:00
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
aarch64-multiplatform = {
|
2017-05-24 00:04:15 +02:00
|
|
|
config = "aarch64-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
armv7a-android-prebuilt = {
|
2018-05-11 23:35:56 +02:00
|
|
|
config = "armv7a-unknown-linux-androideabi";
|
2024-06-13 20:00:43 +02:00
|
|
|
rust.rustcTarget = "armv7-linux-androideabi";
|
2024-07-25 19:09:42 +02:00
|
|
|
androidSdkVersion = "33";
|
|
|
|
androidNdkVersion = "26";
|
2018-05-11 23:35:56 +02:00
|
|
|
useAndroidPrebuilt = true;
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.armv7a-android;
|
2018-05-11 23:35:56 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
aarch64-android-prebuilt = {
|
2017-02-17 06:36:10 +01:00
|
|
|
config = "aarch64-unknown-linux-android";
|
2024-06-13 20:00:43 +02:00
|
|
|
rust.rustcTarget = "aarch64-linux-android";
|
2024-07-25 17:53:17 +02:00
|
|
|
androidSdkVersion = "33";
|
|
|
|
androidNdkVersion = "26";
|
2017-02-17 06:36:10 +01:00
|
|
|
useAndroidPrebuilt = true;
|
|
|
|
};
|
|
|
|
|
2021-05-06 06:15:34 +02:00
|
|
|
aarch64-android = {
|
|
|
|
config = "aarch64-unknown-linux-android";
|
2024-07-25 17:53:17 +02:00
|
|
|
androidSdkVersion = "33";
|
|
|
|
androidNdkVersion = "26";
|
2021-05-06 06:15:34 +02:00
|
|
|
libc = "bionic";
|
|
|
|
useAndroidPrebuilt = false;
|
|
|
|
useLLVM = true;
|
|
|
|
};
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
pogoplug4 = {
|
2017-12-05 20:17:00 +01:00
|
|
|
config = "armv5tel-unknown-linux-gnueabi";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.pogoplug4;
|
2017-05-24 00:04:15 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
ben-nanonote = {
|
2018-05-10 04:40:27 +02:00
|
|
|
config = "mipsel-unknown-linux-uclibc";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.ben_nanonote;
|
2018-05-10 04:40:27 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
fuloongminipc = {
|
2017-12-05 11:27:45 +01:00
|
|
|
config = "mipsel-unknown-linux-gnu";
|
2021-01-23 02:33:55 +01:00
|
|
|
} // platforms.fuloong2f_n32;
|
2017-05-24 00:04:15 +02:00
|
|
|
|
2022-03-11 05:27:46 +01:00
|
|
|
# can execute on 32bit chip
|
2023-05-29 12:55:40 +02:00
|
|
|
mips-linux-gnu = { config = "mips-unknown-linux-gnu"; } // platforms.gcc_mips32r2_o32;
|
|
|
|
mipsel-linux-gnu = { config = "mipsel-unknown-linux-gnu"; } // platforms.gcc_mips32r2_o32;
|
2022-03-11 05:27:46 +01:00
|
|
|
|
|
|
|
# require 64bit chip (for more registers, 64-bit floating point, 64-bit "long long") but use 32bit pointers
|
2023-05-29 12:55:40 +02:00
|
|
|
mips64-linux-gnuabin32 = { config = "mips64-unknown-linux-gnuabin32"; } // platforms.gcc_mips64r2_n32;
|
|
|
|
mips64el-linux-gnuabin32 = { config = "mips64el-unknown-linux-gnuabin32"; } // platforms.gcc_mips64r2_n32;
|
2022-03-11 05:27:46 +01:00
|
|
|
|
|
|
|
# 64bit pointers
|
2023-05-29 12:55:40 +02:00
|
|
|
mips64-linux-gnuabi64 = { config = "mips64-unknown-linux-gnuabi64"; } // platforms.gcc_mips64r2_64;
|
|
|
|
mips64el-linux-gnuabi64 = { config = "mips64el-unknown-linux-gnuabi64"; } // platforms.gcc_mips64r2_64;
|
lib/systems: add mips64el definitions
MIPS has a large space of {architecture,abi,endianness}; this commit
adds all of them to lib/systems/platforms.nix so we can be done with
it.
Currently lib/systems/inspect.nix has a single "isMips" predicate,
which is a bit ambiguous now that we will have both mips32 and mips64
support, with the latter having two ABIs. Let's add four new
predicates (isMips32, isMips64, isMips64n32, and isMips64n64) and
treat the now-ambiguous isMips as deprecated in favor of the
more-specific predicates. These predicates are used mainly for
enabling/disabling target-specific workarounds, and it is extremely
rare that a platform-specific workaround is needed, and both mips32
and mips64 need exactly the same workaround.
The separate predicates (isMips64n32 and isMips64n64) for ABI
distinctions are, unfortunately, useful. Boost's user-scheduled
threading (used by nix) does does not currently supports mips64n32,
which is a very desirable ABI on routers since they rarely have
more than 2**32 bytes of DRAM.
2022-02-21 05:32:52 +01:00
|
|
|
|
2018-02-11 21:20:14 +01:00
|
|
|
muslpi = raspberryPi // {
|
|
|
|
config = "armv6l-unknown-linux-musleabihf";
|
|
|
|
};
|
|
|
|
|
2021-01-23 02:33:55 +01:00
|
|
|
aarch64-multiplatform-musl = {
|
2018-02-11 21:20:14 +01:00
|
|
|
config = "aarch64-unknown-linux-musl";
|
|
|
|
};
|
|
|
|
|
2019-05-05 09:23:12 +02:00
|
|
|
gnu64 = { config = "x86_64-unknown-linux-gnu"; };
|
2023-11-02 11:40:19 +01:00
|
|
|
gnu64_simplekernel = gnu64 // platforms.pc_simplekernel; # see test/cross/default.nix
|
2019-05-05 09:23:12 +02:00
|
|
|
gnu32 = { config = "i686-unknown-linux-gnu"; };
|
|
|
|
|
2018-02-11 21:20:14 +01:00
|
|
|
musl64 = { config = "x86_64-unknown-linux-musl"; };
|
|
|
|
musl32 = { config = "i686-unknown-linux-musl"; };
|
|
|
|
|
2018-02-18 06:09:25 +01:00
|
|
|
riscv64 = riscv "64";
|
|
|
|
riscv32 = riscv "32";
|
|
|
|
|
2019-07-26 01:31:35 +02:00
|
|
|
riscv64-embedded = {
|
|
|
|
config = "riscv64-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
|
|
|
riscv32-embedded = {
|
|
|
|
config = "riscv32-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2023-07-01 02:18:50 +02:00
|
|
|
mips64-embedded = {
|
|
|
|
config = "mips64-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
|
|
|
mips-embedded = {
|
|
|
|
config = "mips-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2023-05-04 08:52:01 +02:00
|
|
|
loongarch64-linux = {
|
|
|
|
config = "loongarch64-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
|
2020-11-04 15:13:06 +01:00
|
|
|
mmix = {
|
|
|
|
config = "mmix-unknown-mmixware";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2022-05-23 02:52:36 +02:00
|
|
|
rx-embedded = {
|
|
|
|
config = "rx-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2019-03-26 03:17:37 +01:00
|
|
|
msp430 = {
|
|
|
|
config = "msp430-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2018-10-15 23:11:20 +02:00
|
|
|
avr = {
|
2018-10-12 22:09:59 +02:00
|
|
|
config = "avr";
|
2018-10-15 23:11:20 +02:00
|
|
|
};
|
|
|
|
|
2019-11-02 16:47:38 +01:00
|
|
|
vc4 = {
|
|
|
|
config = "vc4-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2020-11-09 21:06:44 +01:00
|
|
|
or1k = {
|
|
|
|
config = "or1k-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2021-07-23 20:20:02 +02:00
|
|
|
m68k = {
|
|
|
|
config = "m68k-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
|
2021-07-23 20:20:02 +02:00
|
|
|
s390 = {
|
|
|
|
config = "s390-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
|
2021-09-07 11:10:38 +02:00
|
|
|
s390x = {
|
|
|
|
config = "s390x-unknown-linux-gnu";
|
|
|
|
};
|
|
|
|
|
2018-10-15 23:11:20 +02:00
|
|
|
arm-embedded = {
|
|
|
|
config = "arm-none-eabi";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
2018-12-03 00:47:53 +01:00
|
|
|
armhf-embedded = {
|
|
|
|
config = "arm-none-eabihf";
|
|
|
|
libc = "newlib";
|
2021-01-29 09:59:40 +01:00
|
|
|
# GCC8+ does not build without this
|
|
|
|
# (https://www.mail-archive.com/gcc-bugs@gcc.gnu.org/msg552339.html):
|
|
|
|
gcc = {
|
|
|
|
arch = "armv5t";
|
|
|
|
fpu = "vfp";
|
|
|
|
};
|
2018-12-03 00:47:53 +01:00
|
|
|
};
|
2018-10-15 23:11:20 +02:00
|
|
|
|
|
|
|
aarch64-embedded = {
|
|
|
|
config = "aarch64-none-elf";
|
|
|
|
libc = "newlib";
|
2024-06-13 20:00:43 +02:00
|
|
|
rust.rustcTarget = "aarch64-unknown-none";
|
2018-10-15 23:11:20 +02:00
|
|
|
};
|
2019-01-30 03:01:24 +01:00
|
|
|
|
2018-11-09 15:06:31 +01:00
|
|
|
aarch64be-embedded = {
|
|
|
|
config = "aarch64_be-none-elf";
|
|
|
|
libc = "newlib";
|
2018-11-09 15:08:28 +01:00
|
|
|
};
|
2018-10-15 23:11:20 +02:00
|
|
|
|
|
|
|
ppc-embedded = {
|
|
|
|
config = "powerpc-none-eabi";
|
|
|
|
libc = "newlib";
|
2018-10-12 22:09:59 +02:00
|
|
|
};
|
2019-01-30 03:01:24 +01:00
|
|
|
|
2018-11-09 15:06:31 +01:00
|
|
|
ppcle-embedded = {
|
|
|
|
config = "powerpcle-none-eabi";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
2018-02-18 06:09:25 +01:00
|
|
|
|
2018-10-30 19:46:01 +01:00
|
|
|
i686-embedded = {
|
|
|
|
config = "i686-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
|
|
|
x86_64-embedded = {
|
|
|
|
config = "x86_64-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2024-01-29 23:05:46 +01:00
|
|
|
microblaze-embedded = {
|
|
|
|
config = "microblazeel-none-elf";
|
|
|
|
libc = "newlib";
|
|
|
|
};
|
|
|
|
|
2020-07-21 22:11:36 +02:00
|
|
|
#
|
|
|
|
# Redox
|
|
|
|
#
|
|
|
|
|
|
|
|
x86_64-unknown-redox = {
|
|
|
|
config = "x86_64-unknown-redox";
|
|
|
|
libc = "relibc";
|
|
|
|
};
|
|
|
|
|
2017-05-24 00:04:15 +02:00
|
|
|
#
|
|
|
|
# Darwin
|
|
|
|
#
|
|
|
|
|
|
|
|
iphone64 = {
|
2018-05-01 07:14:58 +02:00
|
|
|
config = "aarch64-apple-ios";
|
|
|
|
# config = "aarch64-apple-darwin14";
|
2021-01-20 05:41:39 +01:00
|
|
|
sdkVer = "14.3";
|
|
|
|
xcodeVer = "12.3";
|
2018-06-26 04:18:23 +02:00
|
|
|
xcodePlatform = "iPhoneOS";
|
2018-05-01 07:14:58 +02:00
|
|
|
useiOSPrebuilt = true;
|
2017-05-24 00:04:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
iphone32 = {
|
2018-05-01 18:57:07 +02:00
|
|
|
config = "armv7a-apple-ios";
|
2018-05-01 07:14:58 +02:00
|
|
|
# config = "arm-apple-darwin10";
|
2021-01-20 05:41:39 +01:00
|
|
|
sdkVer = "14.3";
|
|
|
|
xcodeVer = "12.3";
|
2018-06-26 04:18:23 +02:00
|
|
|
xcodePlatform = "iPhoneOS";
|
2018-05-01 07:14:58 +02:00
|
|
|
useiOSPrebuilt = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
iphone64-simulator = {
|
|
|
|
config = "x86_64-apple-ios";
|
|
|
|
# config = "x86_64-apple-darwin14";
|
2021-01-20 05:41:39 +01:00
|
|
|
sdkVer = "14.3";
|
|
|
|
xcodeVer = "12.3";
|
2018-06-26 04:18:23 +02:00
|
|
|
xcodePlatform = "iPhoneSimulator";
|
2021-04-10 11:11:16 +02:00
|
|
|
darwinPlatform = "ios-simulator";
|
2018-05-01 07:14:58 +02:00
|
|
|
useiOSPrebuilt = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
iphone32-simulator = {
|
|
|
|
config = "i686-apple-ios";
|
|
|
|
# config = "i386-apple-darwin11";
|
2021-01-20 05:41:39 +01:00
|
|
|
sdkVer = "14.3";
|
|
|
|
xcodeVer = "12.3";
|
2018-06-26 04:18:23 +02:00
|
|
|
xcodePlatform = "iPhoneSimulator";
|
2021-04-10 11:11:16 +02:00
|
|
|
darwinPlatform = "ios-simulator";
|
2018-05-01 07:14:58 +02:00
|
|
|
useiOSPrebuilt = true;
|
2017-05-24 00:04:15 +02:00
|
|
|
};
|
|
|
|
|
2021-01-09 14:38:45 +01:00
|
|
|
aarch64-darwin = {
|
|
|
|
config = "aarch64-apple-darwin";
|
|
|
|
xcodePlatform = "MacOSX";
|
|
|
|
platform = {};
|
|
|
|
};
|
|
|
|
|
2021-11-10 20:37:34 +01:00
|
|
|
x86_64-darwin = {
|
|
|
|
config = "x86_64-apple-darwin";
|
|
|
|
xcodePlatform = "MacOSX";
|
|
|
|
platform = {};
|
|
|
|
};
|
|
|
|
|
2017-05-24 00:04:15 +02:00
|
|
|
#
|
|
|
|
# Windows
|
|
|
|
#
|
|
|
|
|
|
|
|
# 32 bit mingw-w64
|
|
|
|
mingw32 = {
|
2019-11-11 02:02:44 +01:00
|
|
|
config = "i686-w64-mingw32";
|
2017-05-24 00:04:15 +02:00
|
|
|
libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
|
|
|
|
};
|
|
|
|
|
|
|
|
# 64 bit mingw-w64
|
|
|
|
mingwW64 = {
|
|
|
|
# That's the triplet they use in the mingw-w64 docs.
|
2019-11-11 02:02:44 +01:00
|
|
|
config = "x86_64-w64-mingw32";
|
2017-05-24 00:04:15 +02:00
|
|
|
libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
|
|
|
|
};
|
2018-07-28 18:29:02 +02:00
|
|
|
|
2023-09-08 08:29:54 +02:00
|
|
|
ucrt64 = {
|
|
|
|
config = "x86_64-w64-mingw32";
|
|
|
|
libc = "ucrt"; # This distinguishes the mingw (non posix) toolchain
|
|
|
|
};
|
|
|
|
|
2018-07-28 18:29:02 +02:00
|
|
|
# BSDs
|
|
|
|
|
2022-10-31 13:35:51 +01:00
|
|
|
x86_64-freebsd = {
|
2024-04-01 15:52:41 +02:00
|
|
|
config = "x86_64-unknown-freebsd";
|
2022-10-31 13:35:51 +01:00
|
|
|
useLLVM = true;
|
|
|
|
};
|
|
|
|
|
2020-05-20 03:57:03 +02:00
|
|
|
x86_64-netbsd = {
|
|
|
|
config = "x86_64-unknown-netbsd";
|
|
|
|
};
|
|
|
|
|
2021-12-09 23:08:40 +01:00
|
|
|
# this is broken and never worked fully
|
2020-05-20 03:57:03 +02:00
|
|
|
x86_64-netbsd-llvm = {
|
2018-07-28 18:29:02 +02:00
|
|
|
config = "x86_64-unknown-netbsd";
|
2020-05-20 03:57:03 +02:00
|
|
|
useLLVM = true;
|
2018-07-28 18:29:02 +02:00
|
|
|
};
|
2019-01-30 03:01:24 +01:00
|
|
|
|
2024-05-16 04:41:09 +02:00
|
|
|
x86_64-openbsd = {
|
|
|
|
config = "x86_64-unknown-openbsd";
|
|
|
|
useLLVM = true;
|
|
|
|
};
|
|
|
|
|
2019-01-30 03:01:24 +01:00
|
|
|
#
|
|
|
|
# WASM
|
|
|
|
#
|
|
|
|
|
|
|
|
wasi32 = {
|
|
|
|
config = "wasm32-unknown-wasi";
|
|
|
|
useLLVM = true;
|
|
|
|
};
|
|
|
|
|
2024-06-14 17:41:23 +02:00
|
|
|
wasm32-unknown-none = {
|
|
|
|
config = "wasm32-unknown-none";
|
|
|
|
rust.rustcTarget = "wasm32-unknown-unknown";
|
|
|
|
useLLVM = true;
|
|
|
|
};
|
|
|
|
|
2019-08-23 18:53:22 +02:00
|
|
|
# Ghcjs
|
|
|
|
ghcjs = {
|
2023-02-19 16:21:57 +01:00
|
|
|
# This triple is special to GHC/Cabal/GHCJS and not recognized by autotools
|
|
|
|
# See: https://gitlab.haskell.org/ghc/ghc/-/commit/6636b670233522f01d002c9b97827d00289dbf5c
|
|
|
|
# https://github.com/ghcjs/ghcjs/issues/53
|
|
|
|
config = "javascript-unknown-ghcjs";
|
2019-08-23 18:53:22 +02:00
|
|
|
};
|
2017-05-24 00:04:15 +02:00
|
|
|
}
|