马上注册,结交更多好友,享用更多功能,让你轻松玩转社区
您需要 登录 才可以下载或查看,没有账号?立即注册
×
CODE: C:\icc\bin\imakew -f main.mak
iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(52): unrecognized statement
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(53): syntax error; found `}' expecting `;'
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(53): syntax error; found `end of input' expecting `}'
C:\icc\bin\imakew.exe: Error code 1
C:\icc\bin\imakew.exe: 'main.o' removed.
Done: there are error(s). Exit code: 1 上面的报告说明了第52行缺少一个分号,预期分号的地方出现了“}”。
解决方法,在52行末尾添加分号。
类似的有:缺少}的报错 CODE: C:\icc\bin\imakew -f main.mak
iccavr -c -IC:\icc\include\ -e -DATMEGA -DATMega16 -l -g -Mavr_enhanced D:\桌面\实验教程\LED应用\霓虹灯\main.c
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(55): illegal statement termination
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(55): skipping `void'
!W D:\桌面\实验教程\LED应用\霓虹灯\main.c(55):[warning] calling function without prototype may cause errors
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(56): syntax error; found `{' expecting `;'
!E D:\桌面\实验教程\LED应用\霓虹灯\main.c(57): syntax error; found `end of input' expecting `}'
C:\icc\bin\imakew.exe: Error code 1
C:\icc\bin\imakew.exe: 'main.o' removed.
Done: there are error(s). Exit code: 1 |