Author Topic: What GUI framework to use?  (Read 1966 times)

doublec

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
    • http://radio.weblogs.com/0102385/categories/zaurus/index.html
What GUI framework to use?
« 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:

Code: [Select]
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:
Code: [Select]
/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.

Anonymous

  • Guest
What GUI framework to use?
« Reply #1 on: March 07, 2004, 07:08:49 pm »
use next CXXFLAGS : -fno-exceptions -fno-rtti
also use -lqte-mt for linking

doublec

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
    • http://radio.weblogs.com/0102385/categories/zaurus/index.html
What GUI framework to use?
« Reply #2 on: March 07, 2004, 08:04:54 pm »
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.