diff options
| -rwxr-xr-x | tools/buildbot-build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index fb1a51b142..897f48d0a2 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -120,6 +120,11 @@ implementation_libs=( "libvndksupport" ) +# riscv64 has a newer version of libbinder which depends on libapexsupport. +if [[ $TARGET_ARCH = "riscv64" ]]; then + implementation_libs+=("libapexsupport") # Needed by "libbinder". +fi + if [ -d frameworks/base ]; then # In full manifest branches, build the implementation libraries from source # instead of using prebuilts. |