IAR编译出现以下错误 求助怎么解决

2019-03-26 07:55发布

捕获.JPG
此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
晓枫VS枯叶
1楼-- · 2019-03-26 09:53
 精彩回答 2  元偷偷看……
huaiqiao
2楼-- · 2019-03-26 11:32
倒数第一个以上的错误都是你的这个函数没有定义,最后一个错误是你好像没有连接仿真器
exiao
3楼-- · 2019-03-26 16:15
有可能是c文件没加入到工程中
anmko
4楼-- · 2019-03-26 22:11

Problem

After upgrading to EWARM 7.10.1 the Warning[25] is issued during assembly of a file that assembled without warning on earlier version of EWARM.

Background

The assembler (iasmarm) is (from EWARM 7.10.1) issuing Warning[25] for a deprecated assembler construction.

The deprecated assembler source construction looks like this:

      PUBWEAK NMI_Handler
      SECTION .text:CODE:REORDER(1)
  NMI_Handler
Solution

To avoid the warning, add ":NOROOT" to the "SECTION" statement:

      PUBWEAK NMI_Handler
      SECTION .text:CODE:REORDER:NOROOT(1)
  NMI_Handler

一周热门 更多>