OESF Portables Forum
Model Specific Forums => Sharp Zaurus => Zaurus - pdaXrom => Topic started by: doublec on March 07, 2004, 06:47:17 pm
-
When building applications in C/C++ for the pdaxrom, what is the recommended GUI toolkit to use?
Is it Qt?
When building a simple QT application I get a link error:
hello.o(.gnu.linkonce.r._ZTI6QGList+0x8): undefined reference to `typeinfo for QPtrCollection\'
I\'m link against qt-mt.so for this. Should I be using qte.so? If I do that I get:
/home/chrdou/src/qtscm/hello.cpp:47: undefined reference to `QApplication::exec()\'
/home/chrdou/src/qtscm/hello.cpp:72: undefined reference to `QApplication::QApplication[in-charge](int&, char**)\'
etc, etc.
Chris.
-
use next CXXFLAGS : -fno-exceptions -fno-rtti
also use -lqte-mt for linking
-
Excellent! That worked. I\'ve now got a QT application written in chicken scheme, compiled to C on the PC, and running on the Zaurus and my PC.