Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mesonbuild: Recognise risc-v architecture #3889

Merged
merged 1 commit into from Jul 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/markdown/Reference-tables.md
Expand Up @@ -53,6 +53,8 @@ set in the cross file.
| ppc64 | 64 bit PPC processors |
| e2k | MCST Elbrus processor |
| parisc | HP PA-RISC processor |
| riscv32 | 32 bit RISC-V Open ISA|
| riscv64 | 64 bit RISC-V Open ISA|
| sparc64 | SPARC v9 processor |

Any cpu family not listed in the above list is not guaranteed to
Expand Down
2 changes: 2 additions & 0 deletions mesonbuild/environment.py
Expand Up @@ -84,6 +84,8 @@
'parisc',
'ppc',
'ppc64',
'riscv32',
'riscv64',
'sparc64',
'x86',
'x86_64'
Expand Down