I tried to move from LTIB to Yocto. I could run examples created with the image as mentioned in https://community.freescale.com/docs/DOC-99366#comment-11516
However, when I tried to cross compile Qt with toolchain created(using bitbake meta-toolchain), it is giving errors like below:
obj/qguivariantanimation.o: In function `(anonymous namespace)::qUnregisterGuiGetInterpolator_dtor_class_::~qUnregisterGuiGetInterpolator_dtor_class_()':
qguivariantanimation.cpp:(.text+0x10): undefined reference to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void const*, float), int)'
qguivariantanimation.cpp:(.text+0x1c): undefined reference to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void const*, float), int)'
qguivariantanimation.cpp:(.text+0x28): undefined reference to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void const*, float), int)'
qguivariantanimation.cpp:(.text+0x34): undefined reference to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void const*, float), int)'
qguivariantanimation.cpp:(.text+0x40): undefined reference to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void const*, float), int)'
.obj/qguivariantanimation.o:qguivariantanimation.cpp:(.text.startup+0x18): more undefined references to `QVariantAnimation::registerInterpolator(QVariant (*)(void const*, void c
onst*, float), int)' follow
collect2: error: ld returned 1 exit status
make[3]: *** [../../lib/libQt5Gui.so.5.3.0] Error 1
make[3]: Leaving directory `/home/kishore/Qt5_IMX6/qt-everywhere-opensource-src-5.3.0-beta/qtbase/src/gui'
make[2]: *** [sub-gui-make_first] Error 2
make[2]: Leaving directory `/home/kishore/Qt5_IMX6/qt-everywhere-opensource-src-5.3.0-beta/qtbase/src'
make[1]: *** [sub-src-make_first] Error 2
make[1]: Leaving directory `/home/kishore/Qt5_IMX6/qt-everywhere-opensource-src-5.3.0-beta/qtbase'
make: *** [module-qtbase-make_first] Error 2
Thanks in advance.
PS:The target board is SabreAI IMX6 board and host system is 32 bit Ubuntu machine.