This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

L138-SDK cannot find -lQtUiToolsE

Hi, I am evaluating the Omap L138 and using the dvsdk_omapl138-evm_04_03_00_06_setuplinux SDK. The calculator example [usr/bin/qtopia/examples/script/calculator> ] fails to make because of a missing libQtUiToolsE

[linux-devkit]:~/targetfs/usr/bin/qtopia/examples/script/calculator> make
[CUT]  -lQtScriptToolsE -lQtScriptE -lQtUiToolsE -lQtXmlE -lQtGuiE -lQtNetworkE -lQtCoreE -lglib-2.0 -lpthread
[CUT] 3/../../../../arm-arago-linux-gnueabi/bin/ld: cannot find -lQtUiToolsE
collect2: ld returned 1 exit status
make: *** [calculator] Error 1

I need to be able to load .ui files at run-time, and looks like libQtUiToolsE provides the QUILoader that does this, but the library is not present in the SDK

QUiLoader loader;

 QWidget *ui = loader.load(&uiFile);

How can I get the libQtUiToolsE library and build the calculator example?

Thanks