Add riscv64.

Otherwise we hit an unknown --arch error in ndkstubgen as soon as we try
to build an NDK library (such as libc/libdl/libm, which are the very
first libraries we need to build).

Test: treehugger
Change-Id: Id633248d1fa80eeddfd234301355931bb1309dc3
This commit is contained in:
Elliott Hughes 2022-10-10 15:33:50 +00:00
parent f1e6126cb0
commit 8cddc00b02

View file

@ -41,6 +41,7 @@ Tag = NewType('Tag', str)
ALL_ARCHITECTURES = ( ALL_ARCHITECTURES = (
Arch('arm'), Arch('arm'),
Arch('arm64'), Arch('arm64'),
Arch('riscv64'),
Arch('x86'), Arch('x86'),
Arch('x86_64'), Arch('x86_64'),
) )