From 630a00374600bffedbabb8ef623e16bed52f21c4 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 10 May 2020 18:16:23 +0300 Subject: Add AVR to cpu families. Closes #7085. --- docs/markdown/Reference-tables.md | 1 + mesonbuild/envconfig.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index dfae339..c42d608 100644 --- a/docs/markdown/Reference-tables.md +++ b/docs/markdown/Reference-tables.md @@ -81,6 +81,7 @@ set in the cross file. | alpha | DEC Alpha processor | | arc | 32 bit ARC processor | | arm | 32 bit ARM processor | +| avr | Atmel AVR processor | | e2k | MCST Elbrus processor | | c2000 | 32 bit C2000 processor | | ia64 | Itanium processor | diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index a4af39a..b74be35 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -40,6 +40,7 @@ known_cpu_families = ( 'alpha', 'arc', 'arm', + 'avr', 'c2000', 'e2k', 'ia64', -- cgit v1.1