-
Hi, Loading cache: 100% |############################################################################################################################################| Time: 0:00:00 Build Configuration: Initialising tasks: 100% |#######################################################################################################################################| Time: 0:00:05 ### ERROR: opencv-4.1.0-r0 do_install: Execution of '/home/test/Develop/Nvidia_Yocto/tegra-demo-distro/build/tmp/work/armv8a_tegra210-oe4t-linux/opencv/4.1.0-r0/temp/run.do_install.4128843' failed with exit code 1 Log data follows: Summary: 1 task failed: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a problem with the upstream recipe in meta-oe; it downloads some of the sources to a directory not under I can probably drop this from the master branch, since this commit upstream relocated the |
Beta Was this translation helpful? Give feedback.
This is a problem with the upstream recipe in meta-oe; it downloads some of the sources to a directory not under
${S}
, but doesn't tellpseudo
about it. We have a bbappend in the kirkstone and later branches that fixes the problem; if you're using an older branch, try copying this bbappend. The problem only affects rebuilds of opencv in a workspace where it's already been through the compile/install steps. You can work around it bybitbake -c clean opencv
then building again.I can probably drop this from the master branch, since this commit upstream relocated the
contrib
repo under${S}
; that was for other reasons, but coincidentally also fixes this issue.