小编use*_*764的帖子

Yocto错误:"非调试包包含.debug目录"与yocto配方

我正在尝试构建一个自定义的yocto配方,它涉及编译一个小的C程序.在构建期间 -

$ bitbake -f interface-configuration
...
ERROR: QA Issue: non debug package contains .debug directory: interface-configuration path /work/cortexa9hf-vfp-poky-linux-gnueabi/interface-configuration/0.1-r0/packages-split/interface-configuration/etc/interfaces/bin/.debug/set
ERROR: QA run found fatal errors. Please consider fixing them.
ERROR: Function failed: do_package_qa
ERROR: Logfile of failure stored in: /home/git/poky/build-atmel/tmp/work/cortexa9hf-vfp-poky-linux-gnueabi/interface-configuration/0.1-r0/temp/log.do_package.28986
ERROR: Task 10 (/home/git/poky/meta-atmel/recipes-intelli/interface-configuration/interface-configuration_0.1.bb, do_package) failed with exit code '1'
Run Code Online (Sandbox Code Playgroud)

我想知道这里是否有人知道如何禁用调试信息或删除QA检查.到目前为止,谷歌搜索错误已经证明毫无结果.

干杯

使用interface-configuration.bb进行更新

DESCRIPTION = "Interface configuration files and tools"
SECTION = "examples"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
SRC_URI = "file://interface-configuration-0.1.tar.gz"

do_compile() {
    install -vd ${D}/
    ${CC} -g0 set.c …
Run Code Online (Sandbox Code Playgroud)

openembedded

13
推荐指数
2
解决办法
1万
查看次数

标签 统计

openembedded ×1