lol

Merge pull request #240825 from r-burns/mips-embedded

lib.platforms.mips{,64}-embedded: init

authored by

Ryan Burns and committed by
GitHub
2964b720 b310289e

+12 -2
+1 -1
lib/systems/doubles.nix
··· 41 41 42 42 # none 43 43 "aarch64_be-none" "aarch64-none" "arm-none" "armv6l-none" "avr-none" "i686-none" 44 - "microblaze-none" "microblazeel-none" "msp430-none" "or1k-none" "m68k-none" 44 + "microblaze-none" "microblazeel-none" "mips-none" "mips64-none" "msp430-none" "or1k-none" "m68k-none" 45 45 "powerpc-none" "powerpcle-none" "riscv32-none" "riscv64-none" "rx-none" 46 46 "s390-none" "s390x-none" "vc4-none" "x86_64-none" 47 47
+10
lib/systems/examples.nix
··· 129 129 libc = "newlib"; 130 130 }; 131 131 132 + mips64-embedded = { 133 + config = "mips64-none-elf"; 134 + libc = "newlib"; 135 + }; 136 + 137 + mips-embedded = { 138 + config = "mips-none-elf"; 139 + libc = "newlib"; 140 + }; 141 + 132 142 loongarch64-linux = { 133 143 config = "loongarch64-unknown-linux-gnu"; 134 144 };
+1 -1
lib/tests/systems.nix
··· 41 41 testarm = mseteq arm [ "armv5tel-linux" "armv6l-linux" "armv6l-netbsd" "armv6l-none" "armv7a-linux" "armv7a-netbsd" "armv7l-linux" "armv7l-netbsd" "arm-none" "armv7a-darwin" ]; 42 42 testarmv7 = mseteq armv7 [ "armv7a-darwin" "armv7a-linux" "armv7l-linux" "armv7a-netbsd" "armv7l-netbsd" ]; 43 43 testi686 = mseteq i686 [ "i686-linux" "i686-freebsd13" "i686-genode" "i686-netbsd" "i686-openbsd" "i686-cygwin" "i686-windows" "i686-none" "i686-darwin" ]; 44 - testmips = mseteq mips [ "mips-linux" "mips64-linux" "mips64el-linux" "mipsel-linux" "mipsel-netbsd" ]; 44 + testmips = mseteq mips [ "mips-none" "mips64-none" "mips-linux" "mips64-linux" "mips64el-linux" "mipsel-linux" "mipsel-netbsd" ]; 45 45 testmmix = mseteq mmix [ "mmix-mmixware" ]; 46 46 testpower = mseteq power [ "powerpc-netbsd" "powerpc-none" "powerpc64-linux" "powerpc64le-linux" "powerpcle-none" ]; 47 47 testriscv = mseteq riscv [ "riscv32-linux" "riscv64-linux" "riscv32-netbsd" "riscv64-netbsd" "riscv32-none" "riscv64-none" ];