Qt5 git build failure on Ubuntu 12.10 ARM on ODROID-X
-
There is hope !
It looks like the linker misses some destructors, so I added them and the linker was happy ;-)
Add the missed destructors declared as virtual to the public section of the appropriate header files and an empty implementation to the cpp files.
@virtual ListWidgetEditor::~ListWidgetEditor();
virtual TreeWidgetEditorDialog::~TreeWidgetEditorDialog();
virtual TableWidgetEditorDialog::~TableWidgetEditorDialog();@
I don't know whether it is a bug or an arm-specific "feature" or I missed something else...
Compiler:
gcc version 4.6.3 (Debian 4.6.3-14+rpi1)
Kernel:
Linux raspberrypi 3.6.11+ #387 PREEMPT Sun Mar 3 23:54:39 GMT 2013 armv6l GNU/LinuxHope this helps for ODROID-X too...