Set ALLOW_MISSING_DEPENDENCIES=true in generic_riscv64/BoardConfig.mk

Building for riscv64 without ALLOW_MISSING_DEPENDENCIES=true fails
on prebuilt modules that are missing riscv64 files.  Set
ALLOW_MISSING_DEPENDENCIES=true in BoardConfig.mk for now to avoid
always having to set it on the command line.

Test: lunch aosp_riscv64-userdebug && m ndk_sysroot
Change-Id: I6b7dcf684b59d073cb6e257717946d551aefdb44
This commit is contained in:
Colin Cross
2022-10-20 14:04:21 -07:00
parent ec65b76217
commit a098e96018

View File

@@ -23,3 +23,6 @@ TARGET_CPU_ABI := riscv64
TARGET_DYNAMIC_64_32_MEDIASERVER := true
include build/make/target/board/BoardConfigGsiCommon.mk
# Temporary hack while prebuilt modules are missing riscv64.
ALLOW_MISSING_DEPENDENCIES := true