当前位置: 技术问答>linux和unix
QT新手提问
来源: 互联网 发布时间:2016-04-12
本文导语: 版本: qtopia platform 4.3.0 写helloworld时碰到一个SXE的错误 代码: #include int main(int argc, char *argv[]) { QtopiaApplication app(argc, argv); return app.exec(); } 编译错误 ERROR: sample1 does not have the required SXE symbols....
版本: qtopia platform 4.3.0
写helloworld时碰到一个SXE的错误
代码:
#include
int main(int argc, char *argv[])
{
QtopiaApplication app(argc, argv);
return app.exec();
}
编译错误
ERROR: sample1 does not have the required SXE symbols.
Please see the QSXE_APP_KEY documentation for details.
Hint: Type QSXE_APP_KEY into assistants index box.
make[1]: *** [sxe_test] Error 1
make[1]: Leaving directory `/root/test/sample1'
make: *** [all] Error 2
写helloworld时碰到一个SXE的错误
代码:
#include
int main(int argc, char *argv[])
{
QtopiaApplication app(argc, argv);
return app.exec();
}
编译错误
ERROR: sample1 does not have the required SXE symbols.
Please see the QSXE_APP_KEY documentation for details.
Hint: Type QSXE_APP_KEY into assistants index box.
make[1]: *** [sxe_test] Error 1
make[1]: Leaving directory `/root/test/sample1'
make: *** [all] Error 2
|
没遇见过,帮顶
|
你 还 是 研究一下环境配置好了没有吧。
|
在mian()内的开始位置加上这样一行看看
QSXE_SET_APP_KEY(argv[0]);
QSXE_SET_APP_KEY(argv[0]);
|
./configure -no SXE
如果没有配置的话查环境变量是否正确
如果没有配置的话查环境变量是否正确
|
我学QT的时候没有遇到这个问题,可能是配置环境的问题,更可能是你的QT路径没有加上去:路径加在ETC/PROFILE文件下
QT解压文件中有一个README有具体路径
QT解压文件中有一个README有具体路径
|
Please see the QSXE_APP_KEY documentation for details.
Hint: Type QSXE_APP_KEY into assistants index box.
Hint: Type QSXE_APP_KEY into assistants index box.