I want to add qt sqlite driver on yocto imx6 linux3.14.52, i add PACKAGECONFIG in conf/local.conf, like follow:
PACKAGECONFIG_append_pn-qtbase = " sql-sqlite"
when i "bitbake fsl-image-qt5", the error occurs follow:
but when i delete the PACKAGECONFIG_append_pn-qtbase = " sql-sqlite" in conf/local.conf, then "bitbake fsl-image-qt5", it is ok.
Is there the correlation between qt sqlite and qtwebengine?
How can i do to correct the problem? Anybody can help?
Attach is the whole log.
Original Attachment has been moved to: log.do_compile.14647.zip
Hello Leavs Llee,
You would need to look at the recipe dependencies. I couldn’t actually locate the sql-sqlite package buy there are some recipes like sqlite and sql-native. You may install these with IMAGE_INSTALL_append.
I hope this give you some ideas on alternatives to solve this issue.
Regards,
Thanks for your replay. I just want to build in the sqlite driver, not the sqlite3 package. I test another way by modify the macro EXTRA_OECONF by change "-no-sql-sqlite" to "-qt-sql-sqlite" in qtbase-native_git.bb , then bitbake fsl-image-qt5, the same error. i also tested another parameter "-no-libpng" to "-qt-libpng" then bitbake fsl-image-qt5, the same error occur. so i think i don't modify the macro EXTRA_OECONF, but how i can do to add the sqlite driver in the rootfs ?