Skip to content

Commit

Permalink
[riscv64][android] support 64-bit builds on riscv64
Browse files Browse the repository at this point in the history
For arch riscv, android supports riscv64 only.
So, only riscv64 is added to be supported.

co-authors: McKnight22 <[email protected]>
            Wang Chen <[email protected]>

Bug: angleproject:8165
Change-Id: Iaa732ece963e82abeb7ae517eae3a26e1314f56c
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4530628
Reviewed-by: Cody Northrop <[email protected]>
Commit-Queue: Cody Northrop <[email protected]>
(cherry picked from commit 9de2cfb)
Signed-off-by: Wang Chen <[email protected]>
  • Loading branch information
McKnight22 authored and unicornx committed Jun 1, 2023
1 parent 1b9e5f8 commit 21e7c6c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ The Khronos Group, Inc.
Numfum GmbH
Yandex LLC
Rive
Institute of Software, Chinese Academy of Sciences

Jacek Caban
Mark Callow
Expand Down Expand Up @@ -79,3 +80,4 @@ SeongHwan Park
Xiaopeng Li
Akihiko Odaki
Ho Cheung
Tao Wang
3 changes: 3 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -232,3 +232,6 @@ Yandex LLC

Rive
Chris Dalton

Institute of Software, Chinese Academy of Sciences
Wang Chen
3 changes: 2 additions & 1 deletion gni/angle.gni
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ declare_args() {

if (current_cpu == "arm64" || current_cpu == "x64" ||
current_cpu == "mips64el" || current_cpu == "s390x" ||
current_cpu == "ppc64" || current_cpu == "loong64") {
current_cpu == "ppc64" || current_cpu == "loong64" ||
current_cpu == "riscv64") {
angle_64bit_current_cpu = true
} else if (current_cpu == "arm" || current_cpu == "x86" ||
current_cpu == "mipsel" || current_cpu == "s390" ||
Expand Down

0 comments on commit 21e7c6c

Please sign in to comment.