我就编译一个简单的程序
#include <QApplication>
#include <QPushButton>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QPushButton hello("Hello world!");
hello.show();
return app.exec();
}
用QTE4.7+arm-linux-gcc4.5.1编译成功了file hello
hello: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.27, not stripped
可为什么在开发板上运行 ./hello -qws
报错了。Transformed:driver not' fount
Aborted
哪位遇见过这样的情况,求解!