qtextend4.4.3 在nuc900平台下编译问题及解决办法
1. error: '::bzero' has not been declared
bzero ->memset
2.编译错误:
/opt/mini6410/qt-extended4.4.3/qt-extended-4.4.3/src/libraries/qtopia/qphoneprofile.cpp:1026:1:
error: 'QPhoneProfile::Schedule::Schedule' names the constructor, not the type
解决办法:
为了修正上述的编译错误,请用vi打开qphoneprofile.cpp,定位到1026行,将其中的
QPhoneProfile::Schedule::Schedule &QPhoneProfile::Schedule::operator=(const Schedule &other)
改成
QPhoneProfile:: Schedule &QPhoneProfile::Schedule::operator=(const Schedule &other)