diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-05-10 18:16:23 +0300 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-05-11 14:56:56 -0700 |
| commit | 630a00374600bffedbabb8ef623e16bed52f21c4 (patch) | |
| tree | 872e089ee1ac3b54cfdc0f7859f3cf3e468dc0bf | |
| parent | d7e20b1543499b516f424ac3a831f402a884714d (diff) | |
| download | meson-630a00374600bffedbabb8ef623e16bed52f21c4.tar.gz | |
Add AVR to cpu families. Closes #7085.
| -rw-r--r-- | docs/markdown/Reference-tables.md | 1 | ||||
| -rw-r--r-- | mesonbuild/envconfig.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md index dfae33902..c42d608ca 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 a4af39abc..b74be3521 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -40,6 +40,7 @@ known_cpu_families = ( 'alpha', 'arc', 'arm', + 'avr', 'c2000', 'e2k', 'ia64', |
