Markus Jais wrote:
thanks for the advice.Hi
I am no QT wizard or C++ wizard. where do I find these unstripped
archive libraries ??
after calling make ??
in which directory ??
I copied QT 3.1.0 to
/usr/local
and unpacked it there and called
./configure and then
make install
sorry, if this is a stupid question.
markus
The archive libraries are in $QTDIR/lib. The libraries are libqassistantclient.a and
libdesigner.a.
You have configured Qt without an installation prefix, so 'make install' strips the libraries
in the build directory (there are no unstripped versions any longer after 'make install').
Do a 'make clean' and then 'make' and everything should be fine.
A shorter (untested) way to recreate the libraries may be
cd $QTDIR
rm lib/libqassistantclient.a
rm lib/libdesigner.a
make
Ulli
_______________________________________________
PyKDE mailing list [EMAIL PROTECTED]
http://mats.gmd.de/mailman/listinfo/pykde
