yocto编译时报错ERROR: Unable to parse /home/wu/3568/yocto/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py Traceback (most recent call last): File "/home/wu/3568/yocto/poky/bitbake/lib/bb/parse/parse_py/ConfHandler.py", line 94, in include_single_file(parentfn='configuration INHERITs', fn='classes/reproducible_build.bbclass', lineno=0, data=<bb.data_smart.DataSmart object at 0x7f4fdcb42048>, error_out='inherit'): if error_out: > raise ParseError("Could not %s file %s" % (error_out, fn), parentfn, lineno) logger.debug2("CONF file '%s' not found", fn) bb.parse.ParseError: ParseError in configuration INHERITs: Could not inherit file classes/reproducible_build.bbclass如何解决
时间: 2024-03-29 07:40:21 浏览: 239
编译通不过的文件
这个错误提示是说在解析配置文件时,无法引入文件 classes/reproducible_build.bbclass。这可能是因为文件不存在或者路径不正确。
你可以检查一下文件 classes/reproducible_build.bbclass 是否存在,如果存在,可以尝试指定正确的路径。你还可以检查一下该文件是否在 Yocto 的配置文件中被正确地引入。如果这些方法都不行,你可以尝试重新下载该文件或者重新构建 Yocto 环境,以确保文件和路径都是正确的。
阅读全文