meson: add armv5tel cpu family

This commit is contained in:
Andrew Childs 2019-12-27 15:12:13 +09:00 committed by Bjørn Forsman
parent de0e71780c
commit 63c9e4ee9d

View File

@ -10,11 +10,12 @@
let let
# See https://mesonbuild.com/Reference-tables.html#cpu-families # See https://mesonbuild.com/Reference-tables.html#cpu-families
cpuFamilies = { cpuFamilies = {
aarch64 = "aarch64"; aarch64 = "aarch64";
armv6l = "arm"; armv5tel = "arm";
armv7l = "arm"; armv6l = "arm";
i686 = "x86"; armv7l = "arm";
x86_64 = "x86_64"; i686 = "x86";
x86_64 = "x86_64";
}; };
in in
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {