欢迎来到天天文库
浏览记录
ID:51705025
大小:39.95 KB
页数:3页
时间:2020-03-15
《常见gcc编译错误整理.doc》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、常见gcc编译错误整理(开始)11error:expectedexpressionbefore'else'else之前无表达式。2error:lvaluerequiredasleftoperandofassignment左值问题。3error:invalidstorageclassforfunction'XXXXXX'在文件的某个地方,丢失了一个大括号‘}’。常见gcc编译警告整理(开始)1、warning:nonewlineatendoffile在文件最后一行加上回车键解释:在《RationalefortheC99standard》一文中,有
2、C99的相关信息:Abackslashimmediatelybeforeanewlinehaslongbeenusedtocontinuestringliterals,aswellaspreprocessingcommandlines.IntheinterestofeasingmachinegenerationofC,andoftransportingcodetomachineswithrestrictivephysicallinelengths,theC89Committeegeneralizedthismechanismtopermitan
3、ytokentobecontinuedbyinterposingabackslash/newlinesequence.c/c++代码的每一行后面有一个“结束符”,也就是newline。避免当被include的文件展开后,前一个文件的最后一行与后一个文件的第一行直接被连接成一行从而造成错误。2、warning:comparisonbetweenpointerandinteger解释:integer与pointer比较3、 warning:assignmentdiscardsqualifiersfrompointertargettype解释:赋值时
4、,取消了右值的限定。4、 warning:passingargument1of'send'makespointerfromintegerwithoutacast解释:函数send的第一个integer型参数没有强制转换为pointer型5、warning:comparisonisalwaystrueduetolimitedrangeofdatatype解释:由于数据类型范围的限制,比较结果一直为真。6、warning:initializationfromincompatiblepointertype解释:不兼容指针类型的初始化7、 warnin
5、g:returnmakespointerfromintegerwithoutacast解释:return使integer转换为pointer,没有加强制类型转换。8、warning:incompatibleimplicitdeclarationofbuilt-infunction'printf'解释:与内置的printf函数隐士声明不兼容。9、warning:initializationdiscardsqualifiersfrompointertargettype解释:initialization取消了指针目标类型的限定。10、warning:
6、comparisonisalwaysfalseduetolimitedrangeofdatatype由于类型限制,比较一直是假11、warning:assignmentfromincompatiblepointertype不兼容的指针间赋值12、warning:passingargument1of'mes_read_time'discardsqualifiersfrompointertargettype12、mes_函数第一个参数的传递,丢弃了指针目标类型限定。13、warning:"protocol_type"redefined——type重
7、定义14、warning:'return'withavalue,infunctionreturningvoid在void返回类型的函数中,return返回值。
此文档下载收益归作者所有