AOSP - Error: Overriding commands for target (...), previously defined at (...)
AOSP - Error: Overriding commands for target (...), previously defined at (...)
我正在尝试为不受支持的设备构建 AOSP (surnia - Moto E2 2015 LTE)
。
我之前解决了很多问题,但现在我遇到了一个无法避免的问题。我看到很多人都有这个问题,但他们只是警告...
我能做什么?或者你能帮我找到 surnia 设备树(但对于股票 AOSP)吗?
[100% 441/441] writing build rules ...
FAILED:
build/make/core/Makefile:28: error: overriding commands for target `out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so', previously defined at build/make/core/base_rules.mk:480
19:07:53 ckati failed with: exit status 1
#### failed to build some targets (01:22 (mm:ss)) ####
我最近遇到了类似的错误。这是因为 PRODUCT_COPY_FILES
中的重复条目都试图将某些文件复制到同一目标 out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so
。这将导致错误。
对我来说,重复条目在以下文件中:
<AOSP_ROOT>/vendor/google_devices/<DEVICE_CODENAME>/<DEVICE_CODENAME>-vendor-blobs.mk
对于你,我想你应该找surnia-vendor-blobs.mk
。打开此文件并找到目标为 out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so
的 PRODUCT_COPY_FILES
条目,然后您可以将其删除以解决错误。
这是一种解决方法,遗憾的是我无法找出根本问题所在。
顺便说一下,欢迎 Peter 加入 Stack Overflow!
在你的 BoardConfig.mk 中添加这个标志“BUILD_BROKEN_DUP_RULES := true” 这对我有用
我正在尝试为不受支持的设备构建 AOSP (surnia - Moto E2 2015 LTE)
。
我之前解决了很多问题,但现在我遇到了一个无法避免的问题。我看到很多人都有这个问题,但他们只是警告...
我能做什么?或者你能帮我找到 surnia 设备树(但对于股票 AOSP)吗?
[100% 441/441] writing build rules ...
FAILED:
build/make/core/Makefile:28: error: overriding commands for target `out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so', previously defined at build/make/core/base_rules.mk:480
19:07:53 ckati failed with: exit status 1
#### failed to build some targets (01:22 (mm:ss)) ####
我最近遇到了类似的错误。这是因为 PRODUCT_COPY_FILES
中的重复条目都试图将某些文件复制到同一目标 out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so
。这将导致错误。
对我来说,重复条目在以下文件中:
<AOSP_ROOT>/vendor/google_devices/<DEVICE_CODENAME>/<DEVICE_CODENAME>-vendor-blobs.mk
对于你,我想你应该找surnia-vendor-blobs.mk
。打开此文件并找到目标为 out/target/product/surnia/system/vendor/lib/libHevcSwDecoder.so
的 PRODUCT_COPY_FILES
条目,然后您可以将其删除以解决错误。
这是一种解决方法,遗憾的是我无法找出根本问题所在。
顺便说一下,欢迎 Peter 加入 Stack Overflow!
在你的 BoardConfig.mk 中添加这个标志“BUILD_BROKEN_DUP_RULES := true” 这对我有用