View Single Post
Posts: 3,328 | Thanked: 4,476 times | Joined on May 2011 @ Poland
#191
Originally Posted by AapoRantalainen View Post
Only difference is place of libstdc++.so:

Code:
libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x412dd000)
libstdc++.so.6 => /opt/meecolay/lib/libstdc++.so.6 (0x40025000)
Try
Code:
LD_PRELOAD=/opt/qtm12/lib/<.so file> /opt/MyRoutes/bin/MyRoutes
/edit: this may be a problem:

Using the libraries from QML
If you want to use the QML components of Qt Mobility, you have to add their paths to the QML search path. For the qmlviewer application, you can use the
-I /opt/qtm12/imports
command line parameter. In C++, you can do something like this:
viewer.engine()->addImportPath(QString("/opt/qtm12/imports"));
viewer.engine()->addPluginPath(QString("/opt/qtm12/plugins"));
If you are using PySide, you can achieve the same using:

viewer.engine().addImportPath('/opt/qtm12/imports')
viewer.engine().addPluginPath('/opt/qtm12/plugins')

You can try doing some symlinks too.

Originally Posted by Mohammed Muid View Post
is it possible (or near future) to have a seperate repository for meego apps which can be run in N900. dependency are meecolay and all the libs.?
Yes it is. I'll be working on a devel tool which will allow developers to easily adapt their packages for meecolay on fremantle. Beside this some package modder should be released.

Is there any way I can create a .deb package on-device, as dpkg -b doesn't work (unrecognized option --format=gnu)
__________________
If you want to support my work, you can donate by PayPal or Flattr

Projects no longer actively developed: here

Last edited by marmistrz; 2012-06-25 at 16:20.
 

The Following 2 Users Say Thank You to marmistrz For This Useful Post: