web-dev-qa-db-fra.com

Yocto - Les fichiers / répertoires ont été installés mais ne sont livrés dans aucun package

J'utilise Yocto pour installer la bibliothèque clBLAS ( https://github.com/clMathLibraries/clBLAS ) en utilisant la recette https://github.com/CogentEmbedded/meta-opencl/ blob/master/meta-ocl-common/recipes-graphics/clblas/clblas_git.bb

Mais je reçois l'avertissement ci-dessous à chaque fois que le fichier & .so n'est pas présent dans l'image construite.

WARNING: QA Issue: clblas: Files/directories were installed but not shipped in any package:
  /usr/lib
  /usr/lib/libclBLAS.so.2.12.0
  /usr/lib/libclBLAS.so.2
  /usr/lib/libclBLAS.so
  /usr/lib/.debug
  /usr/lib/pkgconfig
  /usr/lib/cmake
  /usr/lib/.debug/libclBLAS.so.2.12.0
  /usr/lib/pkgconfig/clBLAS.pc
  /usr/lib/cmake/clBLAS
  /usr/lib/cmake/clBLAS/clBLASTargets-debug.cmake
  /usr/lib/cmake/clBLAS/clBLASConfigVersion.cmake
  /usr/lib/cmake/clBLAS/clBLASTargets.cmake
  /usr/lib/cmake/clBLAS/clBLASConfig.cmake
Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
clblas: 14 installed and not shipped files. [installed-vs-shipped]

Comment surmonter cet avertissement et rendre le fichier .so présent dans le /usr/lib dossier?

6
Avis

Ajoutez des lignes ci-dessous à votre clblas_git.bb

 FILES_${PN} += "${libdir}/*"
 FILES_${PN}-dev = "${libdir}/* ${includedir}"

Pour une bonne explication, vous l'obtiendrez ici

4
yoctotutor.com